From 171280317d3541940d4cfb78ec5c8379d65aa56e Mon Sep 17 00:00:00 2001 From: Prasad Konka Date: Tue, 23 Jan 2024 22:01:44 -0500 Subject: [PATCH 1/2] Fixes for endpoint errors, skip NPPES --- api/download/downloadsmodule.R | 2 +- .../capabilityhandler/supportedProfiles.go | 27 +- endpointmanager/cmd/CHPLpopulator/main.go | 3 +- .../chplendpointquerier/NextGenwebscraper.go | 29 +- .../pkg/chplendpointquerier/bundleparser.go | 3 + .../chplendpointquerier.go | 7 +- ...ra_Digital_Health_Inc_EndpointSources.json | 40 +- ...ge_Patient_Portal_Inc_EndpointSources.json | 3 +- .../CHPLEndpointResourcesList.json | 206 +- resources/dev_resources/CHPLProductsInfo.json | 87258 +++++++++------- .../Canvas_Medical_Inc_EndpointSources.json | 9 +- .../Carepaths_Inc_EndpointSources.json | 64 + .../Darena_Solutions_LLC_EndpointSources.json | 20 +- .../Firely_USA_Inc_EndpointSources.json | 10 + .../NextGen_Healthcare_EndpointSources.json | 58 +- ...lifacts_Systems_LLC_1_EndpointSources.json | 2 +- ...lifacts_Systems_LLC_2_EndpointSources.json | 10 + .../athenahealth_Inc_EndpointSources.json | 20 +- .../eClinicalWorks_LLC_EndpointSources.json | 60 +- resources/dev_resources/endpoint_pfile.csv | 999 - ...lthcare_Solutions_LLC_EndpointSources.json | 58 + resources/dev_resources/npidata_pfile.csv | 999 - ...ra_Digital_Health_Inc_EndpointSources.json | 3146 +- .../AthenaClinicals_EndpointSources.json | 310 +- .../Azalea_Health_EndpointSources.json | 24 +- ...ge_Patient_Portal_Inc_EndpointSources.json | 3 +- .../CHPLEndpointResourcesList.json | 402 +- .../prod_resources/CHPLProductsInfo.json | 87258 +++++++++------- .../Canvas_Medical_Inc_EndpointSources.json | 9 +- .../Carepaths_Inc_EndpointSources.json | 7282 ++ .../Darena_Solutions_LLC_EndpointSources.json | 4680 +- .../Drchrono_Inc_EndpointSources.json | 54 + ...c_Systems_Corporation_EndpointSources.json | 4 +- .../Firely_USA_Inc_EndpointSources.json | 10 + ...t_Insight_Corporation_EndpointSources.json | 112 +- .../MEDHOST_EndpointSources.json | 4 +- ...nology_Inc_MEDITECH_1_EndpointSources.json | 36 + .../NextGen_Healthcare_EndpointSources.json | 23704 +---- .../Practice_Fusion_EndpointSources.json | 11632 +- ...lifacts_Systems_LLC_1_EndpointSources.json | 2 +- ...lifacts_Systems_LLC_2_EndpointSources.json | 10 + .../Veradigm_EndpointSources.json | 422 +- .../athenahealth_Inc_EndpointSources.json | 5004 +- .../eClinicalWorks_LLC_EndpointSources.json | 15196 ++- ...lthcare_Solutions_LLC_EndpointSources.json | 58 + scripts/populatedb.sh | 16 +- scripts/populatedb_prod.sh | 28 +- 47 files changed, 133417 insertions(+), 115876 deletions(-) create mode 100644 resources/dev_resources/Carepaths_Inc_EndpointSources.json create mode 100644 resources/dev_resources/Firely_USA_Inc_EndpointSources.json create mode 100644 resources/dev_resources/Qualifacts_Systems_LLC_2_EndpointSources.json create mode 100644 resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json create mode 100644 resources/prod_resources/Carepaths_Inc_EndpointSources.json create mode 100644 resources/prod_resources/Firely_USA_Inc_EndpointSources.json create mode 100644 resources/prod_resources/Qualifacts_Systems_LLC_2_EndpointSources.json create mode 100644 resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json diff --git a/api/download/downloadsmodule.R b/api/download/downloadsmodule.R index f1930a6b3..deba25a05 100644 --- a/api/download/downloadsmodule.R +++ b/api/download/downloadsmodule.R @@ -53,5 +53,5 @@ download_data <- function(db_tables) { rename(api_information_source_name = endpoint_names, certified_api_developer_name = vendor_name) %>% rename(created_at = info_created, updated = info_updated) %>% rename(http_response_time_second = response_time_seconds) - write.csv(csvdata, file, row.names = FALSE) + #write.csv(csvdata, file, row.names = FALSE) } \ No newline at end of file diff --git a/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go b/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go index 4d51ac6a3..fcaf5fb81 100644 --- a/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go +++ b/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go @@ -72,16 +72,27 @@ func getCapabilityStatementProfiles(capInt map[string]interface{}, supportedProf } if resourceInt["supportedProfile"] != nil { - supportedProfileArr := resourceInt["supportedProfile"].([]interface{}) - for _, profileEntry := range supportedProfileArr { - profileURL := profileEntry.(string) - var profileInfo endpointmanager.SupportedProfile - profileInfo.ProfileURL = profileURL - profileInfo.Resource = resourceType - - supportedProfiles = append(supportedProfiles, profileInfo) + supportedProfileArr, ok := resourceInt["supportedProfile"].([]interface{}) + if !ok { + // Handle the case where "supportedProfile" is not a []interface{} + //fmt.Println("Error: 'supportedProfile' is not a []interface{}") + // Add appropriate error handling or return from the function } + for _, profileEntry := range supportedProfileArr { + // Check if profileEntry is a string + if profileURL, ok := profileEntry.(string); ok { + var profileInfo endpointmanager.SupportedProfile + profileInfo.ProfileURL = profileURL + profileInfo.Resource = resourceType + + supportedProfiles = append(supportedProfiles, profileInfo) + } else { + // Handle the case where profileEntry is not a string + //fmt.Println("Error: 'supportedProfile' entry is not a string") + // Add appropriate error handling or return from the function + } + } } } diff --git a/endpointmanager/cmd/CHPLpopulator/main.go b/endpointmanager/cmd/CHPLpopulator/main.go index f9f357581..003f64bf6 100644 --- a/endpointmanager/cmd/CHPLpopulator/main.go +++ b/endpointmanager/cmd/CHPLpopulator/main.go @@ -112,7 +112,8 @@ func main() { var chplJSON CHPLEndpointList err = json.Unmarshal(respBody, &chplJSON) if err != nil { - log.Fatal(err) + //log.Fatal(err) + continue } if savedEntries >= chplJSON.RecordCount { diff --git a/endpointmanager/pkg/chplendpointquerier/NextGenwebscraper.go b/endpointmanager/pkg/chplendpointquerier/NextGenwebscraper.go index a0bfa8179..2f3a1e2b6 100644 --- a/endpointmanager/pkg/chplendpointquerier/NextGenwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/NextGenwebscraper.go @@ -12,30 +12,23 @@ func NextGenwebscraper(CHPLURL string, fileToWriteTo string) { var lanternEntryList []LanternEntry var endpointEntryList EndpointList - - doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, ".api-search-result") + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, "#api-search-results") if err != nil { log.Fatal(err) } - doc.Find("table").Each(func(index int, tablehtml *goquery.Selection) { - tablehtml.Find("tbody").Each(func(indextr int, rowhtml *goquery.Selection) { - rowhtml.Find("tr").Each(func(indextr int, rowbodyhtml *goquery.Selection) { + doc.Find("#api-search-results").Each(func(index int, div1html *goquery.Selection) { + div2html := div1html.Find("div").First() + ulhtml := div2html.Find("ul").First() + ulhtml.Find("li").Each(func(indextr int, lihtml *goquery.Selection) { + if strings.Contains(lihtml.Text(), "DSTU2") || strings.Contains(lihtml.Text(), "FHIR R4") { + var litext = lihtml.Text() + var URL = litext[strings.Index(litext, " https")+1 : len(litext)-1] var entry LanternEntry + entry.URL = strings.TrimSpace(URL) - tableEntries := rowbodyhtml.Find("td") - if tableEntries.Length() > 0 { - organizationName := strings.TrimSpace(tableEntries.Eq(1).Text()) - zipCode := strings.TrimSpace(tableEntries.Eq(5).Text()) - URL := strings.TrimSpace(tableEntries.Eq(6).Text()) - - entry.OrganizationName = organizationName - entry.URL = URL - entry.OrganizationZipCode = zipCode - - lanternEntryList = append(lanternEntryList, entry) - } - }) + lanternEntryList = append(lanternEntryList, entry) + } }) }) diff --git a/endpointmanager/pkg/chplendpointquerier/bundleparser.go b/endpointmanager/pkg/chplendpointquerier/bundleparser.go index 77367b964..fb7a0a8c8 100644 --- a/endpointmanager/pkg/chplendpointquerier/bundleparser.go +++ b/endpointmanager/pkg/chplendpointquerier/bundleparser.go @@ -68,6 +68,9 @@ func BundleToLanternFormat(bundle []byte) []LanternEntry { var entry LanternEntry if strings.EqualFold(strings.TrimSpace(bundleEntry.Resource.ResourceType), "Endpoint") { + if bundleEntry.Resource.Address == nil { + continue + } entryURL := bundleEntry.Resource.Address.(string) // Do not add entries that do not have URLs if entryURL != "" { diff --git a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go index fd7e982de..303413b3a 100644 --- a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go +++ b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go @@ -18,7 +18,7 @@ type LanternEntry struct { } var MedHostURL = "https://api.mhdi10xasayd.com/medhost-developer-composition/v1/fhir-base-urls.json" -var NextGenURL = "https://nextgen.com/api/practice-search/" +var NextGenURL = "https://nextgen.com/api/practice-search" var CanvasURL = "https://docs.canvasmedical.com/reference/service-base-urls" var AlteraURL = "https://open.allscripts.com/fhirendpoints" var EpicURL = "https://open.epic.com/MyApps/Endpoints" @@ -43,7 +43,6 @@ var healthCare2000URL = "https://www.provider.care/FHIR/MDVitaFHIRUrls.csv" var firstInsightURL = "https://www.first-insight.com/maximeyes_fhir_base_url_endpoints/" var healthSamuraiURL = "https://cmpl.aidbox.app/smart" var triarqURL = "https://fhir.myqone.com/Endpoints" -var goldblattURL = "https://www.goldblattsystems.com/apis" var cyfluentURL = "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" var meridianURL = "https://api-datamanager.carecloud.com:8081/fhirurl" var qualifactsInsyncURL = "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html" @@ -192,11 +191,9 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { } else if URLsEqual(chplURL, firstInsightURL) { FirstInsightBundleParser(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, healthSamuraiURL) { - HealthSamuraiWebscraper(chplURL, fileToWriteTo) + HealthSamuraiWebscraper("https://smartbox.aidbox.app/service-base-urls", fileToWriteTo) } else if URLsEqual(chplURL, triarqURL) { TRIARQPracticeWebscraper(chplURL, fileToWriteTo) - } else if URLsEqual(chplURL, goldblattURL) { - BundleQuerierParser("https://fhir-test.csn.health/gs-fhir-domain-server/public-base-service-endpoints.json", fileToWriteTo) } else if URLsEqual(chplURL, cyfluentURL) { SwaggerUIWebscraper(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, meridianURL) { diff --git a/resources/dev_resources/Altera_Digital_Health_Inc_EndpointSources.json b/resources/dev_resources/Altera_Digital_Health_Inc_EndpointSources.json index 1b83daac0..161993cab 100644 --- a/resources/dev_resources/Altera_Digital_Health_Inc_EndpointSources.json +++ b/resources/dev_resources/Altera_Digital_Health_Inc_EndpointSources.json @@ -1,62 +1,62 @@ { "Endpoints": [ { - "URL": "https://fhir.colaneph.com/fhir", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/fhir", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/R4/fhir-R4", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/R2/fhir", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/open", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/R2/open", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/R4/open-R4", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/open", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/R4/fhir-Prod", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/open", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/open", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/R2/fhir", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/R4/open-Prod", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/R2/open", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/fhir", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/fhir", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/R4/fhir-Prod", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhir.blessinghospital.com/R2/fhir", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/R4/open-Prod", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhir.blessinghospital.com/R2/open", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" } diff --git a/resources/dev_resources/Bridge_Patient_Portal_Inc_EndpointSources.json b/resources/dev_resources/Bridge_Patient_Portal_Inc_EndpointSources.json index a3505f761..51e552a60 100644 --- a/resources/dev_resources/Bridge_Patient_Portal_Inc_EndpointSources.json +++ b/resources/dev_resources/Bridge_Patient_Portal_Inc_EndpointSources.json @@ -3,7 +3,8 @@ { "URL": "https://appcert.api.playground.bridgepatientportal.com/fhir/r4/", "OrganizationName": "", - "NPIID": "" + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/dev_resources/CHPLEndpointResourcesList.json b/resources/dev_resources/CHPLEndpointResourcesList.json index e0641e114..e00bfd38f 100644 --- a/resources/dev_resources/CHPLEndpointResourcesList.json +++ b/resources/dev_resources/CHPLEndpointResourcesList.json @@ -29,6 +29,12 @@ "EndpointName": "Foothold Technology, Inc.", "FileName": "Foothold_Technology_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://apifhir.axeium.net:8443/reference-server/", + "EndpointName": "Brilogy Corporation", + "FileName": "Brilogy_Corporation_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://developer.advancedmd.com/fhir/base-urls", @@ -89,6 +95,12 @@ "EndpointName": "Azalea Health", "FileName": "Azalea_Health_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://portal.ezcaretech.com:30112/baseUrls", + "EndpointName": "ezCaretech Co., Ltd.", + "FileName": "ezCaretech_Co_Ltd_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.braintreehealth.com/braintree-onc-certification-2015/", @@ -109,7 +121,7 @@ }, { "FormatType": "Lantern", - "URL": "https://hub.meldrx.com/", + "URL": "https://api.meldrx.com/Directories/fhir/endpoints", "EndpointName": "Darena Solutions LLC", "FileName": "Darena_Solutions_LLC_EndpointSources.json" }, @@ -125,6 +137,18 @@ "EndpointName": "Bridge Patient Portal Inc.", "FileName": "Bridge_Patient_Portal_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://broadstreetcare.com/docs", + "EndpointName": "BroadStreet Health LLC", + "FileName": "BroadStreet_Health_LLC_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "http://ehealthline.com/dev/pdf/FHIR%20API%20Endpoints.htm", + "EndpointName": "E*HealthLine.com, Inc.", + "FileName": "EHealthLinecom_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://identity.emdscloud.com/api/api-resource/fhir", @@ -139,7 +163,7 @@ }, { "FormatType": "Lantern", - "URL": "https://docs.canvasmedical.com/reference/service-base-urls", + "URL": "https://docs.canvasmedical.com/api/service-base-urls/", "EndpointName": "Canvas Medical, Inc.", "FileName": "Canvas_Medical_Inc_EndpointSources.json" }, @@ -157,13 +181,13 @@ }, { "FormatType": "Lantern", - "URL": "https://qualifacts.com/api-documentation/", + "URL": "https://qualifacts.com/api-page/_downloads/carelogic-fhir-org-list.json", "EndpointName": "Qualifacts Systems, LLC", "FileName": "Qualifacts_Systems_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://carepaths.com/api_documentation/", + "URL": "https://carepaths.com/uploads/org_endpoint_bundle.json", "EndpointName": "Carepaths Inc", "FileName": "Carepaths_Inc_EndpointSources.json" }, @@ -211,10 +235,16 @@ }, { "FormatType": "Lantern", - "URL": "https://sabiamed.com/api-endpoints", + "URL": "https://www.sabiamed.com/api-endpoints", "EndpointName": "Sabiamed Corporation", "FileName": "Sabiamed_Corporation_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf", + "EndpointName": "CliniComp, Intl.", + "FileName": "CliniComp_Intl_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.goldblattsystems.com/apis", @@ -229,7 +259,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.cloudmd365.com/api", + "URL": "https://fhir-dev.cloudmd365.com/api/v1/.well-known/smart-configuration", "EndpointName": "Softbir, Inc.", "FileName": "Softbir_Inc_EndpointSources.json" }, @@ -260,8 +290,8 @@ { "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", - "EndpointName": "Credible Behavioral Health, Inc.", - "FileName": "Credible_Behavioral_Health_Inc_EndpointSources.json" + "EndpointName": "Qualifacts Systems, LLC", + "FileName": "Qualifacts_Systems_LLC_1_EndpointSources.json" }, { "FormatType": "Lantern", @@ -277,7 +307,7 @@ }, { "FormatType": "Lantern", - "URL": "https://www.curemd.com/developer/base-fhir-urls", + "URL": "https://www.curemd.com/developer/base-fhir-urls/", "EndpointName": "CureMD.com, Inc.", "FileName": "CureMDcom_Inc_EndpointSources.json" }, @@ -307,7 +337,7 @@ }, { "FormatType": "Lantern", - "URL": "https://drcloudemr.com/drcloudehr-api-documentation/", + "URL": "https://drcloudehr.com/drcloudehr-api-documentation/", "EndpointName": "EnSoftek, Inc", "FileName": "EnSoftek_Inc_EndpointSources.json" }, @@ -323,6 +353,12 @@ "EndpointName": "MPN Software Systems, Inc.", "FileName": "MPN_Software_Systems_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://interop.ehnote.com/fhir", + "EndpointName": "EHNOTE,INC", + "FileName": "EHNOTEINC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://fhirpt-stage.officeally.com/fhir/r4/endpoints", @@ -341,6 +377,12 @@ "EndpointName": "Modernizing Medicine", "FileName": "Modernizing_Medicine_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", + "EndpointName": "The Echo Group", + "FileName": "The_Echo_Group_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://elationfhir.readme.io/reference/service-base-urls", @@ -380,8 +422,8 @@ { "FormatType": "Lantern", "URL": "https://docs.fire.ly/projects/Firely-Server/en/latest/_static/g10/EndpointBundleFirely.json", - "EndpointName": "Firely B.V.", - "FileName": "Firely_BV_EndpointSources.json" + "EndpointName": "Firely USA Inc.", + "FileName": "Firely_USA_Inc_EndpointSources.json" }, { "FormatType": "Lantern", @@ -431,12 +473,24 @@ "EndpointName": "Greenway Health, LLC", "FileName": "Greenway_Health_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api/Endpoint?connection-type=hl7-fhir-rest", + "EndpointName": "Health Care Systems, Inc.", + "FileName": "Health_Care_Systems_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://hag-fhir.amazingcharts.com/ct/endpoints", "EndpointName": "Harris CareTracker, Inc", "FileName": "Harris_CareTracker_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://app-52512.on-aptible.com/service-base-urls", + "EndpointName": "Healthie", + "FileName": "Healthie_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://amsemr.com/endpoints/", @@ -445,7 +499,13 @@ }, { "FormatType": "Lantern", - "URL": "HTTPS://INPRACSYS.COM/FHIR", + "URL": "https://www.ipclinical.com/mu-disclosure.html", + "EndpointName": "Physicians EMR, LLC", + "FileName": "Physicians_EMR_LLC_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://inpracsys.com/fhir", "EndpointName": "InPracSys", "FileName": "InPracSys_EndpointSources.json" }, @@ -453,7 +513,7 @@ "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", "EndpointName": "Qualifacts Systems, LLC", - "FileName": "Qualifacts_Systems_LLC_1_EndpointSources.json" + "FileName": "Qualifacts_Systems_LLC_2_EndpointSources.json" }, { "FormatType": "Lantern", @@ -499,13 +559,19 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", - "EndpointName": "Tebra Technologies, Inc.", - "FileName": "Tebra_Technologies_Inc_EndpointSources.json" + "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_1_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://docs.kodjin.com/service-base-urls", + "URL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_2_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://docs.kodjin.com/service-base-urls/", "EndpointName": "EDENLAB OÜ", "FileName": "EDENLAB_O_EndpointSources.json" }, @@ -517,7 +583,7 @@ }, { "FormatType": "Lantern", - "URL": "https://connect-demo.mdops.com/mdlogsdk/fhir/apiDocumentation.html#tag/Auth", + "URL": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html", "EndpointName": "MDOps Corporation", "FileName": "MDOps_Corporation_EndpointSources.json" }, @@ -575,6 +641,18 @@ "EndpointName": "First Insight Corporation", "FileName": "First_Insight_Corporation_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://documents.maximus.care", + "EndpointName": "MaxRemind Inc", + "FileName": "MaxRemind_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://fhir.mhealthaz.com", + "EndpointName": "MedAZ.Net, LLC", + "FileName": "MedAZNet_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://api.medconnecthealth.com/fhir/r4/endpoints", @@ -644,12 +722,12 @@ { "FormatType": "Lantern", "URL": "https://www.mphrx.com/fhir-service-base-url-directory/", - "EndpointName": "My Personal Health Records Express Inc. d/b/a MphRx", - "FileName": "My_Personal_Health_Records_Express_Inc_dba_MphRx_EndpointSources.json" + "EndpointName": "agilon health inc.", + "FileName": "agilon_health_inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://mmdcf.modulemd.com/cf.fhir.r4", + "URL": "https://mmdpcf.modulemd.com/cf.fhir.r4", "EndpointName": "ModuleMD", "FileName": "ModuleMD_EndpointSources.json" }, @@ -709,7 +787,7 @@ }, { "FormatType": "Lantern", - "URL": "https://atlas-docs-dev.patientmedrecords.com/endpoints", + "URL": "https://fhir-documentation.patientmedrecords.com/endpoints", "EndpointName": "Office Practicum", "FileName": "Office_Practicum_EndpointSources.json" }, @@ -731,6 +809,12 @@ "EndpointName": "Flatiron Health", "FileName": "Flatiron_Health_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.medonehp.com/wp-content/uploads/2023/11/fhir-base-urls.csv", + "EndpointName": "MedOne Healthcare Partners", + "FileName": "MedOne_Healthcare_Partners_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://onetouchemr.com/onetouchemr_fhir_api.csv", @@ -811,10 +895,22 @@ }, { "FormatType": "Lantern", - "URL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", + "URL": "https://www.willowgladetechnologies.com/requirements", + "EndpointName": "Willowglade Technologies Corporation", + "FileName": "Willowglade_Technologies_Corporation_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://mraemr.com:47102/api/FHIR_Service_URLs.asp", "EndpointName": "MD Charts, LLC", "FileName": "MD_Charts_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", + "EndpointName": "MD Charts, LLC", + "FileName": "MD_Charts_LLC_1_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://hag-fhir.amazingcharts.com/pc/endpoints", @@ -953,12 +1049,24 @@ "EndpointName": "SolidPractice Technologies, LLC", "FileName": "SolidPractice_Technologies_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.practicegateway.net/smart", + "EndpointName": "Sophrona Solutions, Inc.", + "FileName": "Sophrona_Solutions_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.correctek.com/cost-disclosure-and-transparency/", "EndpointName": "CorrecTek", "FileName": "CorrecTek_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-fhir-base-urls.csv", + "EndpointName": "Strateq Health, Inc.", + "FileName": "Strateq_Health_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://patientportal.streamlinemd.com/FHIRReg/Practice%20Service%20based%20URL%20List.csv", @@ -983,6 +1091,12 @@ "EndpointName": "Ulrich Medical Concepts", "FileName": "Ulrich_Medical_Concepts_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", + "EndpointName": "Tebra Technologies, Inc.", + "FileName": "Tebra_Technologies_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://devportal.techcareehr.com/Help/", @@ -1001,6 +1115,12 @@ "EndpointName": "TriMed Technologies", "FileName": "TriMed_Technologies_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://usmon.com/USMON-FHIRServerURLs.csv", + "EndpointName": "US Monitoring, Inc.", + "FileName": "US_Monitoring_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", @@ -1033,15 +1153,21 @@ }, { "FormatType": "Lantern", - "URL": "https://www.vision-works.com/cert/FHIR", - "EndpointName": "Vision Works, Inc.", - "FileName": "Vision_Works_Inc_EndpointSources.json" + "URL": "https://open.platform.veradigm.com/fhirendpoints", + "EndpointName": "Veradigm", + "FileName": "Veradigm_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", - "EndpointName": "The Echo Group", - "FileName": "The_Echo_Group_EndpointSources.json" + "URL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", + "EndpointName": "VersaSuite", + "FileName": "VersaSuite_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://www.vision-works.com/cert/FHIR", + "EndpointName": "Vision Works, Inc.", + "FileName": "Vision_Works_Inc_EndpointSources.json" }, { "FormatType": "Lantern", @@ -1063,16 +1189,10 @@ }, { "FormatType": "Lantern", - "URL": "https://mu3test.welligent.com/fhir/r4/endpoints", + "URL": "https://fhir.qa.welligent.com/", "EndpointName": "Welligent, Part of the ContinuumCloud", "FileName": "Welligent_Part_of_the_ContinuumCloud_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://sfp-nhfhirdevproxy.azurewebsites.net/fhir/metadata", - "EndpointName": "RestorixHealth", - "FileName": "RestorixHealth_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://zoobooksystems.com/api-documentation/", @@ -1081,7 +1201,7 @@ }, { "FormatType": "Lantern", - "URL": "https://docs.athenahealth.com/api/base-fhir-urls", + "URL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", "EndpointName": "athenahealth, Inc.", "FileName": "athenahealth_Inc_EndpointSources.json" }, @@ -1111,7 +1231,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir.eclinicalworks.com/ecwopendev", + "URL": "https://fhir.eclinicalworks.com/ecwopendev/external/practiceList", "EndpointName": "eClinicalWorks, LLC", "FileName": "eClinicalWorks_LLC_EndpointSources.json" }, @@ -1147,13 +1267,13 @@ }, { "FormatType": "Lantern", - "URL": "http://code.medicasoft.us/fhir_r4_endpoints.html", + "URL": "https://code.medicasoft.us/fhir_r4_endpoints.html", "EndpointName": "MedicaSoft, LLC", "FileName": "MedicaSoft_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://gsehrwebapi.geniussolutions.com/Help/html/ServiceUrl.html", + "URL": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/ServiceUrl.html", "EndpointName": "Genius Solutions Inc.", "FileName": "Genius_Solutions_Inc_EndpointSources.json" }, @@ -1202,8 +1322,8 @@ { "FormatType": "Lantern", "URL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", - "EndpointName": "i3-iMed, LLC", - "FileName": "i3iMed_LLC_EndpointSources.json" + "EndpointName": "i3 Healthcare Solutions, LLC", + "FileName": "i3_Healthcare_Solutions_LLC_EndpointSources.json" }, { "FormatType": "Lantern", diff --git a/resources/dev_resources/CHPLProductsInfo.json b/resources/dev_resources/CHPLProductsInfo.json index 869989b51..7a122c57a 100644 --- a/resources/dev_resources/CHPLProductsInfo.json +++ b/resources/dev_resources/CHPLProductsInfo.json @@ -31,45 +31,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 42, @@ -77,84 +97,69 @@ "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -162,7 +167,7 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://apidocs.onemedical.io/fhir/overview/" }, @@ -178,7 +183,7 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" } @@ -215,34 +220,24 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 53, @@ -255,19 +250,14 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -275,9 +265,24 @@ "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -285,14 +290,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 35, @@ -300,49 +305,44 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -350,19 +350,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 34, @@ -370,14 +385,9 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -391,19 +401,19 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apidocs.chirp.app/#0" + "value": "https://apidocs.chirp.app/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.chirp.app/" + "value": "https://apidocs.chirp.app/#0" } ], "acb": "SLI Compliance" @@ -442,25 +452,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 14, @@ -468,24 +518,19 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 36, @@ -493,14 +538,19 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 43, @@ -508,19 +558,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, @@ -530,67 +570,57 @@ { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "title": "Audit Report(s)" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -602,45 +632,25 @@ "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -656,7 +666,7 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://app.smartemr.com/api/api_client.php" }, @@ -664,7 +674,7 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" } @@ -706,59 +716,29 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -766,39 +746,39 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -806,19 +786,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, @@ -826,24 +806,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, @@ -851,53 +831,83 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -933,40 +943,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 1, @@ -974,29 +964,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -1004,44 +1004,59 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -1049,67 +1064,62 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -1123,9 +1133,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -1167,84 +1177,69 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 43, @@ -1252,14 +1247,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 54, @@ -1267,34 +1257,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -1302,39 +1282,39 @@ "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -1342,20 +1322,42 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - } - ], - "apiDocumentation": [ + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, @@ -1368,9 +1370,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://fhirapi.asp.md:3000" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" } ], "acb": "SLI Compliance" @@ -1410,9 +1420,14 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -1420,39 +1435,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, @@ -1460,9 +1480,9 @@ "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -1470,19 +1490,19 @@ "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -1490,24 +1510,29 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 26, @@ -1515,19 +1540,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -1535,14 +1560,14 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 53, @@ -1550,52 +1575,45 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" }, @@ -1606,14 +1624,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1621,11 +1631,11 @@ ] }, { - "listSourceURL": "https://developer.advancedmd.com/fhir/base-urls", + "listSourceURL": "https://apifhir.axeium.net:8443/reference-server/", "softwareProducts": [ { - "id": 11064, - "chplProductNumber": "15.04.04.2666.Adva.22.04.1.221212", + "id": 11086, + "chplProductNumber": "15.05.05.1171.BRIL.02.01.1.221219", "edition": { "id": 3, "name": "2015" @@ -1635,57 +1645,62 @@ "name": "" }, "developer": { - "id": 1667, - "name": "AdvancedMD" + "id": 172, + "name": "Brilogy Corporation" }, "product": { - "id": 2722, - "name": "AdvancedMD" + "id": 3140, + "name": "AXEIUM" }, "version": { - "id": 8649, - "name": "22.3" + "id": 8005, + "name": "MU3" }, - "certificationDate": "2022-12-12", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -1693,94 +1708,69 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 32, @@ -1788,107 +1778,97 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.advancedmd.com/fhir/apis" + "value": "https://axeium.net/api/swagger/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.advancedmd.com/fhir/apis" + "value": "https://axeium.net/api/swagger/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.advancedmd.com/fhir/apis" + "value": "https://openapi.axeium.net" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "http://agastha.com/production-links.html", + "listSourceURL": "https://developer.advancedmd.com/fhir/base-urls", "softwareProducts": [ { - "id": 11152, - "chplProductNumber": "15.04.04.1056.Agas.20.01.1.221228", + "id": 11064, + "chplProductNumber": "15.04.04.2666.Adva.22.04.1.221212", "edition": { "id": 3, "name": "2015" @@ -1898,42 +1878,52 @@ "name": "" }, "developer": { - "id": 57, - "name": "Agastha, Inc." + "id": 1667, + "name": "AdvancedMD" }, "product": { - "id": 101, - "name": "Agastha Enterprise Healthcare Software" + "id": 2722, + "name": "AdvancedMD" }, "version": { - "id": 8720, - "name": "20.1" + "id": 8649, + "name": "22.3" }, - "certificationDate": "2022-12-28", + "certificationDate": "2022-12-12", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -1941,49 +1931,15721 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11406, + "chplProductNumber": "15.04.04.2666.Adva.23.05.1.231213", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1667, + "name": "AdvancedMD" + }, + "product": { + "id": 2722, + "name": "AdvancedMD" + }, + "version": { + "id": 8916, + "name": "23" + }, + "certificationDate": "2023-12-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "http://agastha.com/production-links.html", + "softwareProducts": [ + { + "id": 11152, + "chplProductNumber": "15.04.04.1056.Agas.20.01.1.221228", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 57, + "name": "Agastha, Inc." + }, + "product": { + "id": 101, + "name": "Agastha Enterprise Healthcare Software" + }, + "version": { + "id": 8720, + "name": "20.1" + }, + "certificationDate": "2022-12-28", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://agastha.com/apiR4.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://agastha.com/apiR4.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://agastha.com/apiR4.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://smartbox.aidbox.app/service-base-urls", + "softwareProducts": [ + { + "id": 11204, + "chplProductNumber": "15.99.04.3119.AIDB.01.01.0.230101", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2120, + "name": "Health Samurai, Inc." + }, + "product": { + "id": 3640, + "name": "Aidbox FHIR API module" + }, + "version": { + "id": 8550, + "name": "1.0" + }, + "certificationDate": "2023-01-01", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.aidbox.app/modules-1/integration-toolkit/ccda-converter/producing-c-cda-documents" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://smartbox.aidbox.app/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://smartbox.aidbox.app/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://cmpl.aidbox.app/smart", + "softwareProducts": [ + { + "id": 10956, + "chplProductNumber": "15.07.07.3119.AI01.01.00.0.220816", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2120, + "name": "Health Samurai, Inc." + }, + "product": { + "id": 3640, + "name": "Aidbox FHIR API module" + }, + "version": { + "id": 8550, + "name": "1.0" + }, + "certificationDate": "2022-08-16", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cmpl.aidbox.app/documentation" + } + ], + "acb": "ICSA Labs" + } + ] + }, + { + "listSourceURL": "https://altheafhir.mdsynergy.com", + "softwareProducts": [ + { + "id": 11046, + "chplProductNumber": "15.04.04.1821.Alth.03.02.1.221205", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 822, + "name": "MD Synergy Solutions, LLC" + }, + "product": { + "id": 2962, + "name": "Althea Smart EHR" + }, + "version": { + "id": 8634, + "name": "Version 3.0" + }, + "certificationDate": "2022-12-05", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://hag-fhir.amazingcharts.com/ac/endpoints", + "softwareProducts": [ + { + "id": 11023, + "chplProductNumber": "15.04.04.1206.Amaz.11.05.1.221117", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 207, + "name": "CareTracker, Inc." + }, + "product": { + "id": 3127, + "name": "Amazing Charts" + }, + "version": { + "id": 8614, + "name": "11.3" + }, + "certificationDate": "2022-11-17", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11365, + "chplProductNumber": "15.04.04.1206.Amaz.11.07.1.231115", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 207, + "name": "CareTracker, Inc." + }, + "product": { + "id": 3127, + "name": "Amazing Charts" + }, + "version": { + "id": 8876, + "name": "11.5" + }, + "certificationDate": "2023-11-15", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11361, + "chplProductNumber": "15.04.04.1206.Amaz.11.06.1.231026", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 207, + "name": "CareTracker, Inc." + }, + "product": { + "id": 3127, + "name": "Amazing Charts" + }, + "version": { + "id": 8872, + "name": "11.4" + }, + "certificationDate": "2023-10-26", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://astronautehr.com/index.php/fhir-base-urls/", + "softwareProducts": [ + { + "id": 10809, + "chplProductNumber": "15.02.05.3099.ASTR.01.00.1.220201", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2100, + "name": "Astronaut, LLC" + }, + "product": { + "id": 3605, + "name": "Astronaut" + }, + "version": { + "id": 8435, + "name": "1709" + }, + "certificationDate": "2022-02-01", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://astronautehr.com/index.php/170-315g10-apis/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://astronautehr.com/index.php/disclosures/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://astronautehr.com/index.php/disclosures/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhir.pai.healthcare/documentation/endpoints.htm", + "softwareProducts": [ + { + "id": 11128, + "chplProductNumber": "15.99.04.2186.Auro.02.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1187, + "name": "Practice Alternatives, Inc." + }, + "product": { + "id": 1953, + "name": "AuroraEHR" + }, + "version": { + "id": 8698, + "name": "2.1" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pai.healthcare/documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.pai.healthcare/documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.pai.healthcare/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://fhir-api.hmsfirst.com/r4/EndPoints", + "softwareProducts": [ + { + "id": 10512, + "chplProductNumber": "15.04.04.1590.Axio.02.01.1.201229", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 591, + "name": "Health Information Management Systems, LLC" + }, + "product": { + "id": 3518, + "name": "Axiom" + }, + "version": { + "id": 8230, + "name": "Version: 7" + }, + "certificationDate": "2020-12-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://hmsfirst.com/apidocs/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-api.hmsfirst.com/documents/index.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir-api.hmsfirst.com/documents/index.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://app.azaleahealth.com/fhir/R4/Endpoint", + "softwareProducts": [ + { + "id": 11151, + "chplProductNumber": "15.04.04.2688.Azal.04.02.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1689, + "name": "Azalea Health" + }, + "product": { + "id": 3141, + "name": "Azalea EHR" + }, + "version": { + "id": 8719, + "name": "4.0" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dev.azaleahealth.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://portal.ezcaretech.com:30112/baseUrls", + "softwareProducts": [ + { + "id": 9665, + "chplProductNumber": "15.04.04.2610.BEST.02.00.1.180423", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1611, + "name": "ezCaretech Co., Ltd." + }, + "product": { + "id": 3143, + "name": "BESTCare" + }, + "version": { + "id": 7476, + "name": "2.0B" + }, + "certificationDate": "2018-04-23", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.braintreehealth.com/braintree-onc-certification-2015/", + "softwareProducts": [ + { + "id": 10727, + "chplProductNumber": "15.02.05.1167.BRNT.01.01.1.211119", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 168, + "name": "Braintree Health" + }, + "product": { + "id": 263, + "name": "BRAINTREE" + }, + "version": { + "id": 7744, + "name": "10.5.1.1" + }, + "certificationDate": "2021-11-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://prognocis.com/fhir/index.html", + "softwareProducts": [ + { + "id": 9098, + "chplProductNumber": "15.04.04.1144.AntW.71.01.1.171219", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 145, + "name": "Benchmark Systems" + }, + "product": { + "id": 2794, + "name": "Benchmark EHR" + }, + "version": { + "id": 7063, + "name": "7.1" + }, + "certificationDate": "2017-12-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://prognocis.com/ehr-interoperability/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 8856, + "chplProductNumber": "15.04.04.2689.Prog.31.00.1.170929", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1690, + "name": "Bizmatics Inc." + }, + "product": { + "id": 247, + "name": "PrognoCIS" + }, + "version": { + "id": 6882, + "name": "Denali 3.1" + }, + "certificationDate": "2017-09-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 10615, + "chplProductNumber": "15.04.04.2769.Secu.03.01.1.210423", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1770, + "name": "Inmediata Health Group LLC" + }, + "product": { + "id": 3580, + "name": "SecureEMR+" + }, + "version": { + "id": 8311, + "name": "Denali 3.1" + }, + "certificationDate": "2021-04-23", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://betterdayhealth.net/fhir-docs", + "softwareProducts": [ + { + "id": 11074, + "chplProductNumber": "15.04.04.2992.Bett.02.02.1.221214", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1993, + "name": "Better Day™ Health" + }, + "product": { + "id": 3144, + "name": "Better Day™ Health" + }, + "version": { + "id": 8656, + "name": "2.1" + }, + "certificationDate": "2022-12-14", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://api.meldrx.com/Directories/fhir/endpoints", + "softwareProducts": [ + { + "id": 10435, + "chplProductNumber": "15.04.04.1322.Blue.02.00.0.200807", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 323, + "name": "Darena Solutions LLC" + }, + "product": { + "id": 3545, + "name": "BlueButtonPRO" + }, + "version": { + "id": 8157, + "name": "2" + }, + "certificationDate": "2020-08-07", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.sb.meldrx.com/swagger/index.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://app.sb.meldrx.com/swagger/index.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://blueehr.com/fhir-urls/", + "softwareProducts": [ + { + "id": 10797, + "chplProductNumber": "15.02.05.3076.ZHHC.01.02.1.220119", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2077, + "name": "ZH Healthcare, Inc." + }, + "product": { + "id": 3542, + "name": "BlueEHR" + }, + "version": { + "id": 8357, + "name": "3" + }, + "certificationDate": "2022-01-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://blueehr.com/certifications-and-costs/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal/fhir-endpoints", + "softwareProducts": [ + { + "id": 9540, + "chplProductNumber": "15.05.05.1947.BRID.01.00.0.180703", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 948, + "name": "Bridge Patient Portal Inc." + }, + "product": { + "id": 1610, + "name": "BridgeInteract" + }, + "version": { + "id": 7378, + "name": "3" + }, + "certificationDate": "2018-07-03", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://bridgepatientportal.docs.apiary.io/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://bridgepatientportal.docs.apiary.io/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://broadstreetcare.com/docs", + "softwareProducts": [ + { + "id": 11410, + "chplProductNumber": "15.05.05.3161.BRDS.01.00.1.231222", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2162, + "name": "BroadStreet Health LLC" + }, + "product": { + "id": 3718, + "name": "BroadStreet" + }, + "version": { + "id": 8832, + "name": "1" + }, + "certificationDate": "2023-12-22", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://broadstreetcare.com/docs" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://broadstreetcare.com/docs" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://broadstreetcare.com/docs" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "http://ehealthline.com/dev/pdf/FHIR%20API%20Endpoints.htm", + "softwareProducts": [ + { + "id": 10833, + "chplProductNumber": "15.02.05.1384.EHLC.01.01.0.220217", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 385, + "name": "E*HealthLine.com, Inc." + }, + "product": { + "id": 2869, + "name": "CARE© Integrated Hospital Information Management System" + }, + "version": { + "id": 7253, + "name": "10.0.0" + }, + "certificationDate": "2022-02-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + } + ], + "acb": "SLI Compliance" + }, + { + "id": 10832, + "chplProductNumber": "15.02.05.1384.PHOE.01.01.0.220217", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 385, + "name": "E*HealthLine.com, Inc." + }, + "product": { + "id": 604, + "name": "Phoenix© Integrated Electronic Health Records" + }, + "version": { + "id": 7252, + "name": "10.0.0" + }, + "certificationDate": "2022-02-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://identity.emdscloud.com/api/api-resource/fhir", + "softwareProducts": [ + { + "id": 11167, + "chplProductNumber": "15.04.04.2700.Apri.19.01.1.221228", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1701, + "name": "CompuGroup Medical US" + }, + "product": { + "id": 3679, + "name": "CGM APRIMA" + }, + "version": { + "id": 8727, + "name": "v19" + }, + "certificationDate": "2022-12-28", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11133, + "chplProductNumber": "15.04.04.2700.eMDs.10.02.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1701, + "name": "CompuGroup Medical US" + }, + "product": { + "id": 3674, + "name": "CGM eMDs" + }, + "version": { + "id": 8703, + "name": "v10" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://apitest.emds.com/documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apitest.emds.com/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://apitest.emds.com/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://unify-developer.chbase.com/?page=FHIRAPI", + "softwareProducts": [ + { + "id": 10965, + "chplProductNumber": "15.04.04.1533.CHBa.20.03.0.220819", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 534, + "name": "Get Real Health" + }, + "product": { + "id": 3164, + "name": "CHBase™ CEHRT Edition" + }, + "version": { + "id": 8559, + "name": "20" + }, + "certificationDate": "2022-08-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://docs.canvasmedical.com/api/service-base-urls/", + "softwareProducts": [ + { + "id": 10904, + "chplProductNumber": "15.04.04.3112.Canv.01.00.1.220523", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2113, + "name": "Canvas Medical, Inc." + }, + "product": { + "id": 3624, + "name": "Canvas Medical" + }, + "version": { + "id": 8502, + "name": "1" + }, + "certificationDate": "2022-05-23", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.canvasmedical.com/api/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.canvasmedical.com/api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.canvasmedical.com/api/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.acurussolutions.com/Certification.html", + "softwareProducts": [ + { + "id": 10807, + "chplProductNumber": "15.02.05.2669.ACUR.01.01.1.220131", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1670, + "name": "Acurus Solutions, Inc." + }, + "product": { + "id": 83, + "name": "Capella EHR" + }, + "version": { + "id": 7258, + "name": "6.1" + }, + "certificationDate": "2022-01-31", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.acurussolutions.com/Certification.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.acurussolutions.com/Certification.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.acurussolutions.com/Certification.html" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://api-datamanager.carecloud.com/", + "softwareProducts": [ + { + "id": 11173, + "chplProductNumber": "15.04.04.2981.Care.03.01.1.221229", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1982, + "name": "CareCloud Health, Inc." + }, + "product": { + "id": 3151, + "name": "CareCloud Charts" + }, + "version": { + "id": 8730, + "name": "3.0" + }, + "certificationDate": "2022-12-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api-datamanager.carecloud.com/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11002, + "chplProductNumber": "15.04.04.2112.Vert.09.01.1.221024", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1113, + "name": "Meridian Medical Management" + }, + "product": { + "id": 2971, + "name": "VertexDr" + }, + "version": { + "id": 8596, + "name": "9.1" + }, + "certificationDate": "2022-10-24", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 9799, + "chplProductNumber": "15.04.04.2790.Talk.01.01.1.181217", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1791, + "name": "CareCloud, Inc." + }, + "product": { + "id": 2709, + "name": "talkEHR" + }, + "version": { + "id": 6500, + "name": "Version 1.0" + }, + "certificationDate": "2018-12-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api-datamanager.carecloud.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://qualifacts.com/api-page/_downloads/carelogic-fhir-org-list.json", + "softwareProducts": [ + { + "id": 9807, + "chplProductNumber": "15.04.04.3124.Care.S3.00.1.181220", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2125, + "name": "Qualifacts Systems, LLC" + }, + "product": { + "id": 3154, + "name": "CareLogic" + }, + "version": { + "id": 7590, + "name": "Enterprise S3" + }, + "certificationDate": "2018-12-20", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://qualifacts.com/api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://carepaths.com/uploads/org_endpoint_bundle.json", + "softwareProducts": [ + { + "id": 10607, + "chplProductNumber": "15.04.04.2982.Care.19.00.1.210408", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1983, + "name": "Carepaths Inc" + }, + "product": { + "id": 3577, + "name": "CarePaths EHR" + }, + "version": { + "id": 8303, + "name": "19.11" + }, + "certificationDate": "2021-04-08", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://carepaths.com/api_documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://carepaths.com/api_documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://carepaths.com/api_documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://carefluence.com/carefluence-fhir-endpoints/", + "softwareProducts": [ + { + "id": 10922, + "chplProductNumber": "15.04.04.2657.Care.R4.01.0.220629", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1658, + "name": "Carefluence" + }, + "product": { + "id": 2614, + "name": "Carefluence Open API" + }, + "version": { + "id": 8519, + "name": "R4" + }, + "certificationDate": "2022-06-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api.carefluence.com" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.carefluence.com" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.carefluence.com" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.charmhealth.com/resources/fhir/index.html#api-endpoints", + "softwareProducts": [ + { + "id": 9741, + "chplProductNumber": "15.04.04.1948.ChAR.12.00.1.181115", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 949, + "name": "MedicalMine Inc." + }, + "product": { + "id": 3160, + "name": "CharmHealth EHR" + }, + "version": { + "id": 7537, + "name": "1.2" + }, + "certificationDate": "2018-11-15", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.charmhealth.com/resources/fhir/index.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.charmhealth.com/resources/fhir/index.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.charmhealth.com/resources/fhir/index.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://api.azaleahealth.com/fhir/R4/Endpoint", + "softwareProducts": [ + { + "id": 11140, + "chplProductNumber": "15.04.04.2688.Char.07.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1689, + "name": "Azalea Health" + }, + "product": { + "id": 2881, + "name": "ChartAccess ®" + }, + "version": { + "id": 8710, + "name": "7.0" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dev.azaleahealth.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dev2-charteasy.theoriamedical.com/fhir/app", + "softwareProducts": [ + { + "id": 10712, + "chplProductNumber": "15.04.04.3091.Char.01.00.1.211108", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2092, + "name": "Theoria Medical, PLLC" + }, + "product": { + "id": 3591, + "name": "ChartEasy™" + }, + "version": { + "id": 8389, + "name": "1.1" + }, + "certificationDate": "2021-11-08", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.charteasy.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.charteasy.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.charteasy.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://chartmakerapi.azurewebsites.net/", + "softwareProducts": [ + { + "id": 11070, + "chplProductNumber": "15.04.04.2296.Char.22.02.1.221213", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1297, + "name": "STI Computer Services, Inc." + }, + "product": { + "id": 3514, + "name": "ChartMaker® Medical Suite" + }, + "version": { + "id": 8653, + "name": "2022.1" + }, + "certificationDate": "2022-12-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://beta.afoundria.com/api/fhir/urls", + "softwareProducts": [ + { + "id": 10258, + "chplProductNumber": "15.04.04.2996.Char.12.01.1.191227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1997, + "name": "ChartPath, LLC" + }, + "product": { + "id": 2784, + "name": "ChartPath" + }, + "version": { + "id": 7992, + "name": "1.29" + }, + "certificationDate": "2019-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://beta.afoundria.com/api" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://beta.afoundria.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://beta.afoundria.com/api" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.claimpowerehr.com/2015ECURES/documents/CP_FHIR_URLS.csv", + "softwareProducts": [ + { + "id": 11209, + "chplProductNumber": "15.04.04.1238.Clai.06.02.1.230109", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 239, + "name": "Claimpower, Inc." + }, + "product": { + "id": 419, + "name": "Claimpower Mobile EMR" + }, + "version": { + "id": 8096, + "name": "6.1" + }, + "certificationDate": "2023-01-09", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.sabiamed.com/api-endpoints", + "softwareProducts": [ + { + "id": 9737, + "chplProductNumber": "15.04.04.2297.Clin.01.00.1.181029", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1298, + "name": "Sabiamed Corporation" + }, + "product": { + "id": 2983, + "name": "ClinNext 10" + }, + "version": { + "id": 7533, + "name": "V1.0" + }, + "certificationDate": "2018-10-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.sabiamed.com/api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.sabiamed.com:8081/MPIServices/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sabiamed.com/api-documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf", + "softwareProducts": [ + { + "id": 10998, + "chplProductNumber": "15.05.05.2695.CLIN.02.01.1.221013", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1696, + "name": "CliniComp, Intl." + }, + "product": { + "id": 3546, + "name": "CliniComp|EHR" + }, + "version": { + "id": 8160, + "name": "213.03" + }, + "certificationDate": "2022-10-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.goldblattsystems.com/apis", + "softwareProducts": [ + { + "id": 10765, + "chplProductNumber": "15.02.05.2738.GOLD.01.01.1.211228", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1739, + "name": "Goldblatt Systems, LLC" + }, + "product": { + "id": 3169, + "name": "Clinical Semantic Network (CSN)" + }, + "version": { + "id": 7924, + "name": "8" + }, + "certificationDate": "2021-12-28", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.goldblattsystems.com/apis/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.goldblattsystems.com/apis/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.goldblattsystems.com/apis" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhirapitest.naiacorp.net/fhir/r4/endpoints", + "softwareProducts": [ + { + "id": 11150, + "chplProductNumber": "15.04.04.3071.Clou.09.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2072, + "name": "CloudCraft, LLC" + }, + "product": { + "id": 3525, + "name": "CloudCraft Software" + }, + "version": { + "id": 8718, + "name": "9.0" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://fhir-dev.cloudmd365.com/api/v1/.well-known/smart-configuration", + "softwareProducts": [ + { + "id": 10282, + "chplProductNumber": "15.04.04.3067.Clou.01.00.1.200122", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2068, + "name": "Softbir, Inc." + }, + "product": { + "id": 3521, + "name": "CloudMD365" + }, + "version": { + "id": 8012, + "name": "1" + }, + "certificationDate": "2020-01-22", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir-dev.cloudmd365.com/api/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-dev.cloudmd365.com/api/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://fhir.compulinkadvantage.com/", + "softwareProducts": [ + { + "id": 8873, + "chplProductNumber": "15.04.04.2701.Comp.12.00.1.171106", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1702, + "name": "Compulink Healthcare Solutions" + }, + "product": { + "id": 3175, + "name": "Compulink Advantage" + }, + "version": { + "id": 6897, + "name": "Version 12" + }, + "certificationDate": "2017-11-06", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", + "softwareProducts": [ + { + "id": 10759, + "chplProductNumber": "15.02.05.2713.DY4B.04.03.0.211221", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1714, + "name": "Dynamic Health IT, Inc" + }, + "product": { + "id": 3588, + "name": "ConnectEHR +BulkFHIR" + }, + "version": { + "id": 8379, + "name": "FHIR4-B" + }, + "certificationDate": "2021-12-21", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.dynamichealthit.com/dynamic-fhir-api", + "softwareProducts": [ + { + "id": 10697, + "chplProductNumber": "15.02.02.2713.A122.01.02.0.210928", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1714, + "name": "Dynamic Health IT, Inc" + }, + "product": { + "id": 3588, + "name": "ConnectEHR +BulkFHIR" + }, + "version": { + "id": 8379, + "name": "FHIR4-B" + }, + "certificationDate": "2021-09-28", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + } + ], + "acb": "UL LLC" + } + ] + }, + { + "listSourceURL": "https://fhir.cozeva.com/endpoints", + "softwareProducts": [ + { + "id": 11139, + "chplProductNumber": "15.04.04.1102.Coze.03.02.0.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 103, + "name": "Applied Research Works, Inc." + }, + "product": { + "id": 183, + "name": "Cozeva" + }, + "version": { + "id": 8709, + "name": "3.1" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.developers.cozeva.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.developers.cozeva.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.developers.cozeva.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", + "softwareProducts": [ + { + "id": 11183, + "chplProductNumber": "15.04.04.3124.Cred.11.01.1.221230", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2125, + "name": "Qualifacts Systems, LLC" + }, + "product": { + "id": 3179, + "name": "Credible Behavioral Health" + }, + "version": { + "id": 7143, + "name": "Version 11" + }, + "certificationDate": "2022-12-30", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.qualifacts.com/api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://criterions.com/fhir-end-points/", + "softwareProducts": [ + { + "id": 10171, + "chplProductNumber": "15.04.04.2705.Crit.04.00.1.191111", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1706, + "name": "Criterions Software Inc" + }, + "product": { + "id": 3497, + "name": "Criterions EHR" + }, + "version": { + "id": 7909, + "name": "4" + }, + "certificationDate": "2019-11-11", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://criterions.com/fhir-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://criterions.com/fhir-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://criterions.com/documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.crystalpm.com/FHIRServiceURLs.csv", + "softwareProducts": [ + { + "id": 10996, + "chplProductNumber": "15.04.04.1030.Crys.06.01.1.221004", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 31, + "name": "Abeo Solutions, Inc" + }, + "product": { + "id": 3017, + "name": "Crystal Practice Management" + }, + "version": { + "id": 8592, + "name": "6.0" + }, + "certificationDate": "2022-10-04", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.curemd.com/developer/base-fhir-urls/", + "softwareProducts": [ + { + "id": 11246, + "chplProductNumber": "15.07.04.2706.CURE.10.01.1.230302", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1707, + "name": "CureMD.com, Inc." + }, + "product": { + "id": 3181, + "name": "CureMD SMART Cloud" + }, + "version": { + "id": 554, + "name": "10g" + }, + "certificationDate": "2023-03-02", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.curemd.com/developer/base-fhir-urls", + "softwareProducts": [ + { + "id": 8603, + "chplProductNumber": "15.07.07.2706.CU01.01.00.1.170705", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1707, + "name": "CureMD.com, Inc." + }, + "product": { + "id": 3181, + "name": "CureMD SMART Cloud" + }, + "version": { + "id": 6709, + "name": "10g" + }, + "certificationDate": "2017-07-05", + "certificationStatus": { + "id": 4, + "name": "Withdrawn by ONC-ACB" + }, + "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + } + ], + "acb": "ICSA Labs" + } + ] + }, + { + "listSourceURL": "https://aidbox.cx360.net/service-base-urls", + "softwareProducts": [ + { + "id": 9168, + "chplProductNumber": "15.04.04.2703.Cx36.07.00.1.171226", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1704, + "name": "Core Solutions Inc" + }, + "product": { + "id": 488, + "name": "Cx360" + }, + "version": { + "id": 7096, + "name": "7" + }, + "certificationDate": "2017-12-26", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir", + "softwareProducts": [ + { + "id": 10072, + "chplProductNumber": "15.04.04.2975.Cyfl.03.00.1.190813", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1976, + "name": "Cyfluent" + }, + "product": { + "id": 515, + "name": "Cyfluent" + }, + "version": { + "id": 7821, + "name": "Version 3.2" + }, + "certificationDate": "2019-08-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://portal.doxemr.aidbox.io/service-base-urls", + "softwareProducts": [ + { + "id": 10806, + "chplProductNumber": "15.02.05.1317.DOXE.01.01.1.220131", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 318, + "name": "DOX EMR" + }, + "product": { + "id": 520, + "name": "DOX EMR" + }, + "version": { + "id": 7206, + "name": "5.2" + }, + "certificationDate": "2022-01-31", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/g10-API-for-patient-and-population-services.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://digidms.com/documents/DigiDMSFHIR_ServiceURL.pdf", + "softwareProducts": [ + { + "id": 11433, + "chplProductNumber": "15.04.04.2709.Digi.24.04.1.240101", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1710, + "name": "DigiDMS, Inc." + }, + "product": { + "id": 3184, + "name": "DigiDMS" + }, + "version": { + "id": 8941, + "name": "24.0" + }, + "certificationDate": "2024-01-01", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11394, + "chplProductNumber": "15.04.04.2709.Digi.23.03.1.231205", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1710, + "name": "DigiDMS, Inc." + }, + "product": { + "id": 3184, + "name": "DigiDMS" + }, + "version": { + "id": 8904, + "name": "23.0" + }, + "certificationDate": "2023-12-05", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11059, + "chplProductNumber": "15.04.04.2709.Digi.22.02.1.221209", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1710, + "name": "DigiDMS, Inc." + }, + "product": { + "id": 3184, + "name": "DigiDMS" + }, + "version": { + "id": 8645, + "name": "22.0" + }, + "certificationDate": "2022-12-09", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://drcloudehr.com/drcloudehr-api-documentation/", + "softwareProducts": [ + { + "id": 10835, + "chplProductNumber": "15.02.05.1434.ENST.01.01.1.220218", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 435, + "name": "EnSoftek, Inc" + }, + "product": { + "id": 3081, + "name": "DrCloudEHR" + }, + "version": { + "id": 7760, + "name": "2025" + }, + "certificationDate": "2022-02-18", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://drcloudehr.com/drcloudehr-api-documentation/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://drsdoc.com/fhir%20service%20urls.pdf", + "softwareProducts": [ + { + "id": 11072, + "chplProductNumber": "15.04.04.1764.DrsE.12.01.1.221213", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 765, + "name": "Keiser Computers, Inc." + }, + "product": { + "id": 1141, + "name": "Drs Enterprise" + }, + "version": { + "id": 8654, + "name": "12" + }, + "certificationDate": "2022-12-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -1991,34 +17653,207 @@ "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://drsdoc.com/FHIRapi" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://drsdoc.com/FHIRapi" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://drsdoc.com/FHIRapi" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", + "softwareProducts": [ + { + "id": 11144, + "chplProductNumber": "15.04.04.1853.ECLI.03.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 854, + "name": "MPN Software Systems, Inc." + }, + "product": { + "id": 2855, + "name": "ECLIPSE Spectrum" + }, + "version": { + "id": 8713, + "name": "v3" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 29, @@ -2026,9 +17861,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -2036,59 +17896,227 @@ "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://interop.ehnote.com/fhir", + "softwareProducts": [ + { + "id": 11356, + "chplProductNumber": "15.04.04.3171.EHNO.01.00.1.231025", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2172, + "name": "EHNOTE,INC" + }, + "product": { + "id": 3733, + "name": "EHNOTE" + }, + "version": { + "id": 8868, + "name": "1.0" + }, + "certificationDate": "2023-10-25", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -2096,55 +18124,80 @@ "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://agastha.com/apiR4.html" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://agastha.com/apiR4.html" + "value": "https://openapi.ehnote.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://agastha.com/apiR4.html" + "value": "https://openapi.ehnote.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://openapi.ehnote.com/" } ], "acb": "Drummond Group" @@ -2152,11 +18205,11 @@ ] }, { - "listSourceURL": "https://smartbox.aidbox.app/service-base-urls", + "listSourceURL": "https://fhirpt-stage.officeally.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11204, - "chplProductNumber": "15.07.04.3119.AIDB.01.01.0.230101", + "id": 11431, + "chplProductNumber": "15.04.04.2822.EHR2.05.02.1.231230", "edition": { "id": 3, "name": "2015" @@ -2166,119 +18219,107 @@ "name": "" }, "developer": { - "id": 2120, - "name": "Health Samurai, Inc." + "id": 1823, + "name": "Office Ally, LLC" }, "product": { - "id": 3640, - "name": "Aidbox FHIR API module" + "id": 3192, + "name": "EHR 24/7" }, "version": { - "id": 8550, - "name": "1.0" + "id": 8939, + "name": "5.6.30" }, - "certificationDate": "2023-01-01", + "certificationDate": "2023-12-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - } - ], - "apiDocumentation": [ + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://smartbox.aidbox.app/documentation" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://cmpl.aidbox.app/smart", - "softwareProducts": [ - { - "id": 10956, - "chplProductNumber": "15.07.07.3119.AI01.01.00.0.220816", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 2120, - "name": "Health Samurai, Inc." - }, - "product": { - "id": 3640, - "name": "Aidbox FHIR API module" - }, - "version": { - "id": 8550, - "name": "1.0" - }, - "certificationDate": "2022-08-16", - "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" - }, - "criteriaMet": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -2286,51 +18327,122 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://cmpl.aidbox.app/documentation" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], - "acb": "ICSA Labs" - } - ] - }, - { - "listSourceURL": "https://altheafhir.mdsynergy.com", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11046, - "chplProductNumber": "15.04.04.1821.Alth.03.02.1.221205", + "id": 11093, + "chplProductNumber": "15.04.04.2822.EHR2.05.01.1.221219", "edition": { "id": 3, "name": "2015" @@ -2340,27 +18452,42 @@ "name": "" }, "developer": { - "id": 822, - "name": "MD Synergy Solutions, LLC" + "id": 1823, + "name": "Office Ally, LLC" }, "product": { - "id": 2962, - "name": "Althea" + "id": 3192, + "name": "EHR 24/7" }, "version": { - "id": 8634, - "name": "Version 3.0" + "id": 8671, + "name": "5.1.0" }, - "certificationDate": "2022-12-05", + "certificationDate": "2022-12-19", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 52, @@ -2368,44 +18495,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -2413,124 +18535,114 @@ "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -2538,25 +18650,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -2564,11 +18676,11 @@ ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/ac/endpoints", + "listSourceURL": "https://ehryourway.com/content/fhir-service-urls.pdf", "softwareProducts": [ { - "id": 11023, - "chplProductNumber": "15.04.04.1206.Amaz.11.05.1.221117", + "id": 10757, + "chplProductNumber": "15.02.05.1042.ADAP.01.01.0.211220", "edition": { "id": 3, "name": "2015" @@ -2578,82 +18690,107 @@ "name": "" }, "developer": { - "id": 207, - "name": "CareTracker, Inc." + "id": 43, + "name": "Adaptamed, LLC" }, "product": { - "id": 3127, - "name": "Amazing Charts" + "id": 2984, + "name": "EHR Your Way" }, "version": { - "id": 8614, - "name": "11.3" + "id": 7536, + "name": "9.2.0.0" }, - "certificationDate": "2022-11-17", + "certificationDate": "2021-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -2661,9 +18798,9 @@ "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -2676,39 +18813,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -2716,74 +18848,89 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/ac-api-documentation/" + "value": "https://www.ehryourway.com/api" }, { "criterion": { @@ -2791,27 +18938,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://harrisambulatory.com/ac-api-documentation/" + "value": "https://www.ehryourway.com/api" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://harrisambulatory.com/ac-api-documentation/" + "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://astronautehr.com/index.php/fhir-base-urls/", + "listSourceURL": "https://mm-fhir-endpoint-display.prod.fhir.ema-api.com/", "softwareProducts": [ { - "id": 10809, - "chplProductNumber": "15.02.05.3099.ASTR.01.00.1.220201", + "id": 11032, + "chplProductNumber": "15.04.04.2002.EMA6.70.18.1.221129", "edition": { "id": 3, "name": "2015" @@ -2821,102 +18968,102 @@ "name": "" }, "developer": { - "id": 2100, - "name": "Astronaut, LLC" + "id": 1003, + "name": "Modernizing Medicine" }, "product": { - "id": 3605, - "name": "Astronaut" + "id": 1697, + "name": "EMA" }, "version": { - "id": 8435, - "name": "1709" + "id": 8623, + "name": "7" }, - "certificationDate": "2022-02-01", + "certificationDate": "2022-11-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -2924,29 +19071,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -2959,19 +19101,24 @@ "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 32, @@ -2979,34 +19126,62 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.modmed.com/public-api-v2/" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://astronautehr.com/index.php/disclosures/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { @@ -3014,27 +19189,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://astronautehr.com/index.php/disclosures/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://astronautehr.com/index.php/170-315g10-apis/" + "value": "https://www.modmed.com/public-api-v2/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir.pai.healthcare/documentation/endpoints.htm", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11128, - "chplProductNumber": "15.99.04.2186.Auro.02.01.1.221227", + "id": 11145, + "chplProductNumber": "15.04.04.1467.Exsc.07.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -3044,16 +19206,16 @@ "name": "" }, "developer": { - "id": 1187, - "name": "Practice Alternatives, Inc." + "id": 468, + "name": "Exscribe, LLC" }, "product": { - "id": 1953, - "name": "AuroraEHR" + "id": 714, + "name": "Exscribe EHR" }, "version": { - "id": 8698, - "name": "2.1" + "id": 8714, + "name": "7" }, "certificationDate": "2022-12-27", "certificationStatus": { @@ -3061,115 +19223,125 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -3177,69 +19349,79 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.pai.healthcare/documentation" + "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { @@ -3247,27 +19429,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir.pai.healthcare/documentation" + "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.pai.healthcare/documentation" + "value": "https://exscribemobile.com/MU/EhrApiV01/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir-api.hmsfirst.com/r4/EndPoints", - "softwareProducts": [ + }, { - "id": 10512, - "chplProductNumber": "15.04.04.1590.Axio.02.01.1.201229", + "id": 11088, + "chplProductNumber": "15.04.04.2900.Eyef.07.17.1.221219", "edition": { "id": 3, "name": "2015" @@ -3277,225 +19454,235 @@ "name": "" }, "developer": { - "id": 591, - "name": "Health Information Management Systems, LLC" + "id": 1901, + "name": "Eyefinity, Inc." }, "product": { - "id": 3518, - "name": "Axiom" + "id": 3552, + "name": "Eyefinity EHR powered by EMA" }, "version": { - "id": 8230, - "name": "Version: 7" + "id": 8666, + "name": "7" }, - "certificationDate": "2020-12-29", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://fhir-api.hmsfirst.com/documents/index.html" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://hmsfirst.com/apidocs/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-api.hmsfirst.com/documents/index.html" + "value": "https://www.modmed.com/public-api-v2/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://app.azaleahealth.com/fhir/R4/Endpoint", - "softwareProducts": [ + }, { - "id": 11151, - "chplProductNumber": "15.04.04.2688.Azal.04.02.1.221227", + "id": 11054, + "chplProductNumber": "15.04.04.3031.gGas.GA.10.1.221207", "edition": { "id": 3, "name": "2015" @@ -3505,152 +19692,142 @@ "name": "" }, "developer": { - "id": 1689, - "name": "Azalea Health" + "id": 2032, + "name": "Modernizing Medicine Gastroenterology, LLC" }, "product": { - "id": 3141, - "name": "Azalea EHR" + "id": 3020, + "name": "gGastro" }, "version": { - "id": 8719, - "name": "4.0" + "id": 8640, + "name": "6" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 35, @@ -3658,14 +19835,9 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 26, @@ -3673,64 +19845,64 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -3740,23 +19912,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -3764,11 +19936,11 @@ ] }, { - "listSourceURL": "https://www.braintreehealth.com/braintree-onc-certification-2015/", + "listSourceURL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", "softwareProducts": [ { - "id": 10727, - "chplProductNumber": "15.02.05.1167.BRNT.01.01.1.211119", + "id": 11129, + "chplProductNumber": "15.04.04.2425.Echo.13.02.1.221227", "edition": { "id": 3, "name": "2015" @@ -3778,92 +19950,32 @@ "name": "" }, "developer": { - "id": 168, - "name": "Braintree Health" + "id": 1426, + "name": "The Echo Group" }, "product": { - "id": 263, - "name": "BRAINTREE" + "id": 3746, + "name": "EchoVantage" }, "version": { - "id": 7744, - "name": "10.5.1.1" + "id": 8699, + "name": "3" }, - "certificationDate": "2021-11-19", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 15, @@ -3871,194 +19983,124 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -4066,9 +20108,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { @@ -4076,27 +20118,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://prognocis.com/fhir/index.html", + "listSourceURL": "https://elationfhir.readme.io/reference/service-base-urls", "softwareProducts": [ { - "id": 9098, - "chplProductNumber": "15.04.04.1144.AntW.71.01.1.171219", + "id": 9876, + "chplProductNumber": "15.04.04.2717.Elat.03.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -4106,92 +20148,97 @@ "name": "" }, "developer": { - "id": 145, - "name": "Benchmark Systems" + "id": 1718, + "name": "Elation Health, Inc." }, "product": { - "id": 2794, - "name": "Benchmark EHR" + "id": 3036, + "name": "Elation EMR" }, "version": { - "id": 7063, - "name": "7.1" + "id": 7651, + "name": "Version 3" }, - "certificationDate": "2017-12-19", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -4199,29 +20246,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -4229,69 +20276,34 @@ "title": "Quality Management System" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "title": "Audit Report(s)" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -4299,24 +20311,19 @@ "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, @@ -4324,79 +20331,49 @@ "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "title": "Standardized API for Patient and Population Services" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://docs.elationhealth.com/reference/introduction" }, { "criterion": { @@ -4404,22 +20381,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://prognocis.com/ehr-interoperability/" + "value": "https://docs.elationhealth.com/reference" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://docs.elationhealth.com/reference/introduction" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://api.enablemyhealth.com", + "softwareProducts": [ { - "id": 8856, - "chplProductNumber": "15.04.04.2689.Prog.31.00.1.170929", + "id": 10795, + "chplProductNumber": "15.02.05.1439.ENAD.01.01.1.220118", "edition": { "id": 3, "name": "2015" @@ -4429,87 +20411,77 @@ "name": "" }, "developer": { - "id": 1690, - "name": "Bizmatics Inc." + "id": 440, + "name": "EnableDoc LLC" }, "product": { - "id": 247, - "name": "PrognoCIS" + "id": 3528, + "name": "Enablemypractice" }, "version": { - "id": 6882, - "name": "Denali 3.1" + "id": 8028, + "name": "EHR 5.0" }, - "certificationDate": "2017-09-29", + "certificationDate": "2022-01-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -4517,34 +20489,39 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -4552,69 +20529,64 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, @@ -4622,19 +20594,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -4642,57 +20614,47 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://api.enablemyhealth.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://apitest.enablemyhealth.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://apitest.enablemyhealth.com/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.endosoft.com/fhir", + "softwareProducts": [ { - "id": 10615, - "chplProductNumber": "15.04.04.2769.Secu.03.01.1.210423", + "id": 10854, + "chplProductNumber": "15.02.05.2721.ENDV.01.01.1.220310", "edition": { "id": 3, "name": "2015" @@ -4702,87 +20664,117 @@ "name": "" }, "developer": { - "id": 1770, - "name": "Inmediata Health Group LLC" + "id": 1722, + "name": "EndoSoft, LLC" }, "product": { - "id": 3580, - "name": "SecureEMR+" + "id": 3487, + "name": "EndoVault" }, "version": { - "id": 8311, - "name": "Denali 3.1" + "id": 7877, + "name": "3.2" }, - "certificationDate": "2021-04-23", + "certificationDate": "2022-03-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -4790,24 +20782,49 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 25, @@ -4815,99 +20832,94 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -4915,24 +20927,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ @@ -4940,37 +20942,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + "value": "https://www.endosoft.com/fhir" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://betterdayhealth.net/fhir-docs", + "listSourceURL": "https://open.epic.com/MyApps/Endpoints", "softwareProducts": [ { - "id": 11074, - "chplProductNumber": "15.04.04.2992.Bett.02.02.1.221214", + "id": 11340, + "chplProductNumber": "15.04.04.1447.Epic.AM.26.1.230908", "edition": { "id": 3, "name": "2015" @@ -4980,62 +20982,57 @@ "name": "" }, "developer": { - "id": 1993, - "name": "Better Day™ Health" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3144, - "name": "Better Day™ Health" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8656, - "name": "2.1" + "id": 8854, + "name": "August 2023" }, - "certificationDate": "2022-12-14", + "certificationDate": "2023-09-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -5043,49 +21040,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -5093,54 +21075,29 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -5148,107 +21105,34 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://hub.meldrx.com/", - "softwareProducts": [ - { - "id": 10435, - "chplProductNumber": "15.04.04.1322.Blue.02.00.0.200807", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 323, - "name": "Darena Solutions LLC" - }, - "product": { - "id": 3545, - "name": "BlueButtonPRO" - }, - "version": { - "id": 8157, - "name": "2" - }, - "certificationDate": "2020-08-07", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -5256,39 +21140,54 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -5296,9 +21195,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.sb.meldrx.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -5306,19 +21205,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.sb.meldrx.com/" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://blueehr.com/fhir-urls/", - "softwareProducts": [ + }, { - "id": 10797, - "chplProductNumber": "15.02.05.3076.ZHHC.01.02.1.220119", + "id": 10869, + "chplProductNumber": "15.04.04.1447.Epic.AM.21.1.220318", "edition": { "id": 3, "name": "2015" @@ -5328,42 +21230,42 @@ "name": "" }, "developer": { - "id": 2077, - "name": "ZH Healthcare, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3542, - "name": "BlueEHR" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8357, - "name": "3" + "id": 8467, + "name": "February 2022" }, - "certificationDate": "2022-01-19", + "certificationDate": "2022-03-18", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 5, @@ -5376,74 +21278,59 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 54, @@ -5451,19 +21338,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 42, @@ -5471,72 +21358,94 @@ "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://blueehr.com/certifications-and-costs/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -5544,19 +21453,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal/fhir-endpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 9540, - "chplProductNumber": "15.05.05.1947.BRID.01.00.0.180703", + "id": 11262, + "chplProductNumber": "15.04.04.1447.Epic.AM.24.1.230308", "edition": { "id": 3, "name": "2015" @@ -5566,47 +21478,52 @@ "name": "" }, "developer": { - "id": 948, - "name": "Bridge Patient Portal Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 1610, - "name": "Bridge Patient Portal" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 7378, - "name": "3" + "id": 8783, + "name": "February 2023" }, - "certificationDate": "2018-07-03", + "certificationDate": "2023-03-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -5614,29 +21531,59 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -5644,14 +21591,39 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 29, @@ -5659,52 +21631,92 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://bridgepatientportal.docs.apiary.io/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://bridgepatientportal.docs.apiary.io/" + "value": "https://open.epic.com/Interface/FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://identity.emdscloud.com/api/api-resource/fhir", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11167, - "chplProductNumber": "15.04.04.2700.Apri.19.01.1.221228", + "id": 11303, + "chplProductNumber": "15.04.04.1447.Epic.AM.25.1.230621", "edition": { "id": 3, "name": "2015" @@ -5714,117 +21726,107 @@ "name": "" }, "developer": { - "id": 1701, - "name": "CompuGroup Medical US" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3679, - "name": "CGM APRIMA" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8727, - "name": "v19" + "id": 8819, + "name": "May 2023" }, - "certificationDate": "2022-12-28", + "certificationDate": "2023-06-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -5832,24 +21834,9 @@ "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 4, @@ -5857,14 +21844,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -5872,14 +21854,14 @@ "title": "Automatic Access Time-out" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 59, @@ -5887,87 +21869,102 @@ "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" }, { - "id": 11133, - "chplProductNumber": "15.04.04.2700.eMDs.10.02.1.221227", + "id": 11437, + "chplProductNumber": "15.04.04.1447.Epic.AM.27.1.240104", "edition": { "id": 3, "name": "2015" @@ -5977,47 +21974,47 @@ "name": "" }, "developer": { - "id": 1701, - "name": "CompuGroup Medical US" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3674, - "name": "CGM eMDs" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8703, - "name": "v10" + "id": 8945, + "name": "November 2023" }, - "certificationDate": "2022-12-27", + "certificationDate": "2024-01-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -6025,49 +22022,54 @@ "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -6075,59 +22077,64 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, @@ -6135,29 +22142,39 @@ "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -6165,47 +22182,47 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://apitest.emds.com/documentation" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apitest.emds.com/documentation" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apitest.emds.com/documentation" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://unify-developer.chbase.com/?page=FHIRAPI", - "softwareProducts": [ + }, { - "id": 10965, - "chplProductNumber": "15.04.04.1533.CHBa.20.03.0.220819", + "id": 10941, + "chplProductNumber": "15.04.04.1447.Epic.AM.22.1.220713", "edition": { "id": 3, "name": "2015" @@ -6215,42 +22232,57 @@ "name": "" }, "developer": { - "id": 534, - "name": "Get Real Health" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3164, - "name": "CHBase™ CEHRT Edition" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8559, - "name": "20" + "id": 8537, + "name": "May 2022" }, - "certificationDate": "2022-08-19", + "certificationDate": "2022-07-13", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 29, @@ -6258,9 +22290,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 54, @@ -6268,9 +22335,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -6278,47 +22380,74 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -6326,19 +22455,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://docs.canvasmedical.com/reference/service-base-urls", - "softwareProducts": [ + }, { - "id": 10904, - "chplProductNumber": "15.04.04.3112.Canv.01.00.1.220523", + "id": 11120, + "chplProductNumber": "15.04.04.1447.Epic.AM.23.1.221222", "edition": { "id": 3, "name": "2015" @@ -6347,58 +22479,48 @@ "id": 0, "name": "" }, - "developer": { - "id": 2113, - "name": "Canvas Medical, Inc." + "developer": { + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3624, - "name": "Canvas Medical" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8502, - "name": "1" + "id": 8693, + "name": "November 2022" }, - "certificationDate": "2022-05-23", + "certificationDate": "2022-12-22", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -6406,54 +22528,44 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -6466,29 +22578,29 @@ "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 52, @@ -6496,34 +22608,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 56, @@ -6531,42 +22653,57 @@ "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.canvasmedical.com/reference/getting-started-with-your-api" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.canvasmedical.com/reference/getting-started-with-your-api" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -6574,19 +22711,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.canvasmedical.com/reference/getting-started-with-your-api" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.acurussolutions.com/Certification.html", - "softwareProducts": [ + }, { - "id": 10807, - "chplProductNumber": "15.02.05.2669.ACUR.01.01.1.220131", + "id": 10942, + "chplProductNumber": "15.04.04.1447.Epic.IN.23.1.220713", "edition": { "id": 3, "name": "2015" @@ -6596,102 +22728,67 @@ "name": "" }, "developer": { - "id": 1670, - "name": "Acurus Solutions, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 83, - "name": "Capella EHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 7258, - "name": "6.1" + "id": 8538, + "name": "May 2022" }, - "certificationDate": "2022-01-31", + "certificationDate": "2022-07-13", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 35, @@ -6699,59 +22796,44 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 4, @@ -6759,59 +22841,64 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -6819,27 +22906,52 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.acurussolutions.com/Certification.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.acurussolutions.com/Certification.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -6847,19 +22959,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.acurussolutions.com/Certification.html" + "value": "https://open.epic.com/Interface/FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://api-datamanager.carecloud.com/", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11173, - "chplProductNumber": "15.04.04.2981.Care.03.01.1.221229", + "id": 11119, + "chplProductNumber": "15.04.04.1447.Epic.IN.24.1.221222", "edition": { "id": 3, "name": "2015" @@ -6869,67 +22976,77 @@ "name": "" }, "developer": { - "id": 1982, - "name": "CareCloud Health, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3151, - "name": "CareCloud Charts" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 8730, - "name": "3.0" + "id": 8692, + "name": "November 2022" }, - "certificationDate": "2022-12-29", + "certificationDate": "2022-12-22", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 29, @@ -6937,49 +23054,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -6987,132 +23099,122 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" }, { - "id": 11002, - "chplProductNumber": "15.04.04.2112.Vert.09.01.1.221024", + "id": 11304, + "chplProductNumber": "15.04.04.1447.Epic.IN.26.1.230621", "edition": { "id": 3, "name": "2015" @@ -7122,32 +23224,37 @@ "name": "" }, "developer": { - "id": 1113, - "name": "Meridian Medical Management" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 2971, - "name": "VertexDr" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 8596, - "name": "9.1" + "id": 8820, + "name": "May 2023" }, - "certificationDate": "2022-10-24", + "certificationDate": "2023-06-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -7155,64 +23262,49 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 35, @@ -7220,29 +23312,24 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -7250,49 +23337,64 @@ "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 14, @@ -7300,19 +23402,19 @@ "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 43, @@ -7320,47 +23422,47 @@ "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" }, { - "id": 9799, - "chplProductNumber": "15.04.04.2790.Talk.01.01.1.181217", + "id": 11341, + "chplProductNumber": "15.04.04.1447.Epic.IN.27.1.230908", "edition": { "id": 3, "name": "2015" @@ -7370,137 +23472,72 @@ "name": "" }, "developer": { - "id": 1791, - "name": "CareCloud, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 2709, - "name": "talkEHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 6500, - "name": "Version 1.0" + "id": 8855, + "name": "August 2023" }, - "certificationDate": "2018-12-17", + "certificationDate": "2023-09-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -7508,19 +23545,19 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 14, @@ -7528,84 +23565,94 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, @@ -7613,57 +23660,57 @@ "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://qualifacts.com/api-documentation/", - "softwareProducts": [ + }, { - "id": 9807, - "chplProductNumber": "15.04.04.3124.Care.S3.00.1.181220", + "id": 10872, + "chplProductNumber": "15.04.04.1447.Epic.IN.22.1.220318", "edition": { "id": 3, "name": "2015" @@ -7673,77 +23720,52 @@ "name": "" }, "developer": { - "id": 2125, - "name": "Qualifacts Systems, LLC" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3154, - "name": "CareLogic" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 7590, - "name": "Enterprise S3" + "id": 8470, + "name": "February 2022" }, - "certificationDate": "2018-12-20", + "certificationDate": "2022-03-18", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -7751,14 +23773,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -7766,34 +23783,29 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -7801,64 +23813,74 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -7866,24 +23888,44 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -7891,9 +23933,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://qualifacts.com/api-documentation/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -7901,27 +23943,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://qualifacts.com/api-documentation/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://qualifacts.com/api-documentation/" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://carepaths.com/api_documentation/", - "softwareProducts": [ + }, { - "id": 10607, - "chplProductNumber": "15.04.04.2982.Care.19.00.1.210408", + "id": 11263, + "chplProductNumber": "15.04.04.1447.Epic.IN.25.1.230315", "edition": { "id": 3, "name": "2015" @@ -7931,82 +23968,32 @@ "name": "" }, "developer": { - "id": 1983, - "name": "Carepaths Inc" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3577, - "name": "CarePaths EHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 8303, - "name": "19.11" + "id": 8784, + "name": "February 2023" }, - "certificationDate": "2021-04-08", + "certificationDate": "2023-03-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 5, @@ -8014,14 +24001,19 @@ "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -8029,34 +24021,29 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 34, @@ -8064,24 +24051,14 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, @@ -8089,97 +24066,84 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - } - ], - "apiDocumentation": [ + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://carepaths.com/api_documentation/" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://developer.carepaths.com/" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://carepaths.com/api_documentation/" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://carefluence.com/carefluence-fhir-endpoints/", - "softwareProducts": [ - { - "id": 10922, - "chplProductNumber": "15.04.04.2657.Care.R4.01.0.220629", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1658, - "name": "Carefluence" - }, - "product": { - "id": 2614, - "name": "Carefluence Open API" - }, - "version": { - "id": 8519, - "name": "R4" - }, - "certificationDate": "2022-06-29", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 29, @@ -8187,9 +24151,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -8197,24 +24166,14 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -8224,35 +24183,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.carefluence.com" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.carefluence.com" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api.carefluence.com" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.charmhealth.com/resources/fhir/index.html#api-endpoints", - "softwareProducts": [ + }, { - "id": 9741, - "chplProductNumber": "15.04.04.1948.ChAR.12.00.1.181115", + "id": 11438, + "chplProductNumber": "15.04.04.1447.Epic.IN.28.1.240104", "edition": { "id": 3, "name": "2015" @@ -8262,52 +24216,52 @@ "name": "" }, "developer": { - "id": 949, - "name": "MedicalMine Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3160, - "name": "CharmHealth EHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 7537, - "name": "1.2" + "id": 8946, + "name": "November 2023" }, - "certificationDate": "2018-11-15", + "certificationDate": "2024-01-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 52, @@ -8315,44 +24269,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 29, @@ -8360,24 +24294,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 37, @@ -8385,109 +24324,84 @@ "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -8500,40 +24414,50 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.charmhealth.com/resources/fhir/index.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.charmhealth.com/resources/fhir/index.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.charmhealth.com/resources/fhir/index.html" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -8541,176 +24465,121 @@ ] }, { - "listSourceURL": "https://api.azaleahealth.com/fhir/R4/Endpoint", + "listSourceURL": "https://datalinksoftware.com/Endpoint.json", "softwareProducts": [ { - "id": 11140, - "chplProductNumber": "15.04.04.2688.Char.07.01.1.221227", + "id": 11110, + "chplProductNumber": "15.04.04.2895.Trin.04.01.1.221221", "edition": { "id": 3, "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1689, - "name": "Azalea Health" - }, - "product": { - "id": 2881, - "name": "ChartAccess ®" - }, - "version": { - "id": 8710, - "name": "7.0" - }, - "certificationDate": "2022-12-27", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1896, + "name": "DataLink Software, LLC" + }, + "product": { + "id": 3453, + "name": "EvokeEHR" + }, + "version": { + "id": 8686, + "name": "4.0" + }, + "certificationDate": "2022-12-21", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -8718,19 +24587,24 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 1, @@ -8738,24 +24612,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -8763,45 +24647,45 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" } ], "acb": "Drummond Group" @@ -8809,11 +24693,11 @@ ] }, { - "listSourceURL": "https://dev2-charteasy.theoriamedical.com/fhir/app", + "listSourceURL": "https://fhir.myeyecarerecords.com/fhir-endpoints", "softwareProducts": [ { - "id": 10712, - "chplProductNumber": "15.04.04.3091.Char.01.00.1.211108", + "id": 9988, + "chplProductNumber": "15.04.04.2725.EyeM.02.00.1.190501", "edition": { "id": 3, "name": "2015" @@ -8823,67 +24707,37 @@ "name": "" }, "developer": { - "id": 2092, - "name": "Theoria Medical, PLLC" + "id": 1726, + "name": "EyeMD EMR Healthcare Systems, Inc." }, "product": { - "id": 3591, - "name": "ChartEasy™" + "id": 3078, + "name": "EyeMD Electronic Medical Records" }, "version": { - "id": 8389, - "name": "1.1" + "id": 7748, + "name": "Version 2" }, - "certificationDate": "2021-11-08", + "certificationDate": "2019-05-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { "id": 51, @@ -8891,9 +24745,14 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, @@ -8901,34 +24760,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -8936,14 +24795,24 @@ "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 53, @@ -8951,54 +24820,54 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -9006,35 +24875,142 @@ "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.myeyecarerecords.com/api" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.charteasy.com/" + "value": "https://fhir.myeyecarerecords.com/api" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.charteasy.com/" + "value": "https://fhir.myeyecarerecords.com/api" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://docs.fire.ly/projects/Firely-Server/en/latest/_static/g10/EndpointBundleFirely.json", + "softwareProducts": [ + { + "id": 11234, + "chplProductNumber": "15.04.04.3143.Fire.05.00.0.230208", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2144, + "name": "Firely USA Inc." + }, + "product": { + "id": 3695, + "name": "Firely Server" + }, + "version": { + "id": 8764, + "name": "5" + }, + "certificationDate": "2023-02-08", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.charteasy.com/" + "value": "https://fire.ly/g10-certification/" } ], "acb": "Drummond Group" @@ -9042,11 +25018,11 @@ ] }, { - "listSourceURL": "https://chartmakerapi.azurewebsites.net/", + "listSourceURL": "https://academy.practicesuite.com/fhir-server-links/", "softwareProducts": [ { - "id": 11070, - "chplProductNumber": "15.04.04.2296.Char.22.02.1.221213", + "id": 10789, + "chplProductNumber": "15.02.05.2198.FREC.01.02.1.220113", "edition": { "id": 3, "name": "2015" @@ -9056,37 +25032,37 @@ "name": "" }, "developer": { - "id": 1297, - "name": "STI Computer Services, Inc." + "id": 1199, + "name": "PracticeSuite, Inc." }, "product": { - "id": 3514, - "name": "ChartMaker® Medical Suite" + "id": 2913, + "name": "FreeChiro" }, "version": { - "id": 8653, - "name": "2022.1" + "id": 8430, + "name": "EHR-18.0.0" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-01-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 52, @@ -9094,44 +25070,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -9139,134 +25105,134 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -9274,9 +25240,19 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -9284,9 +25260,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" }, { "criterion": { @@ -9294,27 +25270,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + "value": "http://academy.practicesuite.com/mu-api/" } ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://beta.afoundria.com/api/fhir/urls", - "softwareProducts": [ + "acb": "SLI Compliance" + }, { - "id": 10258, - "chplProductNumber": "15.04.04.2996.Char.12.01.1.191227", + "id": 10788, + "chplProductNumber": "15.02.05.2198.PRAS.01.01.1.220113", "edition": { "id": 3, "name": "2015" @@ -9324,72 +25295,47 @@ "name": "" }, "developer": { - "id": 1997, - "name": "ChartPath, LLC" + "id": 1199, + "name": "PracticeSuite, Inc." }, "product": { - "id": 2784, - "name": "ChartPath" + "id": 3401, + "name": "PracticeSuite" }, "version": { - "id": 7992, - "name": "1.29" + "id": 8429, + "name": "EHR-18.0.0" }, - "certificationDate": "2019-12-27", + "certificationDate": "2022-01-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -9397,39 +25343,39 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 32, @@ -9437,94 +25383,114 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -9532,19 +25498,24 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -9552,17 +25523,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://beta.afoundria.com/api" + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://beta.afoundria.com/api" + "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { @@ -9570,19 +25541,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://beta.afoundria.com/api" + "value": "http://academy.practicesuite.com/mu-api/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.claimpowerehr.com/2015ECURES/documents/CP_FHIR_URLS.csv", + "listSourceURL": "https://careconnect-uat.netsmartcloud.com/baseUrls", "softwareProducts": [ { - "id": 11209, - "chplProductNumber": "15.04.04.1238.Clai.06.02.1.230109", + "id": 11136, + "chplProductNumber": "15.04.04.2816.gEHR.04.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -9592,152 +25563,97 @@ "name": "" }, "developer": { - "id": 239, - "name": "Claimpower, Inc." + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 419, - "name": "Claimpower Mobile EMR" + "id": 3676, + "name": "GEHRIMED" }, "version": { - "id": 8096, - "name": "6.1" + "id": 8706, + "name": "v.4.3" }, - "certificationDate": "2023-01-09", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -9745,39 +25661,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -9785,62 +25696,77 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://sabiamed.com/api-endpoints", - "softwareProducts": [ + }, { - "id": 9737, - "chplProductNumber": "15.04.04.2297.Clin.01.00.1.181029", + "id": 11131, + "chplProductNumber": "15.04.04.2816.myEv.11.02.0.221227", "edition": { "id": 3, "name": "2015" @@ -9850,52 +25776,47 @@ "name": "" }, "developer": { - "id": 1298, - "name": "Sabiamed Corporation" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 2983, - "name": "ClinNext 10" + "id": 2870, + "name": "myEvolv Certified Edition" }, "version": { - "id": 7533, - "name": "V1.0" + "id": 8701, + "name": "11.0" }, - "certificationDate": "2018-10-29", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -9903,49 +25824,59 @@ "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -9953,137 +25884,132 @@ "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sabiamed.com/api-documentation" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.sabiamed.com/api-documentation" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { @@ -10091,19 +26017,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dev.sabiamed.com:8081/MPIServices/" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.goldblattsystems.com/apis", - "softwareProducts": [ + }, { - "id": 10765, - "chplProductNumber": "15.02.05.2738.GOLD.01.01.1.211228", + "id": 11057, + "chplProductNumber": "15.04.04.2816.myUn.22.01.0.221207", "edition": { "id": 3, "name": "2015" @@ -10113,167 +26034,92 @@ "name": "" }, "developer": { - "id": 1739, - "name": "Goldblatt Systems, LLC" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 3169, - "name": "Clinical Semantic Network (CSN)" + "id": 3573, + "name": "myUnity" }, "version": { - "id": 7924, - "name": "8" + "id": 8643, + "name": "2022" }, - "certificationDate": "2021-12-28", + "certificationDate": "2022-12-07", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -10281,19 +26127,24 @@ "title": "Integrity" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -10301,107 +26152,112 @@ "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.goldblattsystems.com/apis/" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.goldblattsystems.com/apis/" + "value": "https://careconnect.netsmartcloud.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.goldblattsystems.com/apis" + "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhirapitest.naiacorp.net/fhir/r4/endpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11150, - "chplProductNumber": "15.04.04.3071.Clou.09.01.1.221227", + "id": 11409, + "chplProductNumber": "15.04.04.2816.myUn.23.02.0.231218", "edition": { "id": 3, "name": "2015" @@ -10411,87 +26267,77 @@ "name": "" }, "developer": { - "id": 2072, - "name": "CloudCraft, LLC" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 3525, - "name": "CloudCraft Software" + "id": 3573, + "name": "myUnity" }, "version": { - "id": 8718, - "name": "9.0" + "id": 8919, + "name": "2023" }, - "certificationDate": "2022-12-27", + "certificationDate": "2023-12-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 12, @@ -10499,89 +26345,94 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -10589,14 +26440,9 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 26, @@ -10604,55 +26450,55 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -10660,11 +26506,11 @@ ] }, { - "listSourceURL": "https://fhir-dev.cloudmd365.com/api", + "listSourceURL": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/FHIR_Service_URLs_MI.pdf", "softwareProducts": [ { - "id": 10282, - "chplProductNumber": "15.04.04.3067.Clou.01.00.1.200122", + "id": 10714, + "chplProductNumber": "15.04.04.2734.GEMM.77.01.1.211110", "edition": { "id": 3, "name": "2015" @@ -10674,42 +26520,47 @@ "name": "" }, "developer": { - "id": 2068, - "name": "Softbir, Inc." + "id": 1735, + "name": "GEMMS" }, "product": { - "id": 3521, - "name": "CloudMD365" + "id": 3227, + "name": "GEMMS ONE" }, "version": { - "id": 8012, - "name": "1" + "id": 7662, + "name": "V7.7C" }, - "certificationDate": "2020-01-22", + "certificationDate": "2021-11-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -10722,14 +26573,59 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -10737,9 +26633,19 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -10751,80 +26657,118 @@ "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir-dev.cloudmd365.com/api/documentation" + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir-dev.cloudmd365.com/api/documentation" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.compulinkadvantage.com/", - "softwareProducts": [ + }, { - "id": 8873, - "chplProductNumber": "15.04.04.2701.Comp.12.00.1.171106", + "id": 10683, + "chplProductNumber": "15.04.04.2795.MedI.77.01.1.210830", "edition": { "id": 3, "name": "2015" @@ -10834,52 +26778,42 @@ "name": "" }, "developer": { - "id": 1702, - "name": "Compulink Healthcare Solutions" + "id": 1796, + "name": "MedInformatix" }, "product": { - "id": 3175, - "name": "Compulink Advantage" + "id": 3039, + "name": "MedInformatix EHR" }, "version": { - "id": 6897, - "name": "Version 12" + "id": 7661, + "name": "7.7" }, - "certificationDate": "2017-11-06", + "certificationDate": "2021-08-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -10887,84 +26821,84 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, @@ -10972,39 +26906,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -11012,67 +26956,62 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", - "softwareProducts": [ + }, { - "id": 10759, - "chplProductNumber": "15.02.05.2713.DY4B.04.03.0.211221", + "id": 11371, + "chplProductNumber": "15.04.04.2795.MedI.78.02.1.231120", "edition": { "id": 3, "name": "2015" @@ -11082,215 +27021,245 @@ "name": "" }, "developer": { - "id": 1714, - "name": "Dynamic Health IT, Inc" + "id": 1796, + "name": "MedInformatix" }, "product": { - "id": 3588, - "name": "ConnectEHR +BulkFHIR" + "id": 3039, + "name": "MedInformatix EHR" }, "version": { - "id": 8379, - "name": "FHIR4-B" + "id": 8882, + "name": "7.8" }, - "certificationDate": "2021-12-21", + "certificationDate": "2023-11-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://www.dynamichealthit.com/dynamic-fhir-api", + "listSourceURL": "https://www.geesemed.com/Medical%20-%20Doc/GeeseMed%20fhir-base-urls.csv", "softwareProducts": [ { - "id": 10697, - "chplProductNumber": "15.02.02.2713.A122.01.02.0.210928", + "id": 11104, + "chplProductNumber": "15.04.04.3013.Gees.07.02.1.221221", "edition": { "id": 3, "name": "2015" @@ -11300,122 +27269,117 @@ "name": "" }, "developer": { - "id": 1714, - "name": "Dynamic Health IT, Inc" + "id": 2014, + "name": "MDOfficeManager" }, "product": { - "id": 3588, - "name": "ConnectEHR +BulkFHIR" + "id": 2859, + "name": "GeeseMed" }, "version": { - "id": 8379, - "name": "FHIR4-B" + "id": 8681, + "name": "7.1" }, - "certificationDate": "2021-09-28", + "certificationDate": "2022-12-21", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 29, @@ -11423,44 +27387,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 36, @@ -11468,9 +27452,9 @@ "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -11478,17 +27462,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + "value": "https://www.geesemed.com/api.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + "value": "https://www.geesemed.com/api.html" }, { "criterion": { @@ -11496,19 +27480,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + "value": "https://www.geesemed.com/api.html" } ], - "acb": "UL LLC" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir.cozeva.com/endpoints", + "listSourceURL": "https://geniusdoc.com/API.php", "softwareProducts": [ { - "id": 11139, - "chplProductNumber": "15.04.04.1102.Coze.03.02.0.221227", + "id": 10745, + "chplProductNumber": "15.02.05.1529.GDOC.01.01.1.211209", "edition": { "id": 3, "name": "2015" @@ -11518,32 +27502,62 @@ "name": "" }, "developer": { - "id": 103, - "name": "Applied Research Works, Inc." + "id": 530, + "name": "GeniusDoc, Inc." }, "product": { - "id": 183, - "name": "Cozeva" + "id": 814, + "name": "GeniusDoc" }, "version": { - "id": 8709, - "name": "3.1" + "id": 7603, + "name": "12.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2021-12-09", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -11551,14 +27565,9 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -11566,39 +27575,179 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -11606,9 +27755,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhir.developers.cozeva.com/" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" }, { "criterion": { @@ -11616,27 +27765,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir.developers.cozeva.com/" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.developers.cozeva.com/" + "value": "https://geniusdoc.com/API.php" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", + "listSourceURL": "https://api.sevocity.com/api/patients/v1/Endpoint", "softwareProducts": [ { - "id": 11183, - "chplProductNumber": "15.04.04.2704.Cred.11.01.1.221230", + "id": 11186, + "chplProductNumber": "15.04.04.2324.Geri.GE.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -11646,197 +27795,177 @@ "name": "" }, "developer": { - "id": 1705, - "name": "Credible Behavioral Health, Inc." + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3179, - "name": "Credible Behavioral Health" + "id": 2907, + "name": "Geriatrics Select EHR powered by Sevocity�" }, "version": { - "id": 7143, - "name": "Version 11" + "id": 8740, + "name": "v13.0" }, "certificationDate": "2022-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "title": "Encrypt Authentication Credentials" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 25, @@ -11844,39 +27973,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -11886,35 +28010,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.qualifacts.com/api-documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.qualifacts.com/api-documentation/" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.qualifacts.com/api-documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://criterions.com/fhir-end-points/", - "softwareProducts": [ + }, { - "id": 10171, - "chplProductNumber": "15.04.04.2705.Crit.04.00.1.191111", + "id": 11189, + "chplProductNumber": "15.04.04.2324.Pain.PA.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -11924,47 +28043,62 @@ "name": "" }, "developer": { - "id": 1706, - "name": "Criterions Software Inc" + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3497, - "name": "Criterions EHR" + "id": 2908, + "name": "Pain Care Select EHR powered by Sevocity�" }, "version": { - "id": 7909, - "name": "4" + "id": 8743, + "name": "v13.0" }, - "certificationDate": "2019-11-11", + "certificationDate": "2022-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 4, @@ -11972,44 +28106,54 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -12017,14 +28161,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 15, @@ -12032,34 +28176,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -12067,117 +28206,82 @@ "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://criterions.com/documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://criterions.com/fhir-api-documentation/" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://criterions.com/fhir-api-documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.crystalpm.com/FHIRServiceURLs.csv", - "softwareProducts": [ + }, { - "id": 10996, - "chplProductNumber": "15.04.04.1030.Crys.06.01.1.221004", + "id": 11187, + "chplProductNumber": "15.04.04.2324.Sevo.13.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -12187,32 +28291,57 @@ "name": "" }, "developer": { - "id": 31, - "name": "Abeo Solutions, Inc" + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3017, - "name": "Crystal Practice Management" + "id": 2132, + "name": "Sevocity" }, "version": { - "id": 8592, - "name": "6.0" + "id": 8741, + "name": "v13.0" }, - "certificationDate": "2022-10-04", + "certificationDate": "2022-12-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 34, @@ -12220,59 +28349,54 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -12280,44 +28404,34 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -12325,29 +28439,29 @@ "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 14, @@ -12355,77 +28469,67 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.curemd.com/developer/base-fhir-urls", - "softwareProducts": [ + }, { - "id": 11246, - "chplProductNumber": "15.07.04.2706.CURE.10.01.1.230302", + "id": 11193, + "chplProductNumber": "15.04.04.2324.Surg.SU.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -12435,87 +28539,62 @@ "name": "" }, "developer": { - "id": 1707, - "name": "CureMD.com, Inc." + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3181, - "name": "CureMD SMART Cloud" + "id": 2909, + "name": "Surgery Select EHR powered by Sevocity�" }, "version": { - "id": 554, - "name": "10g" + "id": 8745, + "name": "v13.0" }, - "certificationDate": "2023-03-02", + "certificationDate": "2022-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 34, @@ -12523,9 +28602,14 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 44, @@ -12533,14 +28617,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -12548,19 +28642,29 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 52, @@ -12568,14 +28672,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -12583,24 +28682,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 5, @@ -12608,29 +28707,29 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -12638,62 +28737,52 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://static.glaceemr.com/endpoints/urls.json", + "softwareProducts": [ { - "id": 8603, - "chplProductNumber": "15.07.07.2706.CU01.01.00.1.170705", + "id": 9559, + "chplProductNumber": "15.04.04.1535.Glac.06.00.1.180629", "edition": { "id": 3, "name": "2015" @@ -12703,82 +28792,47 @@ "name": "" }, "developer": { - "id": 1707, - "name": "CureMD.com, Inc." + "id": 536, + "name": "Glenwood Systems LLC" }, "product": { - "id": 3181, - "name": "CureMD SMART Cloud" + "id": 3229, + "name": "GlaceEMR" }, "version": { - "id": 6709, - "name": "10g" + "id": 7396, + "name": "6.0" }, - "certificationDate": "2017-07-05", + "certificationDate": "2018-06-29", "certificationStatus": { - "id": 4, - "name": "Withdrawn by ONC-ACB" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -12786,9 +28840,9 @@ "title": "Quality Management System" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 35, @@ -12796,49 +28850,59 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -12846,34 +28910,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 26, @@ -12881,54 +28940,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 1, @@ -12936,39 +29000,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -12978,35 +29057,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + "value": "https://api.glaceemr.com/documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + "value": "https://api.glaceemr.com/documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://api.glaceemr.com/documentation" } ], - "acb": "ICSA Labs" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://aidbox.cx360.net/service-base-urls", + "listSourceURL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", "softwareProducts": [ { - "id": 9168, - "chplProductNumber": "15.04.04.2703.Cx36.07.00.1.171226", + "id": 11352, + "chplProductNumber": "15.04.04.2913.Prim.21.03.1.231003", "edition": { "id": 3, "name": "2015" @@ -13016,152 +29095,147 @@ "name": "" }, "developer": { - "id": 1704, - "name": "Core Solutions Inc" + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 488, - "name": "Cx360" + "id": 3230, + "name": "Greenway Prime Suite" }, "version": { - "id": 7096, - "name": "7" + "id": 8563, + "name": "v21" }, - "certificationDate": "2017-12-26", + "certificationDate": "2023-10-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 4, @@ -13169,92 +29243,87 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + "value": "https://developers.greenwayhealth.com/developer-platform" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir", - "softwareProducts": [ + }, { - "id": 10072, - "chplProductNumber": "15.04.04.2975.Cyfl.03.00.1.190813", + "id": 10969, + "chplProductNumber": "15.04.04.2913.Gree.21.02.1.220831", "edition": { "id": 3, "name": "2015" @@ -13264,127 +29333,42 @@ "name": "" }, "developer": { - "id": 1976, - "name": "Cyfluent" + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 515, - "name": "Cyfluent" + "id": 3230, + "name": "Greenway Prime Suite" }, "version": { - "id": 7821, - "name": "Version 3.2" + "id": 8563, + "name": "v21" }, - "certificationDate": "2019-08-13", + "certificationDate": "2022-08-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -13392,49 +29376,44 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -13442,24 +29421,24 @@ "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -13467,19 +29446,29 @@ "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 21, @@ -13487,24 +29476,29 @@ "title": "Data Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 14, @@ -13512,52 +29506,67 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developers.greenwayhealth.com/developer-platform" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://portal.doxemr.aidbox.io/service-base-urls", - "softwareProducts": [ + }, { - "id": 10806, - "chplProductNumber": "15.02.05.1317.DOXE.01.01.1.220131", + "id": 10968, + "chplProductNumber": "15.04.04.2913.Gree.21.04.0.220831", "edition": { "id": 3, "name": "2015" @@ -13567,67 +29576,77 @@ "name": "" }, "developer": { - "id": 318, - "name": "DOX EMR" + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 520, - "name": "DOX EMR" + "id": 3504, + "name": "Intergy EHR" }, "version": { - "id": 7206, - "name": "5.2" + "id": 8562, + "name": "v21" }, - "certificationDate": "2022-01-31", + "certificationDate": "2022-08-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 12, @@ -13635,162 +29654,162 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/g10-API-for-patient-and-population-services.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://digidms.com/documents/DigiDMSFHIR_ServiceURL.pdf", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11059, - "chplProductNumber": "15.04.04.2709.Digi.22.02.1.221209", + "id": 11351, + "chplProductNumber": "15.04.04.2913.Inte.21.05.0.231003", "edition": { "id": 3, "name": "2015" @@ -13800,132 +29819,52 @@ "name": "" }, "developer": { - "id": 1710, - "name": "DigiDMS, Inc." + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 3184, - "name": "DigiDMS" + "id": 3504, + "name": "Intergy EHR" }, "version": { - "id": 8645, - "name": "22.0" + "id": 8562, + "name": "v21" }, - "certificationDate": "2022-12-09", + "certificationDate": "2023-10-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -13933,114 +29872,134 @@ "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -14048,35 +30007,40 @@ "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" } ], "acb": "Drummond Group" @@ -14084,11 +30048,11 @@ ] }, { - "listSourceURL": "https://drcloudemr.com/drcloudehr-api-documentation/", + "listSourceURL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api/Endpoint?connection-type=hl7-fhir-rest", "softwareProducts": [ { - "id": 10835, - "chplProductNumber": "15.02.05.1434.ENST.01.01.1.220218", + "id": 11416, + "chplProductNumber": "15.99.04.1582.HC01.10.02.1.231220", "edition": { "id": 3, "name": "2015" @@ -14098,87 +30062,92 @@ "name": "" }, "developer": { - "id": 435, - "name": "EnSoftek, Inc" + "id": 583, + "name": "Health Care Systems, Inc." }, "product": { - "id": 3081, - "name": "DrCloudEHR" + "id": 889, + "name": "HCS eMR" }, "version": { - "id": 7760, - "name": "2025" + "id": 8925, + "name": "10" }, - "certificationDate": "2022-02-18", + "certificationDate": "2023-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, @@ -14191,59 +30160,64 @@ "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 14, @@ -14251,29 +30225,39 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 15, @@ -14281,59 +30265,87 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://drcloudemr.com/drcloudehr-api-documentation/" + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, { "criterion": { @@ -14341,27 +30353,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.drcloudemr.com/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://docs.drcloudemr.com/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://drsdoc.com/fhir%20service%20urls.pdf", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11072, - "chplProductNumber": "15.04.04.1764.DrsE.12.01.1.221213", + "id": 11168, + "chplProductNumber": "15.07.04.1582.HC01.09.01.1.221229", "edition": { "id": 3, "name": "2015" @@ -14371,37 +30370,97 @@ "name": "" }, "developer": { - "id": 765, - "name": "Keiser Computers, Inc." + "id": 583, + "name": "Health Care Systems, Inc." }, "product": { - "id": 1141, - "name": "Drs Enterprise" + "id": 889, + "name": "HCS eMR" }, "version": { - "id": 8654, - "name": "12" + "id": 7771, + "name": "9" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 12, @@ -14409,29 +30468,44 @@ "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -14439,34 +30513,39 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -14474,29 +30553,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, @@ -14504,34 +30568,34 @@ "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 36, @@ -14539,9 +30603,9 @@ "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 4, @@ -14549,29 +30613,47 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://drsdoc.com/FHIRapi" + "value": "https://hcswebportal.corporate.hcsinc.net/hcsclinicals_fhir" }, { "criterion": { @@ -14579,15 +30661,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://drsdoc.com/FHIRapi" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "http://drsdoc.com/FHIRapi" + "value": "https://hcswebportal.corporate.hcsinc.net/hcsclinicals_fhir" } ], "acb": "Drummond Group" @@ -14595,11 +30669,11 @@ ] }, { - "listSourceURL": "https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", + "listSourceURL": "https://hag-fhir.amazingcharts.com/ct/endpoints", "softwareProducts": [ { - "id": 11144, - "chplProductNumber": "15.04.04.1853.ECLI.03.01.1.221227", + "id": 9589, + "chplProductNumber": "15.04.04.1569.Harr.09.00.1.180701", "edition": { "id": 3, "name": "2015" @@ -14609,57 +30683,62 @@ "name": "" }, "developer": { - "id": 854, - "name": "MPN Software Systems, Inc." + "id": 570, + "name": "Harris CareTracker, Inc" }, "product": { - "id": 2855, - "name": "ECLIPSE Spectrum" + "id": 3231, + "name": "Harris CareTracker" }, "version": { - "id": 8713, - "name": "v3" + "id": 7411, + "name": "9" }, - "certificationDate": "2022-12-27", + "certificationDate": "2018-07-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, @@ -14667,169 +30746,177 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" + "value": "https://harrisambulatory.com/caretracker-api-documentation/" }, { "criterion": { @@ -14837,15 +30924,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -14853,11 +30932,11 @@ ] }, { - "listSourceURL": "https://fhirpt-stage.officeally.com/fhir/r4/endpoints", + "listSourceURL": "https://app-52512.on-aptible.com/service-base-urls", "softwareProducts": [ { - "id": 11093, - "chplProductNumber": "15.04.04.2822.EHR2.05.01.1.221219", + "id": 11055, + "chplProductNumber": "15.04.04.3130.Heal.01.00.1.221207", "edition": { "id": 3, "name": "2015" @@ -14867,82 +30946,92 @@ "name": "" }, "developer": { - "id": 1823, - "name": "Office Ally, LLC" + "id": 2131, + "name": "Healthie" }, "product": { - "id": 3192, - "name": "EHR 24/7" + "id": 3661, + "name": "Healthie" }, "version": { - "id": 8671, - "name": "5.1.0" + "id": 8641, + "name": "Cures 1" }, - "certificationDate": "2022-12-19", + "certificationDate": "2022-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -14952,42 +31041,27 @@ { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 29, @@ -14995,79 +31069,84 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + "value": "https://cmpl.aidbox.app/documentation" }, { "criterion": { @@ -15075,15 +31154,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + "value": "https://cmpl.aidbox.app/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -15091,11 +31170,11 @@ ] }, { - "listSourceURL": "https://ehryourway.com/content/fhir-service-urls.pdf", + "listSourceURL": "https://amsemr.com/endpoints/", "softwareProducts": [ { - "id": 10757, - "chplProductNumber": "15.02.05.1042.ADAP.01.01.0.211220", + "id": 10834, + "chplProductNumber": "15.02.05.1086.AMEM.01.01.1.220217", "edition": { "id": 3, "name": "2015" @@ -15105,82 +31184,52 @@ "name": "" }, "developer": { - "id": 43, - "name": "Adaptamed, LLC" + "id": 87, + "name": "American Medical Solutions, Inc." }, "product": { - "id": 2984, - "name": "EHR Your Way" + "id": 166, + "name": "Helios" }, "version": { - "id": 7536, - "name": "9.2.0.0" + "id": 8077, + "name": "2.0" }, - "certificationDate": "2021-12-20", + "certificationDate": "2022-02-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 25, @@ -15188,49 +31237,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 32, @@ -15238,24 +31287,29 @@ "title": "Amendments" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -15263,24 +31317,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -15288,64 +31347,77 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.interopengine.com/2021/open-api-documentation.html" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ehryourway.com/api" + "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, { "criterion": { @@ -15353,15 +31425,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ehryourway.com/api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" + "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" } ], "acb": "SLI Compliance" @@ -15369,11 +31433,11 @@ ] }, { - "listSourceURL": "https://mm-fhir-endpoint-display.prod.fhir.ema-api.com/", + "listSourceURL": "https://www.ipclinical.com/mu-disclosure.html", "softwareProducts": [ { - "id": 11032, - "chplProductNumber": "15.04.04.2002.EMA6.70.18.1.221129", + "id": 10278, + "chplProductNumber": "15.05.05.2163.PEMR.01.00.1.200123", "edition": { "id": 3, "name": "2015" @@ -15383,32 +31447,47 @@ "name": "" }, "developer": { - "id": 1003, - "name": "Modernizing Medicine" + "id": 1164, + "name": "Physicians EMR, LLC" }, "product": { - "id": 1697, - "name": "EMA" + "id": 1925, + "name": "IPClinical" }, "version": { - "id": 8623, - "name": "7" + "id": 1259, + "name": "2.1" }, - "certificationDate": "2022-11-29", + "certificationDate": "2020-01-23", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { "id": 56, @@ -15416,19 +31495,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 12, @@ -15436,99 +31505,179 @@ "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 34, @@ -15536,77 +31685,72 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ipclinical.com/mu-disclosure.html" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.modmed.com/public-api-v2/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://inpracsys.com/fhir", + "softwareProducts": [ { - "id": 11145, - "chplProductNumber": "15.04.04.1467.Exsc.07.01.1.221227", + "id": 10194, + "chplProductNumber": "15.05.05.2762.INPS.01.00.1.191206", "edition": { "id": 3, "name": "2015" @@ -15616,42 +31760,67 @@ "name": "" }, "developer": { - "id": 468, - "name": "Exscribe, Inc." + "id": 1763, + "name": "InPracSys" }, "product": { - "id": 714, - "name": "Exscribe EHR" + "id": 3261, + "name": "InPracSys EHR" }, "version": { - "id": 8714, - "name": "7" + "id": 7931, + "name": "9.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2019-12-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -15664,109 +31833,124 @@ "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 9, @@ -15774,49 +31958,49 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -15824,9 +32008,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://exscribemobile.com/MU/EhrApiV01/" + "value": "https://inpracsys.com/fhir" }, { "criterion": { @@ -15834,22 +32018,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://exscribemobile.com/MU/EhrApiV01/" + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://exscribemobile.com/MU/EhrApiV01/" + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", + "softwareProducts": [ { - "id": 11088, - "chplProductNumber": "15.04.04.2900.Eyef.07.17.1.221219", + "id": 10858, + "chplProductNumber": "15.02.05.3124.INSY.01.03.1.220314", "edition": { "id": 3, "name": "2015" @@ -15859,27 +32048,47 @@ "name": "" }, "developer": { - "id": 1901, - "name": "Eyefinity, Inc." + "id": 2125, + "name": "Qualifacts Systems, LLC" }, "product": { - "id": 3552, - "name": "Eyefinity EHR powered by EMA" + "id": 1070, + "name": "Insync EMR/PM" }, "version": { - "id": 8666, - "name": "7" + "id": 7961, + "name": "10" }, - "certificationDate": "2022-12-19", + "certificationDate": "2022-03-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -15887,104 +32096,124 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -15992,24 +32221,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -16017,39 +32241,39 @@ "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -16057,32 +32281,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://www.qualifacts.com/api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://www.qualifacts.com/api-documentation/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.integraconnect.com/certifications/", + "softwareProducts": [ { - "id": 11054, - "chplProductNumber": "15.04.04.3031.gGas.GA.10.1.221207", + "id": 11025, + "chplProductNumber": "15.04.04.2964.Inte.20.02.1.221122", "edition": { "id": 3, "name": "2015" @@ -16092,52 +32321,47 @@ "name": "" }, "developer": { - "id": 2032, - "name": "Modernizing Medicine Gastroenterology, Inc." + "id": 1965, + "name": "Integra Connect Newco, LLC" }, "product": { - "id": 3020, - "name": "gGastro" + "id": 3006, + "name": "IntegraCloud EHR" }, "version": { - "id": 8640, - "name": "6" + "id": 8616, + "name": "20.28" }, - "certificationDate": "2022-12-07", + "certificationDate": "2022-11-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -16145,64 +32369,69 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -16210,104 +32439,84 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, { "criterion": { @@ -16315,15 +32524,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } ], "acb": "Drummond Group" @@ -16331,11 +32540,11 @@ ] }, { - "listSourceURL": "https://elationfhir.readme.io/reference/service-base-urls", + "listSourceURL": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/", "softwareProducts": [ { - "id": 9876, - "chplProductNumber": "15.04.04.2717.Elat.03.00.1.181231", + "id": 11067, + "chplProductNumber": "15.05.05.3133.CHTS.01.00.1.221213", "edition": { "id": 3, "name": "2015" @@ -16345,32 +32554,37 @@ "name": "" }, "developer": { - "id": 1718, - "name": "Elation Health, Inc." + "id": 2134, + "name": "CHN Tech Solutions LLC" }, "product": { - "id": 3036, - "name": "Elation EMR" + "id": 3664, + "name": "Integrated Care EHR" }, "version": { - "id": 7651, - "name": "Version 3" + "id": 8651, + "name": "3" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -16378,14 +32592,9 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -16393,44 +32602,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -16438,39 +32667,122 @@ "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://onc.chntechsolutions.com/home/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhirtest.intelichart.com/Help/BaseUrl", + "softwareProducts": [ + { + "id": 8854, + "chplProductNumber": "15.04.04.1722.Inte.35.00.1.170921", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 723, + "name": "InteliChart LLC" + }, + "product": { + "id": 1086, + "name": "InteliChart Patient Portal" + }, + "version": { + "id": 6881, + "name": "3.5" + }, + "certificationDate": "2017-09-21", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -16478,34 +32790,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -16513,29 +32815,24 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 42, @@ -16543,24 +32840,34 @@ "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -16570,35 +32877,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.elationhealth.com/reference" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.elationhealth.com/reference/introduction" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.elationhealth.com/reference/introduction" + "value": "https://openapitest.intelichart.com/Help" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://api.enablemyhealth.com", - "softwareProducts": [ + }, { - "id": 10795, - "chplProductNumber": "15.02.05.1439.ENAD.01.01.1.220118", + "id": 11344, + "chplProductNumber": "15.04.04.2925.JUNP.23.01.1.230914", "edition": { "id": 3, "name": "2015" @@ -16608,87 +32910,27 @@ "name": "" }, "developer": { - "id": 440, - "name": "EnableDoc LLC" + "id": 1926, + "name": "DSS, Inc." }, "product": { - "id": 3528, - "name": "Enablemypractice" + "id": 3729, + "name": "Juno Patient Portal" }, "version": { - "id": 8028, - "name": "EHR 5.0" + "id": 8858, + "name": "V23" }, - "certificationDate": "2022-01-18", + "certificationDate": "2023-09-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, @@ -16696,49 +32938,19 @@ "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -16746,39 +32958,44 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -16788,32 +33005,22 @@ { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -16821,37 +33028,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://apitest.enablemyhealth.com/" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apitest.enablemyhealth.com/" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api.enablemyhealth.com" + "value": "https://openapitest.intelichart.com/Help" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://www.endosoft.com/fhir", + "listSourceURL": "https://www.nextech.com/developers-portal", "softwareProducts": [ { - "id": 10854, - "chplProductNumber": "15.02.05.2721.ENDV.01.01.1.220310", + "id": 11027, + "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", "edition": { "id": 3, "name": "2015" @@ -16861,77 +33068,27 @@ "name": "" }, "developer": { - "id": 1722, - "name": "EndoSoft, LLC" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 3487, - "name": "EndoVault" + "id": 3655, + "name": "IntelleChartPRO" }, "version": { - "id": 7877, - "name": "3.2" + "id": 8618, + "name": "8" }, - "certificationDate": "2022-03-10", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -16939,34 +33096,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 32, @@ -16974,39 +33131,14 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 25, @@ -17014,69 +33146,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "title": "Transitions of Care" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -17084,92 +33196,97 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.endosoft.com/fhir" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://open.epic.com/MyApps/Endpoints", + "listSourceURL": "https://www.meditab.com/fhir/endpoints", "softwareProducts": [ { - "id": 10869, - "chplProductNumber": "15.04.04.1447.Epic.AM.21.1.220318", + "id": 9739, + "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", "edition": { "id": 3, "name": "2015" @@ -17179,37 +33296,37 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1805, + "name": "MedPharm Services LLC" }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 2978, + "name": "Intelligent Medical Software (IMS)" }, "version": { - "id": 8467, - "name": "February 2022" + "id": 7535, + "name": "14.0 SP 1" }, - "certificationDate": "2022-03-18", + "certificationDate": "2018-11-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -17217,84 +33334,109 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 42, @@ -17302,54 +33444,59 @@ "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 2, @@ -17357,34 +33504,29 @@ "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -17392,17 +33534,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.meditab.com/fhir/specifications" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://meditab.com/api" }, { "criterion": { @@ -17410,14 +33552,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "http://www.meditab.com/api/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://demo.interopx.com/ix-auth-server/#/endpoints", + "softwareProducts": [ { - "id": 11262, - "chplProductNumber": "15.04.04.1447.Epic.AM.24.1.230308", + "id": 10939, + "chplProductNumber": "15.04.04.3116.Inte.01.00.0.220707", "edition": { "id": 3, "name": "2015" @@ -17427,32 +33574,27 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 2117, + "name": "InteropX" }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 3635, + "name": "InteropX" }, "version": { - "id": 8783, - "name": "February 2023" + "id": 8535, + "name": "1.5.3" }, - "certificationDate": "2023-03-08", + "certificationDate": "2022-07-07", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -17460,84 +33602,86 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, + } + ], + "apiDocumentation": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://demo.interopx.com/ix-auth-server/#/api-specifications" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", + "softwareProducts": [ + { + "id": 11283, + "chplProductNumber": "15.04.04.2925.CONN.04.04.0.230427", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1926, + "name": "DSS, Inc." + }, + "product": { + "id": 3642, + "name": "Juno ConnectEHR" + }, + "version": { + "id": 8800, + "name": "v22" + }, + "certificationDate": "2023-04-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -17545,34 +33689,34 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -17580,14 +33724,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 32, @@ -17595,44 +33739,64 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -17642,30 +33806,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" }, { - "id": 10941, - "chplProductNumber": "15.04.04.1447.Epic.AM.22.1.220713", + "id": 10962, + "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", "edition": { "id": 3, "name": "2015" @@ -17675,152 +33839,127 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1926, + "name": "DSS, Inc." }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 3642, + "name": "Juno ConnectEHR" }, "version": { - "id": 8537, - "name": "May 2022" + "id": 8556, + "name": "22" }, - "certificationDate": "2022-07-13", + "certificationDate": "2022-08-17", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -17828,19 +33967,14 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 51, @@ -17848,49 +33982,42 @@ "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { @@ -17898,22 +34025,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 11120, - "chplProductNumber": "15.04.04.1447.Epic.AM.23.1.221222", + "id": 11301, + "chplProductNumber": "15.04.04.2925.Juno.23.01.1.230620", "edition": { "id": 3, "name": "2015" @@ -17923,67 +34047,62 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1926, + "name": "DSS, Inc." }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 2938, + "name": "Juno EHR" }, "version": { - "id": 8693, - "name": "November 2022" + "id": 8817, + "name": "v23" }, - "certificationDate": "2022-12-22", + "certificationDate": "2023-06-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 1, @@ -17991,9 +34110,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -18001,34 +34120,29 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -18036,99 +34150,84 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -18136,122 +34235,81 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 10942, - "chplProductNumber": "15.04.04.1447.Epic.IN.23.1.220713", + "id": 10864, + "chplProductNumber": "15.04.04.2925.JESS.03.02.1.220304", "edition": { "id": 3, "name": "2015" }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 448, - "name": "Epic Systems Corporation" - }, - "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" - }, - "version": { - "id": 8538, - "name": "May 2022" - }, - "certificationDate": "2022-07-13", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1926, + "name": "DSS, Inc." + }, + "product": { + "id": 3539, + "name": "Juno Emergency Services Solution" + }, + "version": { + "id": 8462, + "name": "v3.2" + }, + "certificationDate": "2022-03-04", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 5, @@ -18259,69 +34317,64 @@ "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -18329,24 +34382,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 12, @@ -18354,62 +34422,46 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjess-dev-web.dssinc.com/jess/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://docs.kodjin.com/service-base-urls/", + "softwareProducts": [ { - "id": 11119, - "chplProductNumber": "15.04.04.1447.Epic.IN.24.1.221222", + "id": 11265, + "chplProductNumber": "15.04.04.3148.Kodj.03.00.0.230330", "edition": { "id": 3, "name": "2015" @@ -18419,107 +34471,202 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 2149, + "name": "EDENLAB OÜ" }, "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" + "id": 3702, + "name": "Kodjin FHIR Server" }, "version": { - "id": 8692, - "name": "November 2022" + "id": 8785, + "name": "3" }, - "certificationDate": "2022-12-22", + "certificationDate": "2023-03-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.kodjin.com/getting-started-with-standartized-api" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.kodjin.com/getting-started-with-standartized-api" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.mdlogic.com/solutions/standard-api-documentation", + "softwareProducts": [ + { + "id": 11403, + "chplProductNumber": "15.04.04.2785.MDLo.08.03.1.231206", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1786, + "name": "MD Logic, Inc." + }, + "product": { + "id": 2821, + "name": "MD Logic EHR" + }, + "version": { + "id": 8913, + "name": "8.0" + }, + "certificationDate": "2023-12-06", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 52, @@ -18527,84 +34674,94 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -18612,52 +34769,42 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" }, { - "id": 10872, - "chplProductNumber": "15.04.04.1447.Epic.IN.22.1.220318", + "id": 11056, + "chplProductNumber": "15.04.04.2785.MDLo.07.02.1.221207", "edition": { "id": 3, "name": "2015" @@ -18667,77 +34814,67 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1786, + "name": "MD Logic, Inc." }, "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" + "id": 2821, + "name": "MD Logic EHR" }, "version": { - "id": 8470, - "name": "February 2022" + "id": 8642, + "name": "7.2" }, - "certificationDate": "2022-03-18", + "certificationDate": "2022-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 42, @@ -18747,52 +34884,62 @@ { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 51, @@ -18800,44 +34947,39 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -18845,52 +34987,47 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { @@ -18898,14 +35035,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html", + "softwareProducts": [ { - "id": 11263, - "chplProductNumber": "15.04.04.1447.Epic.IN.25.1.230315", + "id": 10792, + "chplProductNumber": "15.02.05.1836.MDOP.01.01.1.220117", "edition": { "id": 3, "name": "2015" @@ -18915,192 +35057,147 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 837, + "name": "MDOps Corporation" }, "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" + "id": 1266, + "name": "MDLog" }, "version": { - "id": 8784, - "name": "February 2023" + "id": 8306, + "name": "5.0" }, - "certificationDate": "2023-03-15", + "certificationDate": "2022-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -19108,19 +35205,14 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -19128,37 +35220,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://datalinksoftware.com/Endpoint.json", + "listSourceURL": "https://mdrfhirapi.mdronline.net", "softwareProducts": [ { - "id": 11110, - "chplProductNumber": "15.04.04.2895.Trin.04.01.1.221221", + "id": 9797, + "chplProductNumber": "15.04.04.2413.MDRh.08.00.1.181208", "edition": { "id": 3, "name": "2015" @@ -19168,27 +35260,32 @@ "name": "" }, "developer": { - "id": 1896, - "name": "DataLink Software, LLC" + "id": 1414, + "name": "TechSoft, Inc." }, "product": { - "id": 3453, - "name": "EvokeEHR" + "id": 2268, + "name": "MDRhythm" }, "version": { - "id": 8686, - "name": "4.0" + "id": 7581, + "name": "Version 8" }, - "certificationDate": "2022-12-21", + "certificationDate": "2018-12-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 52, @@ -19196,104 +35293,149 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -19301,80 +35443,90 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" + "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" + "value": "http://www.mdrhythm.com/onc-compliance.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" + "value": "http://www.mdrhythm.com/onc-compliance.html" } ], "acb": "Drummond Group" @@ -19382,11 +35534,11 @@ ] }, { - "listSourceURL": "https://fhir.myeyecarerecords.com/fhir-endpoints", + "listSourceURL": "https://www.provider.care/FHIR/MDVitaFHIRUrls.csv", "softwareProducts": [ { - "id": 9988, - "chplProductNumber": "15.04.04.2725.EyeM.02.00.1.190501", + "id": 11000, + "chplProductNumber": "15.04.04.2904.MDVi.27.02.1.221020", "edition": { "id": 3, "name": "2015" @@ -19396,47 +35548,72 @@ "name": "" }, "developer": { - "id": 1726, - "name": "EyeMD EMR Healthcare Systems, Inc." + "id": 1905, + "name": "Health Care 2000, Inc." }, "product": { - "id": 3078, - "name": "EyeMD Electronic Medical Records" + "id": 3292, + "name": "MDVita" }, "version": { - "id": 7748, - "name": "Version 2" + "id": 8595, + "name": "27" }, - "certificationDate": "2019-05-01", + "certificationDate": "2022-10-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 171, "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -19444,54 +35621,69 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, @@ -19499,54 +35691,29 @@ "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 4, @@ -19554,60 +35721,65 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.myeyecarerecords.com/api" + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.myeyecarerecords.com/api" + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.myeyecarerecords.com/api" + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } ], "acb": "Drummond Group" @@ -19615,11 +35787,11 @@ ] }, { - "listSourceURL": "https://docs.fire.ly/projects/Firely-Server/en/latest/_static/g10/EndpointBundleFirely.json", + "listSourceURL": "https://ehifire.ehiconnect.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11234, - "chplProductNumber": "15.04.04.3143.Fire.05.00.0.230208", + "id": 10247, + "chplProductNumber": "15.04.04.2719.MDne.10.01.1.191231", "edition": { "id": 3, "name": "2015" @@ -19629,139 +35801,77 @@ "name": "" }, "developer": { - "id": 2144, - "name": "Firely B.V." + "id": 1720, + "name": "Enable Healthcare Inc." }, "product": { - "id": 3695, - "name": "Firely Server" + "id": 3289, + "name": "MDnet" }, "version": { - "id": 8764, - "name": "5" + "id": 7788, + "name": "V10" }, - "certificationDate": "2023-02-08", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://fire.ly/g10-certification/" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://academy.practicesuite.com/fhir-server-links/", - "softwareProducts": [ - { - "id": 10789, - "chplProductNumber": "15.02.05.2198.FREC.01.02.1.220113", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1199, - "name": "PracticeSuite, Inc." - }, - "product": { - "id": 2913, - "name": "FreeChiro" - }, - "version": { - "id": 8430, - "name": "EHR-18.0.0" - }, - "certificationDate": "2022-01-13", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -19769,134 +35879,109 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -19904,39 +35989,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -19944,32 +36019,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" } ], - "acb": "SLI Compliance" - }, + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.medent.com/std_api/ServiceBaseURL.csv", + "softwareProducts": [ { - "id": 10788, - "chplProductNumber": "15.02.05.2198.PRAS.01.01.1.220113", + "id": 10609, + "chplProductNumber": "15.04.04.1840.MEDE.23.01.1.210413", "edition": { "id": 3, "name": "2015" @@ -19979,67 +36059,37 @@ "name": "" }, "developer": { - "id": 1199, - "name": "PracticeSuite, Inc." + "id": 841, + "name": "MEDENT - Community Computer Service, Inc." }, "product": { - "id": 3401, - "name": "PracticeSuite" + "id": 3299, + "name": "MEDENT" }, "version": { - "id": 8429, - "name": "EHR-18.0.0" + "id": 8305, + "name": "v23.5" }, - "certificationDate": "2022-01-13", + "certificationDate": "2021-04-13", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 59, @@ -20052,144 +36102,184 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, @@ -20197,47 +36287,47 @@ "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + "value": "https://www.medent.com/onc/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://www.medent.com/onc/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://careconnect-uat.netsmartcloud.com/baseUrls", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11136, - "chplProductNumber": "15.04.04.2816.gEHR.04.03.1.221227", + "id": 11347, + "chplProductNumber": "15.04.04.1840.MEDE.23.02.1.230918", "edition": { "id": 3, "name": "2015" @@ -20247,18 +36337,18 @@ "name": "" }, "developer": { - "id": 1817, - "name": "Netsmart Technologies" + "id": 841, + "name": "MEDENT - Community Computer Service, Inc." }, "product": { - "id": 3676, - "name": "GEHRIMED" + "id": 3299, + "name": "MEDENT" }, "version": { - "id": 8706, - "name": "v.4.3" + "id": 8861, + "name": "v23.7" }, - "certificationDate": "2022-12-27", + "certificationDate": "2023-09-18", "certificationStatus": { "id": 1, "name": "Active" @@ -20270,24 +36360,79 @@ "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -20295,9 +36440,19 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -20305,19 +36460,24 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -20325,79 +36485,84 @@ "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -20407,22 +36572,17 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://www.medent.com/onc/" }, { "criterion": { @@ -20430,22 +36590,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://www.medent.com/onc/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://api.mhdi10xasayd.com/medhost-developer-composition/v1/fhir-base-urls.json", + "softwareProducts": [ { - "id": 11131, - "chplProductNumber": "15.04.04.2816.myEv.11.02.0.221227", + "id": 11374, + "chplProductNumber": "15.04.04.2788.MEDH.CL.09.1.231123", "edition": { "id": 3, "name": "2015" @@ -20455,52 +36620,27 @@ "name": "" }, "developer": { - "id": 1817, - "name": "Netsmart Technologies" + "id": 1789, + "name": "MEDHOST" }, "product": { - "id": 2870, - "name": "myEvolv Certified Edition" + "id": 2763, + "name": "MEDHOST Enterprise - Clinicals" }, "version": { - "id": 8701, - "name": "11.0" + "id": 8885, + "name": "2023 R1" }, - "certificationDate": "2022-12-27", + "certificationDate": "2023-11-23", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 37, @@ -20508,54 +36648,59 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -20563,9 +36708,14 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 4, @@ -20573,117 +36723,107 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { @@ -20691,14 +36831,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" } ], "acb": "Drummond Group" }, { - "id": 11057, - "chplProductNumber": "15.04.04.2816.myUn.22.01.0.221207", + "id": 10820, + "chplProductNumber": "15.04.04.2788.MEDH.CL.08.1.220204", "edition": { "id": 3, "name": "2015" @@ -20708,18 +36848,18 @@ "name": "" }, "developer": { - "id": 1817, - "name": "Netsmart Technologies" + "id": 1789, + "name": "MEDHOST" }, "product": { - "id": 3573, - "name": "myUnity" + "id": 2763, + "name": "MEDHOST Enterprise - Clinicals" }, "version": { - "id": 8643, - "name": "2022" + "id": 8441, + "name": "2022 R1" }, - "certificationDate": "2022-12-07", + "certificationDate": "2022-02-04", "certificationStatus": { "id": 1, "name": "Active" @@ -20730,30 +36870,15 @@ "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -20761,109 +36886,109 @@ "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, @@ -20871,34 +36996,44 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -20906,17 +37041,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { @@ -20924,7 +37059,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://careconnect.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" } ], "acb": "Drummond Group" @@ -20932,11 +37067,11 @@ ] }, { - "listSourceURL": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/FHIR_Service_URLs_MI.pdf", + "listSourceURL": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm", "softwareProducts": [ { - "id": 10714, - "chplProductNumber": "15.04.04.2734.GEMM.77.01.1.211110", + "id": 10972, + "chplProductNumber": "15.04.04.2931.MEDI.EH.01.1.220901", "edition": { "id": 3, "name": "2015" @@ -20946,37 +37081,27 @@ "name": "" }, "developer": { - "id": 1735, - "name": "GEMMS" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3227, - "name": "GEMMS ONE" + "id": 2837, + "name": "MEDITECH 6.0 Electronic Health Record Core HCIS" }, "version": { - "id": 7662, - "name": "V7.7C" + "id": 8566, + "name": "v6.08c" }, - "certificationDate": "2021-11-10", + "certificationDate": "2022-09-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -20984,39 +37109,34 @@ "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -21024,14 +37144,19 @@ "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -21039,94 +37164,74 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, @@ -21134,34 +37239,39 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" } ], "apiDocumentation": [ @@ -21169,17 +37279,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -21187,14 +37297,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 10683, - "chplProductNumber": "15.04.04.2795.MedI.77.01.1.210830", + "id": 10973, + "chplProductNumber": "15.04.04.2931.MEDI.E6.01.1.220901", "edition": { "id": 3, "name": "2015" @@ -21204,147 +37314,142 @@ "name": "" }, "developer": { - "id": 1796, - "name": "MedInformatix" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3039, - "name": "MedInformatix EHR" + "id": 3315, + "name": "MEDITECH 6.0 Emergency Department Management" }, "version": { - "id": 7661, - "name": "7.7" + "id": 8567, + "name": "v6.08c" }, - "certificationDate": "2021-08-30", + "certificationDate": "2022-09-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 39, @@ -21352,39 +37457,39 @@ "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -21392,19 +37497,14 @@ "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -21414,35 +37514,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.geesemed.com/Medical%20-%20Doc/GeeseMed%20fhir-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11104, - "chplProductNumber": "15.04.04.3013.Gees.07.02.1.221221", + "id": 10975, + "chplProductNumber": "15.04.04.2931.MEDI.08.01.1.220901", "edition": { "id": 3, "name": "2015" @@ -21452,62 +37547,57 @@ "name": "" }, "developer": { - "id": 2014, - "name": "MDOfficeManager" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2859, - "name": "GeeseMed" + "id": 2832, + "name": "MEDITECH 6.0 Medical and Practice Management (MPM) Electronic Health Record" }, "version": { - "id": 8681, - "name": "7.1" + "id": 8569, + "name": "v6.08c" }, - "certificationDate": "2022-12-21", + "certificationDate": "2022-09-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -21515,49 +37605,54 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -21565,39 +37660,39 @@ "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 4, @@ -21605,14 +37700,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -21620,24 +37715,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -21647,35 +37742,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.geesemed.com/api.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.geesemed.com/api.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.geesemed.com/api.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://geniusdoc.com/API.php", - "softwareProducts": [ + }, { - "id": 10745, - "chplProductNumber": "15.02.05.1529.GDOC.01.01.1.211209", + "id": 10937, + "chplProductNumber": "15.04.04.2931.MEDI.AM.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -21685,127 +37775,112 @@ "name": "" }, "developer": { - "id": 530, - "name": "GeniusDoc, Inc." + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 814, - "name": "GeniusDoc" + "id": 3322, + "name": "MEDITECH 6.1 Ambulatory Electronic Health Record" }, "version": { - "id": 7603, - "name": "12.0" + "id": 8533, + "name": "v6.15c" }, - "certificationDate": "2021-12-09", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -21813,24 +37888,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -21838,34 +37898,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -21873,19 +37918,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -21893,82 +37938,67 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://geniusdoc.com/API.php" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://api.sevocity.com/api/patients/v1/Endpoint", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11186, - "chplProductNumber": "15.04.04.2324.Geri.GE.01.1.221230", + "id": 10931, + "chplProductNumber": "15.04.04.2931.MEDI.HC.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -21978,67 +38008,52 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2907, - "name": "Geriatrics Select EHR powered by Sevocity�" + "id": 2838, + "name": "MEDITECH 6.1 Electronic Health Record Core HCIS" }, "version": { - "id": 8740, - "name": "v13.0" + "id": 8527, + "name": "v6.15c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -22046,19 +38061,24 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 52, @@ -22066,39 +38086,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -22106,79 +38121,79 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 25, @@ -22191,32 +38206,32 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 11189, - "chplProductNumber": "15.04.04.2324.Pain.PA.01.1.221230", + "id": 10935, + "chplProductNumber": "15.04.04.2931.MEDI.15.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -22226,52 +38241,37 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2908, - "name": "Pain Care Select EHR powered by Sevocity�" + "id": 3324, + "name": "MEDITECH 6.1 Emergency Department Management" }, "version": { - "id": 8743, - "name": "v13.0" + "id": 8531, + "name": "v6.15c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 34, @@ -22279,49 +38279,49 @@ "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, @@ -22329,34 +38329,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -22364,107 +38364,107 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 11187, - "chplProductNumber": "15.04.04.2324.Sevo.13.01.1.221230", + "id": 10982, + "chplProductNumber": "15.04.04.2931.MEDI.MC.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -22474,97 +38474,82 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2132, - "name": "Sevocity" + "id": 3328, + "name": "MEDITECH Client/Server Electronic Health Record Core HCIS" }, "version": { - "id": 8741, - "name": "v13.0" + "id": 8576, + "name": "v5.67c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 35, @@ -22572,114 +38557,114 @@ "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -22689,30 +38674,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 11193, - "chplProductNumber": "15.04.04.2324.Surg.SU.01.1.221230", + "id": 10984, + "chplProductNumber": "15.04.04.2931.MEDI.CS.01.1.220916", "edition": { "id": 3, "name": "2015" @@ -22722,77 +38707,47 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2909, - "name": "Surgery Select EHR powered by Sevocity�" + "id": 3330, + "name": "MEDITECH Client/Server Emergency Department Management" }, "version": { - "id": 8745, - "name": "v13.0" + "id": 8578, + "name": "v5.67c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-09-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -22800,54 +38755,64 @@ "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -22855,79 +38820,84 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" } ], "apiDocumentation": [ @@ -22935,17 +38905,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -22953,19 +38923,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://static.glaceemr.com/endpoints/urls.json", - "softwareProducts": [ + }, { - "id": 9559, - "chplProductNumber": "15.04.04.1535.Glac.06.00.1.180629", + "id": 10983, + "chplProductNumber": "15.04.04.2931.MEDI.PM.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -22975,82 +38940,57 @@ "name": "" }, "developer": { - "id": 536, - "name": "Glenwood Systems LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3229, - "name": "GlaceEMR" + "id": 3648, + "name": "MEDITECH Client/Server Medical and Practice Management (MPM) Electronic Health Record" }, "version": { - "id": 7396, - "name": "6.0" + "id": 8577, + "name": "v5.67c" }, - "certificationDate": "2018-06-29", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -23058,49 +38998,39 @@ "title": "Demographics" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 2, @@ -23108,29 +39038,19 @@ "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -23138,29 +39058,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23168,14 +39083,9 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -23183,54 +39093,39 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -23240,35 +39135,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.glaceemr.com/documentation" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.glaceemr.com/documentation" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.glaceemr.com/documentation" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", - "softwareProducts": [ + }, { - "id": 10969, - "chplProductNumber": "15.04.04.2913.Gree.21.02.1.220831", + "id": 10928, + "chplProductNumber": "15.04.04.2931.2931.16.02.1.220630", "edition": { "id": 3, "name": "2015" @@ -23278,172 +39168,167 @@ "name": "" }, "developer": { - "id": 1914, - "name": "Greenway Health, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3230, - "name": "Greenway Prime Suite" + "id": 3631, + "name": "MEDITECH Expanse 2.1 Ambulatory" }, "version": { - "id": 8563, - "name": "v21" + "id": 8524, + "name": "v2.1c" }, - "certificationDate": "2022-08-31", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 35, @@ -23451,52 +39336,42 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -23504,14 +39379,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 10968, - "chplProductNumber": "15.04.04.2913.Gree.21.04.0.220831", + "id": 10929, + "chplProductNumber": "15.04.04.2931.MEDI.CO.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -23521,32 +39396,37 @@ "name": "" }, "developer": { - "id": 1914, - "name": "Greenway Health, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3504, - "name": "Intergy EHR" + "id": 3632, + "name": "MEDITECH Expanse 2.1 Core HCIS" }, "version": { - "id": 8562, - "name": "v21" + "id": 8525, + "name": "v2.1c" }, - "certificationDate": "2022-08-31", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 42, @@ -23554,109 +39434,114 @@ "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -23664,19 +39549,14 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -23684,44 +39564,29 @@ "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -23729,37 +39594,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://hag-fhir.amazingcharts.com/ct/endpoints", - "softwareProducts": [ + }, { - "id": 9589, - "chplProductNumber": "15.04.04.1569.Harr.09.00.1.180701", + "id": 10925, + "chplProductNumber": "15.04.04.2931.2931.02.03.1.220630", "edition": { "id": 3, "name": "2015" @@ -23769,117 +39629,92 @@ "name": "" }, "developer": { - "id": 570, - "name": "Harris CareTracker, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3231, - "name": "Harris CareTracker" + "id": 3547, + "name": "MEDITECH Expanse 2.2 Ambulatory" }, "version": { - "id": 7411, - "name": "9" + "id": 8521, + "name": "v2.2c" }, - "certificationDate": "2018-07-01", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23887,99 +39722,94 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -23989,35 +39819,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://amsemr.com/endpoints/", - "softwareProducts": [ + }, { - "id": 10834, - "chplProductNumber": "15.02.05.1086.AMEM.01.01.1.220217", + "id": 10926, + "chplProductNumber": "15.04.04.2931.MEDI.CO.02.1.220630", "edition": { "id": 3, "name": "2015" @@ -24027,32 +39852,27 @@ "name": "" }, "developer": { - "id": 87, - "name": "American Medical Solutions, Inc." + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 166, - "name": "Helios" + "id": 3548, + "name": "MEDITECH Expanse 2.2 Core HCIS" }, "version": { - "id": 8077, - "name": "2.0" + "id": 8522, + "name": "v2.2c" }, - "certificationDate": "2022-02-17", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 56, @@ -24060,79 +39880,64 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 14, @@ -24145,69 +39950,69 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -24215,72 +40020,62 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.interopengine.com/2021/open-api-documentation.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "HTTPS://INPRACSYS.COM/FHIR", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10194, - "chplProductNumber": "15.05.05.2762.INPS.01.00.1.191206", + "id": 10927, + "chplProductNumber": "15.04.04.2931.MEDI.ED.03.1.220630", "edition": { "id": 3, "name": "2015" @@ -24290,82 +40085,42 @@ "name": "" }, "developer": { - "id": 1763, - "name": "InPracSys" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3261, - "name": "InPracSys EHR" + "id": 3549, + "name": "MEDITECH Expanse 2.2 Emergency Department Management" }, "version": { - "id": 7931, - "name": "9.0" + "id": 8523, + "name": "v2.2c" }, - "certificationDate": "2019-12-06", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -24373,104 +40128,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -24478,97 +40228,87 @@ "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "HTTPS://INPRACSYS.COM/FHIR" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10858, - "chplProductNumber": "15.02.05.3124.INSY.01.03.1.220314", + "id": 10930, + "chplProductNumber": "15.04.04.2931.MEDI.16.02.1.220630", "edition": { "id": 3, "name": "2015" @@ -24578,42 +40318,32 @@ "name": "" }, "developer": { - "id": 2125, - "name": "Qualifacts Systems, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 1070, - "name": "Insync EMR/PM" + "id": 3633, + "name": "MEDITECH Expanse Emergency Department Management" }, "version": { - "id": 7961, - "name": "9.0.28" + "id": 8526, + "name": "v2.1c" }, - "certificationDate": "2022-03-14", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -24626,19 +40356,14 @@ "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 9, @@ -24646,34 +40371,34 @@ "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -24681,29 +40406,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -24711,99 +40441,74 @@ "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -24813,35 +40518,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.insynchcs.com/api-developers-guide" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.insynchcs.com/api-developers-guide" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://www.integraconnect.com/certifications/", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11025, - "chplProductNumber": "15.04.04.2964.Inte.20.02.1.221122", + "id": 10979, + "chplProductNumber": "15.04.04.2931.MEDI.MM.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -24851,32 +40551,57 @@ "name": "" }, "developer": { - "id": 1965, - "name": "Integra Connect Newco, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3006, - "name": "IntegraCloud EHR" + "id": 3338, + "name": "MEDITECH MAGIC Electronic Health Record Core HCIS" }, "version": { - "id": 8616, - "name": "20.28" + "id": 8573, + "name": "v5.67c" }, - "certificationDate": "2022-11-22", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 4, @@ -24888,40 +40613,25 @@ "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 35, @@ -24929,59 +40639,59 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -24989,72 +40699,59 @@ "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -25062,19 +40759,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/", - "softwareProducts": [ + }, { - "id": 11067, - "chplProductNumber": "15.05.05.3133.CHTS.01.00.1.221213", + "id": 10981, + "chplProductNumber": "15.04.04.2931.MEDI.EM.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -25084,62 +40784,107 @@ "name": "" }, "developer": { - "id": 2134, - "name": "CHN Tech Solutions LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3664, - "name": "Integrated Care EHR" + "id": 3342, + "name": "MEDITECH MAGIC Emergency Department Management" }, "version": { - "id": 8651, - "name": "3" + "id": 8575, + "name": "v5.67c" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -25147,24 +40892,19 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 171, "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Electronic Health Information Export" }, { "id": 56, @@ -25172,14 +40912,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -25187,49 +40922,44 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -25237,47 +40967,47 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://onc.chntechsolutions.com/home/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhirtest.intelichart.com/Help/BaseUrl", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 8854, - "chplProductNumber": "15.04.04.1722.Inte.35.00.1.170921", + "id": 10980, + "chplProductNumber": "15.04.04.2931.MEDI.EL.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -25287,57 +41017,37 @@ "name": "" }, "developer": { - "id": 723, - "name": "InteliChart LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 1086, - "name": "InteliChart Patient Portal" + "id": 2805, + "name": "MEDITECH MAGIC Medical and Practice Management (MPM) Electronic Health Record" }, "version": { - "id": 6881, - "name": "3.5" + "id": 8574, + "name": "v5.67c" }, - "certificationDate": "2017-09-21", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -25350,80 +41060,170 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://openapitest.intelichart.com/Help" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://openapitest.intelichart.com/Help" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirapitest.intelichart.com/swagger" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -25431,11 +41231,11 @@ ] }, { - "listSourceURL": "https://www.nextech.com/developers-portal", + "listSourceURL": "https://fhir.meditech.com/explorer/endpoints", "softwareProducts": [ { - "id": 11027, - "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", + "id": 11018, + "chplProductNumber": "15.04.04.2931.MEDI.56.02.1.221111", "edition": { "id": 3, "name": "2015" @@ -25445,167 +41245,182 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3655, - "name": "IntelleChartPRO" + "id": 3063, + "name": "MEDITECH MAGIC HCA Electronic Health Record Core HCIS (without PatientKeeper)" }, "version": { - "id": 8618, - "name": "8" + "id": 8610, + "name": "v5.67c" }, - "certificationDate": "2022-11-21", + "certificationDate": "2022-11-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 9, @@ -25613,45 +41428,50 @@ "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -25659,11 +41479,11 @@ ] }, { - "listSourceURL": "https://www.meditab.com/fhir/endpoints", + "listSourceURL": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/MOSAIQ_endpoints.pdf", "softwareProducts": [ { - "id": 9739, - "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", + "id": 11097, + "chplProductNumber": "15.04.04.1420.MOSA.02.05.1.221220", "edition": { "id": 3, "name": "2015" @@ -25673,97 +41493,42 @@ "name": "" }, "developer": { - "id": 1805, - "name": "MedPharm Services LLC" + "id": 421, + "name": "Elekta Inc." }, "product": { - "id": 2978, - "name": "Intelligent Medical Software (IMS)" + "id": 3354, + "name": "MOSAIQ" }, "version": { - "id": 7535, - "name": "14.0 SP 1" + "id": 8674, + "name": "2.86" }, - "certificationDate": "2018-11-13", + "certificationDate": "2022-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -25771,14 +41536,19 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -25786,24 +41556,24 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -25811,64 +41581,69 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -25876,19 +41651,24 @@ "title": "Implantable Device List" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, @@ -25896,14 +41676,19 @@ "title": "Direct Project" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -25913,23 +41698,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.meditab.com/api/" + "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://meditab.com/api" + "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.meditab.com/fhir/specifications" + "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } ], "acb": "Drummond Group" @@ -25937,11 +41722,11 @@ ] }, { - "listSourceURL": "https://demo.interopx.com/ix-auth-server/#/endpoints", + "listSourceURL": "https://www.first-insight.com/maximeyes_fhir_base_url_endpoints/", "softwareProducts": [ { - "id": 10939, - "chplProductNumber": "15.04.04.3116.Inte.01.00.0.220707", + "id": 9410, + "chplProductNumber": "15.04.04.2729.Maxi.03.00.1.180326", "edition": { "id": 3, "name": "2015" @@ -25951,47 +41736,47 @@ "name": "" }, "developer": { - "id": 2117, - "name": "InteropX" + "id": 1730, + "name": "First Insight Corporation" }, "product": { - "id": 3635, - "name": "InteropX" + "id": 3279, + "name": "MaximEyes EHR" }, "version": { - "id": 8535, - "name": "1.5.3" + "id": 7296, + "name": "3.0" }, - "certificationDate": "2022-07-07", + "certificationDate": "2018-03-26", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -25999,71 +41784,59 @@ "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - } - ], - "apiDocumentation": [ + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://demo.interopx.com/ix-auth-server/#/api-specifications" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", - "softwareProducts": [ - { - "id": 11283, - "chplProductNumber": "15.04.04.2925.CONN.04.04.0.230427", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1926, - "name": "DSS, Inc." - }, - "product": { - "id": 3642, - "name": "Juno ConnectEHR" - }, - "version": { - "id": 8800, - "name": "v22" - }, - "certificationDate": "2023-04-27", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -26071,49 +41844,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -26121,59 +41899,59 @@ "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -26183,30 +41961,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" }, { - "id": 10962, - "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", + "id": 10470, + "chplProductNumber": "15.04.04.2729.Maxi.01.00.1.201014", "edition": { "id": 3, "name": "2015" @@ -26216,57 +41994,47 @@ "name": "" }, "developer": { - "id": 1926, - "name": "DSS, Inc." + "id": 1730, + "name": "First Insight Corporation" }, "product": { - "id": 3642, - "name": "Juno ConnectEHR" + "id": 3558, + "name": "MaximEyes.com" }, "version": { - "id": 8556, - "name": "22" + "id": 8190, + "name": "1.1" }, - "certificationDate": "2022-08-17", + "certificationDate": "2020-10-14", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -26274,39 +42042,39 @@ "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -26314,87 +42082,119 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://www.first-insight.com/certifications/" }, { "criterion": { @@ -26402,7 +42202,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://www.first-insight.com/certifications/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.first-insight.com/certifications/" } ], "acb": "Drummond Group" @@ -26410,11 +42218,11 @@ ] }, { - "listSourceURL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", + "listSourceURL": "https://documents.maximus.care", "softwareProducts": [ { - "id": 11090, - "chplProductNumber": "15.04.04.2777.Kare.05.02.1.221219", + "id": 11360, + "chplProductNumber": "15.05.05.3173.MAXR.01.00.1.231031", "edition": { "id": 3, "name": "2015" @@ -26424,42 +42232,32 @@ "name": "" }, "developer": { - "id": 1778, - "name": "Tebra Technologies, Inc." + "id": 2174, + "name": "MaxRemind Inc" }, "product": { - "id": 3270, - "name": "Kareo EHR" + "id": 3735, + "name": "Maximus" }, "version": { - "id": 8668, - "name": "Version 5.0" + "id": 8871, + "name": "1.0" }, - "certificationDate": "2022-12-19", + "certificationDate": "2023-10-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -26467,54 +42265,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -26522,197 +42295,164 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - } - ], - "apiDocumentation": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.kareo.com/macra-mips" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.kareo.com/macra-mips" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.kareo.com/macra-mips" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://docs.kodjin.com/service-base-urls", - "softwareProducts": [ - { - "id": 11265, - "chplProductNumber": "15.04.04.3148.Kodj.03.00.0.230330", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 2149, - "name": "EDENLAB OÜ" - }, - "product": { - "id": 3702, - "name": "Kodjin FHIR Server" - }, - "version": { - "id": 8785, - "name": "3" - }, - "certificationDate": "2023-03-30", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -26722,27 +42462,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.kodjin.com/getting-started-with-standartized-api" + "value": "http://documents.maximus.care/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.kodjin.com/getting-started-with-standartized-api" + "value": "https://documents.maximus.care" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documents.maximus.care" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.mdlogic.com/solutions/standard-api-documentation", + "listSourceURL": "https://fhir.mhealthaz.com", "softwareProducts": [ { - "id": 11056, - "chplProductNumber": "15.04.04.2785.MDLo.07.02.1.221207", + "id": 11300, + "chplProductNumber": "15.05.05.3150.MDAZ.01.00.1.230616", "edition": { "id": 3, "name": "2015" @@ -26752,37 +42500,37 @@ "name": "" }, "developer": { - "id": 1786, - "name": "MD Logic, Inc." + "id": 2151, + "name": "MedAZ.Net, LLC" }, "product": { - "id": 2821, - "name": "MD Logic EHR" + "id": 3707, + "name": "Med A-Z" }, "version": { - "id": 8642, - "name": "7.2" + "id": 8816, + "name": "202001" }, - "certificationDate": "2022-12-07", + "certificationDate": "2023-06-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -26790,94 +42538,94 @@ "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -26885,69 +42633,64 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -26957,35 +42700,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.mdlogic.com/solutions/api-documentation" + "value": "https://fhir.mhealthaz.com" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.mdlogic.com/solutions/api-documentation" + "value": "https://fhir.mhealthaz.com" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://connect-demo.mdops.com/mdlogsdk/fhir/apiDocumentation.html#tag/Auth", + "listSourceURL": "https://api.medconnecthealth.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10792, - "chplProductNumber": "15.02.05.1836.MDOP.01.01.1.220117", + "id": 9183, + "chplProductNumber": "15.04.04.1889.MedC.03.00.1.171212", "edition": { "id": 3, "name": "2015" @@ -26995,27 +42730,42 @@ "name": "" }, "developer": { - "id": 837, - "name": "MDOps Corporation" + "id": 890, + "name": "MedConnect, Inc." }, "product": { - "id": 1266, - "name": "MDLog" + "id": 2813, + "name": "MedConnectHealth" }, "version": { - "id": 8306, - "name": "5.0" + "id": 7109, + "name": "3.0" }, - "certificationDate": "2022-01-17", + "certificationDate": "2017-12-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 14, @@ -27023,29 +42773,44 @@ "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -27053,34 +42818,39 @@ "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -27088,59 +42858,59 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 9, @@ -27148,47 +42918,72 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + "value": "https://medconnecthealth.com/wp-content/uploads/2020/05/API_Documentation.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://connect-demo.mdops.com/mdlogsdk/fhir/apiDocumentation.html#tag/Auth" + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://mdrfhirapi.mdronline.net", + "listSourceURL": "https://portal.viewmymed.com/fhir/Endpoint", "softwareProducts": [ { - "id": 9797, - "chplProductNumber": "15.04.04.2413.MDRh.08.00.1.181208", + "id": 11238, + "chplProductNumber": "15.04.04.1597.MedP.13.01.1.230216", "edition": { "id": 3, "name": "2015" @@ -27198,62 +42993,62 @@ "name": "" }, "developer": { - "id": 1414, - "name": "TechSoft, Inc." + "id": 598, + "name": "Health Systems Technology, Inc." }, "product": { - "id": 2268, - "name": "MDRhythm" + "id": 907, + "name": "MedPointe" }, "version": { - "id": 7581, - "name": "Version 8" + "id": 8768, + "name": "13" }, - "certificationDate": "2018-12-08", + "certificationDate": "2023-02-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 25, @@ -27261,34 +43056,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -27296,9 +43091,14 @@ "title": "Trusted Connection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, @@ -27306,69 +43106,59 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -27376,44 +43166,44 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -27421,50 +43211,35 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" + "value": "http://www.viewmymed.com/api/usage.php" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.mdrhythm.com/onc-compliance.html" + "value": "http://www.viewmymed.com/api/usage.php" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.mdrhythm.com/onc-compliance.html" + "value": "http://www.viewmymed.com/api/usage.php" } ], "acb": "Drummond Group" @@ -27472,11 +43247,11 @@ ] }, { - "listSourceURL": "https://www.provider.care/FHIR/MDVitaFHIRUrls.csv", + "listSourceURL": "https://bill.medgenehr.com:7043/fhir/.well-known/smart-configuration", "softwareProducts": [ { - "id": 11000, - "chplProductNumber": "15.04.04.2904.MDVi.27.02.1.221020", + "id": 10986, + "chplProductNumber": "15.04.04.2984.Medg.09.02.1.220915", "edition": { "id": 3, "name": "2015" @@ -27486,52 +43261,82 @@ "name": "" }, "developer": { - "id": 1905, - "name": "Health Care 2000, Inc." + "id": 1985, + "name": "Comtron Inc." }, "product": { - "id": 3292, - "name": "MDVita" + "id": 3302, + "name": "Medgen EHR" }, "version": { - "id": 8595, - "name": "27" + "id": 8579, + "name": "Version 9" }, - "certificationDate": "2022-10-20", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -27539,19 +43344,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 26, @@ -27559,69 +43359,64 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -27629,29 +43424,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 9, @@ -27659,39 +43459,29 @@ "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -27701,23 +43491,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } ], "acb": "Drummond Group" @@ -27725,11 +43515,11 @@ ] }, { - "listSourceURL": "https://ehifire.ehiconnect.com/fhir/r4/endpoints", + "listSourceURL": "https://medi-ehr.com/fhir-api-eps", "softwareProducts": [ { - "id": 10247, - "chplProductNumber": "15.04.04.2719.MDne.10.01.1.191231", + "id": 10831, + "chplProductNumber": "15.02.05.2979.MEDI.01.01.1.220215", "edition": { "id": 3, "name": "2015" @@ -27739,27 +43529,52 @@ "name": "" }, "developer": { - "id": 1720, - "name": "Enable Healthcare Inc." + "id": 1980, + "name": "Medi-EHR, LLC" }, "product": { - "id": 3289, - "name": "MDnet" + "id": 1464, + "name": "Medi-EHR" }, "version": { - "id": 7788, - "name": "V10" + "id": 1265, + "name": "2.1" }, - "certificationDate": "2019-12-31", + "certificationDate": "2022-02-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -27767,79 +43582,79 @@ "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 35, @@ -27847,14 +43662,14 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -27862,19 +43677,9 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 34, @@ -27882,44 +43687,39 @@ "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -27927,14 +43727,9 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 44, @@ -27942,14 +43737,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -27959,35 +43754,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" + "value": "http://medi-ehr.com/compliance" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + "value": "http://medi-ehr.com/compliance" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + "value": "https://medi-ehr.com/public-fhir-api" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.medent.com/std_api/ServiceBaseURL.csv", + "listSourceURL": "https://docs.medifusion.com/", "softwareProducts": [ { - "id": 10609, - "chplProductNumber": "15.04.04.1840.MEDE.23.01.1.210413", + "id": 10845, + "chplProductNumber": "15.05.05.3102.MEDF.01.00.1.220228", "edition": { "id": 3, "name": "2015" @@ -27997,92 +43792,82 @@ "name": "" }, "developer": { - "id": 841, - "name": "MEDENT - Community Computer Service, Inc." + "id": 2103, + "name": "MediFusion, LLC" }, "product": { - "id": 3299, - "name": "MEDENT" + "id": 3609, + "name": "MediFusion" }, "version": { - "id": 8305, - "name": "v23.5" + "id": 8453, + "name": "2.0" }, - "certificationDate": "2021-04-13", + "certificationDate": "2022-02-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 34, @@ -28090,14 +43875,14 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -28105,14 +43890,9 @@ "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 32, @@ -28120,64 +43900,69 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 14, @@ -28185,92 +43970,97 @@ "title": "Implantable Device List" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.medent.com/onc/" + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.medent.com/onc/" + "value": "https://docs.medifusion.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.medent.com/onc/" + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://api.mhdi10xasayd.com/medhost-developer-composition/v1/fhir-base-urls.json", + "listSourceURL": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm", "softwareProducts": [ { - "id": 10820, - "chplProductNumber": "15.04.04.2788.MEDH.CL.08.1.220204", + "id": 10786, + "chplProductNumber": "15.02.05.1044.AVDC.01.01.1.220111", "edition": { "id": 3, "name": "2015" @@ -28280,47 +44070,77 @@ "name": "" }, "developer": { - "id": 1789, - "name": "MEDHOST" + "id": 45, + "name": "Advanced Data Systems Corporation" }, "product": { - "id": 2763, - "name": "MEDHOST Enterprise - Clinicals" + "id": 88, + "name": "MedicsCloud" }, "version": { - "id": 8441, - "name": "2022 R1" + "id": 7284, + "name": "11.0" }, - "certificationDate": "2022-02-04", + "certificationDate": "2022-01-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -28328,39 +44148,59 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 44, @@ -28368,29 +44208,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 35, @@ -28398,19 +44238,14 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -28418,9 +44253,9 @@ "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 34, @@ -28428,77 +44263,82 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.yourcareinteract.com/documentation" + "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.yourcareinteract.com/documentation" + "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.yourcareinteract.com/documentation" + "value": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm", + "listSourceURL": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm", "softwareProducts": [ { - "id": 10972, - "chplProductNumber": "15.04.04.2931.MEDI.EH.01.1.220901", + "id": 10785, + "chplProductNumber": "15.02.05.1044.AVDD.01.01.1.220111", "edition": { "id": 3, "name": "2015" @@ -28508,123 +44348,113 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 45, + "name": "Advanced Data Systems Corporation" }, "product": { - "id": 2837, - "name": "MEDITECH 6.0 Electronic Health Record Core HCIS" + "id": 89, + "name": "MedicsDocAssistant" }, "version": { - "id": 8566, - "name": "v6.08c" + "id": 7718, + "name": "8.0" }, - "certificationDate": "2022-09-01", + "certificationDate": "2022-01-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 12, "number": "170.315 (a)(12)", @@ -28636,74 +44466,137 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" }, { "criterion": { @@ -28711,22 +44604,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhirpresentation.assertus.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 10973, - "chplProductNumber": "15.04.04.2931.MEDI.E6.01.1.220901", + "id": 10164, + "chplProductNumber": "15.04.04.3057.Medi.01.00.1.191113", "edition": { "id": 3, "name": "2015" @@ -28736,42 +44626,42 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2058, + "name": "Medicus Clinical, LLC" }, "product": { - "id": 3315, - "name": "MEDITECH 6.0 Emergency Department Management" + "id": 3496, + "name": "MedicusEHR" }, "version": { - "id": 8567, - "name": "v6.08c" + "id": 7903, + "name": "1.0" }, - "certificationDate": "2022-09-01", + "certificationDate": "2019-11-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -28779,64 +44669,89 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -28854,19 +44769,19 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -28874,87 +44789,92 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://portal.assertus.com/es/medicusehr-application-data-access-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://api.medplum.com/openapi.json", + "softwareProducts": [ { - "id": 10975, - "chplProductNumber": "15.04.04.2931.MEDI.08.01.1.220901", + "id": 11256, + "chplProductNumber": "15.04.04.3147.Medp.02.00.0.230307", "edition": { "id": 3, "name": "2015" @@ -28964,42 +44884,27 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2148, + "name": "Medplum" }, "product": { - "id": 2832, - "name": "MEDITECH 6.0 Medical and Practice Management (MPM) Electronic Health Record" + "id": 3699, + "name": "Medplum" }, "version": { - "id": 8569, - "name": "v6.08c" + "id": 8778, + "name": "2" }, - "certificationDate": "2022-09-01", + "certificationDate": "2023-03-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -29007,109 +44912,9 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, @@ -29117,34 +44922,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -29152,32 +44957,21 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.medplum.com/docs/api" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://micromddev.dynamicfhir.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 10937, - "chplProductNumber": "15.04.04.2931.MEDI.AM.01.1.220630", + "id": 10886, + "chplProductNumber": "15.04.04.2753.Micr.19.06.1.220429", "edition": { "id": 3, "name": "2015" @@ -29187,97 +44981,127 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1754, + "name": "Henry Schein Medical Systems" }, "product": { - "id": 3322, - "name": "MEDITECH 6.1 Ambulatory Electronic Health Record" + "id": 3350, + "name": "MicroMD EMR" }, "version": { - "id": 8533, - "name": "v6.15c" + "id": 8484, + "name": "Version 19.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-04-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -29285,94 +45109,94 @@ "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -29380,9 +45204,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -29390,22 +45214,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" }, { - "id": 10931, - "chplProductNumber": "15.04.04.2931.MEDI.HC.01.1.220630", + "id": 11281, + "chplProductNumber": "15.04.04.2753.Micr.20.07.1.230427", "edition": { "id": 3, "name": "2015" @@ -29415,37 +45239,72 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1754, + "name": "Henry Schein Medical Systems" }, "product": { - "id": 2838, - "name": "MEDITECH 6.1 Electronic Health Record Core HCIS" + "id": 3350, + "name": "MicroMD EMR" }, "version": { - "id": 8527, - "name": "v6.15c" + "id": 8798, + "name": "Version 20.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2023-04-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { "id": 25, @@ -29453,14 +45312,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -29468,34 +45327,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, @@ -29503,114 +45347,124 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -29618,22 +45472,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://github.com/cerner/ignite-endpoints", + "softwareProducts": [ { - "id": 10935, - "chplProductNumber": "15.04.04.2931.MEDI.15.01.1.220630", + "id": 11015, + "chplProductNumber": "15.04.04.1221.Mill.18.06.1.221107", "edition": { "id": 3, "name": "2015" @@ -29643,82 +45502,82 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 222, + "name": "Cerner Corporation" }, "product": { - "id": 3324, - "name": "MEDITECH 6.1 Emergency Department Management" + "id": 3653, + "name": "Millennium (Clinical)" }, "version": { - "id": 8531, - "name": "v6.15c" + "id": 8608, + "name": "2018" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-11-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 5, @@ -29726,94 +45585,94 @@ "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -29821,47 +45680,47 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://code.cerner.com/apiaccess" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://code.cerner.com/apiaccess" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://code.cerner.com/apiaccess" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.mphrx.com/fhir-service-base-url-directory/", + "softwareProducts": [ { - "id": 10982, - "chplProductNumber": "15.04.04.2931.MEDI.MC.01.1.220915", + "id": 10649, + "chplProductNumber": "15.04.04.3082.Mine.04.01.0.210609", "edition": { "id": 3, "name": "2015" @@ -29871,97 +45730,42 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2083, + "name": "agilon health inc." }, "product": { - "id": 3328, - "name": "MEDITECH Client/Server Electronic Health Record Core HCIS" + "id": 3564, + "name": "Minerva" }, "version": { - "id": 8576, - "name": "v5.67c" - }, - "certificationDate": "2022-09-15", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, + "id": 8343, + "name": "V4" + }, + "certificationDate": "2021-06-09", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -29969,94 +45773,69 @@ "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -30064,32 +45843,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.mphrx.com/api-guide_mphrx/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.mphrx.com/api-guide_mphrx/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.mphrx.com/api-guide_mphrx/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://mmdpcf.modulemd.com/cf.fhir.r4", + "softwareProducts": [ { - "id": 10984, - "chplProductNumber": "15.04.04.2931.MEDI.CS.01.1.220916", + "id": 11092, + "chplProductNumber": "15.04.04.2980.Modu.10.01.1.221219", "edition": { "id": 3, "name": "2015" @@ -30099,82 +45883,87 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1981, + "name": "ModuleMD" }, "product": { - "id": 3330, - "name": "MEDITECH Client/Server Emergency Department Management" + "id": 3353, + "name": "ModuleMD WISE™" }, "version": { - "id": 8578, - "name": "v5.67c" + "id": 8670, + "name": "10.0" }, - "certificationDate": "2022-09-16", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 9, @@ -30182,24 +45971,54 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 25, @@ -30207,14 +46026,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -30222,69 +46036,79 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -30292,32 +46116,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://openapi.modulemd.com" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9", + "softwareProducts": [ { - "id": 10983, - "chplProductNumber": "15.04.04.2931.MEDI.PM.01.1.220915", + "id": 11331, + "chplProductNumber": "15.05.05.3141.MOYA.01.01.1.230816", "edition": { "id": 3, "name": "2015" @@ -30327,197 +46156,152 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2142, + "name": "Moyae, Inc." }, "product": { - "id": 3648, - "name": "MEDITECH Client/Server Medical and Practice Management (MPM) Electronic Health Record" + "id": 3693, + "name": "Moyae" }, "version": { - "id": 8577, - "name": "v5.67c" + "id": 8761, + "name": "1" }, - "certificationDate": "2022-09-15", + "certificationDate": "2023-08-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { @@ -30525,22 +46309,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" }, { - "id": 10928, - "chplProductNumber": "15.04.04.2931.2931.16.02.1.220630", + "id": 11229, + "chplProductNumber": "15.05.05.3141.MOYA.01.00.1.230201", "edition": { "id": 3, "name": "2015" @@ -30550,47 +46334,47 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2142, + "name": "Moyae, Inc." }, "product": { - "id": 3631, - "name": "MEDITECH Expanse 2.1 Ambulatory" + "id": 3693, + "name": "Moyae" }, "version": { - "id": 8524, - "name": "v2.1c" + "id": 8761, + "name": "1" }, - "certificationDate": "2022-06-30", + "certificationDate": "2023-02-01", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -30598,24 +46382,19 @@ "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 32, @@ -30625,37 +46404,17 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, @@ -30663,79 +46422,54 @@ "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -30745,30 +46479,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://api-portal.navigatingcare.com/service-base-urls", + "softwareProducts": [ { - "id": 10929, - "chplProductNumber": "15.04.04.2931.MEDI.CO.01.1.220630", + "id": 11068, + "chplProductNumber": "15.04.04.2034.Navi.07.01.1.221213", "edition": { "id": 3, "name": "2015" @@ -30778,197 +46517,117 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1035, + "name": "Navigating Cancer, Inc." }, "product": { - "id": 3632, - "name": "MEDITECH Expanse 2.1 Core HCIS" + "id": 2800, + "name": "Navigating Care" }, "version": { - "id": 8525, - "name": "v2.1c" + "id": 8652, + "name": "7.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -30976,9 +46635,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.navigatingcancer.com/requirements-incentives/" }, { "criterion": { @@ -30986,22 +46645,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.navigatingcancer.com/requirements-incentives/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://sfp-fhirprod.azurewebsites.net/fhir/metadata", + "softwareProducts": [ { - "id": 10925, - "chplProductNumber": "15.04.04.2931.2931.02.03.1.220630", + "id": 9836, + "chplProductNumber": "15.04.04.2815.Woun.07.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -31011,27 +46675,37 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1816, + "name": "Net Health" }, "product": { - "id": 3547, - "name": "MEDITECH Expanse 2.2 Ambulatory" + "id": 3476, + "name": "Net Health® Wound Care" }, "version": { - "id": 8521, - "name": "v2.2c" + "id": 7614, + "name": "7.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, @@ -31041,137 +46715,157 @@ { "id": 171, "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -31179,37 +46873,32 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { @@ -31217,14 +46906,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" } ], "acb": "Drummond Group" }, { - "id": 10926, - "chplProductNumber": "15.04.04.2931.MEDI.CO.02.1.220630", + "id": 10234, + "chplProductNumber": "15.04.04.2272.Woun.07.01.1.191224", "edition": { "id": 3, "name": "2015" @@ -31234,122 +46923,142 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1273, + "name": "RestorixHealth" }, "product": { - "id": 3548, - "name": "MEDITECH Expanse 2.2 Core HCIS" + "id": 2066, + "name": "WoundDocs" }, "version": { - "id": 8522, - "name": "v2.2c" + "id": 7970, + "name": "7.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2019-12-24", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -31357,64 +47066,94 @@ "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 1, @@ -31422,27 +47161,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { @@ -31450,14 +47181,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://nethealthapis-integration.nhsinc.com/index.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://nextgen.com/api/practice-search", + "softwareProducts": [ { - "id": 10927, - "chplProductNumber": "15.04.04.2931.MEDI.ED.03.1.220630", + "id": 10850, + "chplProductNumber": "15.04.04.2054.Next.60.09.1.220303", "edition": { "id": 3, "name": "2015" @@ -31467,52 +47211,52 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3549, - "name": "MEDITECH Expanse 2.2 Emergency Department Management" + "id": 3610, + "name": "NextGen Enterprise EHR" }, "version": { - "id": 8523, - "name": "v2.2c" + "id": 8456, + "name": "6.2021.1 Patch 79" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-03-03", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 39, @@ -31520,25 +47264,65 @@ "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 3, "number": "170.315 (a)(3)", @@ -31550,69 +47334,54 @@ "title": "Safety-Enhanced Design" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -31625,9 +47394,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 51, @@ -31635,47 +47414,72 @@ "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { @@ -31683,14 +47487,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" }, { - "id": 10930, - "chplProductNumber": "15.04.04.2931.MEDI.16.02.1.220630", + "id": 11302, + "chplProductNumber": "15.04.04.2054.Next.80.11.1.230620", "edition": { "id": 3, "name": "2015" @@ -31700,112 +47504,117 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3633, - "name": "MEDITECH Expanse Emergency Department Management" + "id": 3359, + "name": "NextGen Enterprise EHR" }, "version": { - "id": 8526, - "name": "v2.1c" + "id": 8818, + "name": "Enterprise 8" }, - "certificationDate": "2022-06-30", + "certificationDate": "2023-06-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, @@ -31813,34 +47622,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 9, @@ -31848,29 +47657,84 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -31878,52 +47742,52 @@ "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" }, { - "id": 10979, - "chplProductNumber": "15.04.04.2931.MEDI.MM.01.1.220915", + "id": 10861, + "chplProductNumber": "15.04.04.2054.Next.60.10.1.220318", "edition": { "id": 3, "name": "2015" @@ -31933,82 +47797,87 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3338, - "name": "MEDITECH MAGIC Electronic Health Record Core HCIS" + "id": 3610, + "name": "NextGen Enterprise EHR" }, "version": { - "id": 8573, - "name": "v5.67c" + "id": 8459, + "name": "6.2021.1 Cures" }, - "certificationDate": "2022-09-15", + "certificationDate": "2022-03-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 2, @@ -32016,14 +47885,69 @@ "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -32031,14 +47955,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -32046,24 +47990,19 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 9, @@ -32071,14 +48010,19 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 33, @@ -32086,72 +48030,62 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://fhir.meditouchehr.com/api/fhir/r4", + "softwareProducts": [ { - "id": 10981, - "chplProductNumber": "15.04.04.2931.MEDI.EM.01.1.220915", + "id": 9372, + "chplProductNumber": "15.04.04.2054.Medi.05.00.1.180220", "edition": { "id": 3, "name": "2015" @@ -32161,57 +48095,52 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3342, - "name": "MEDITECH MAGIC Emergency Department Management" + "id": 2874, + "name": "NextGen Office" }, "version": { - "id": 8575, - "name": "v5.67c" + "id": 7263, + "name": "Version 5.0" }, - "certificationDate": "2022-09-15", + "certificationDate": "2018-02-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 12, @@ -32219,34 +48148,64 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -32254,99 +48213,104 @@ "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -32356,30 +48320,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", + "softwareProducts": [ { - "id": 10980, - "chplProductNumber": "15.04.04.2931.MEDI.EL.01.1.220915", + "id": 11028, + "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", "edition": { "id": 3, "name": "2015" @@ -32389,37 +48358,52 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 2805, - "name": "MEDITECH MAGIC Medical and Practice Management (MPM) Electronic Health Record" + "id": 3538, + "name": "Nextech" }, "version": { - "id": 8574, - "name": "v5.67c" + "id": 8619, + "name": "17" }, - "certificationDate": "2022-09-15", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -32427,44 +48411,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -32472,49 +48471,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 9, @@ -32522,49 +48511,39 @@ "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -32574,35 +48553,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.meditech.com/explorer/endpoints", - "softwareProducts": [ + }, { - "id": 11018, - "chplProductNumber": "15.04.04.2931.MEDI.56.02.1.221111", + "id": 11029, + "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", "edition": { "id": 3, "name": "2015" @@ -32612,37 +48586,47 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 3063, - "name": "MEDITECH MAGIC HCA Electronic Health Record Core HCIS (without PatientKeeper)" + "id": 3358, + "name": "Nextech with NewCropRx" }, "version": { - "id": 8610, - "name": "v5.67c" + "id": 8620, + "name": "17" }, - "certificationDate": "2022-11-11", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, @@ -32650,49 +48634,54 @@ "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 52, @@ -32700,89 +48689,79 @@ "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -32790,29 +48769,24 @@ "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -32822,23 +48796,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" } ], "acb": "Drummond Group" @@ -32846,11 +48820,11 @@ ] }, { - "listSourceURL": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/MOSAIQ_endpoints.pdf", + "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", "softwareProducts": [ { - "id": 11097, - "chplProductNumber": "15.04.04.1420.MOSA.02.05.1.221220", + "id": 11130, + "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -32860,97 +48834,112 @@ "name": "" }, "developer": { - "id": 421, - "name": "Elekta Inc." + "id": 1990, + "name": "Nexus Clinical LLC" }, "product": { - "id": 3354, - "name": "MOSAIQ" + "id": 3360, + "name": "Nexus EHR" }, "version": { - "id": 8674, - "name": "2.86" + "id": 8700, + "name": "7.3" }, - "certificationDate": "2022-12-20", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 37, @@ -32958,34 +48947,34 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -32993,79 +48982,79 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { @@ -33073,15 +49062,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], "acb": "Drummond Group" @@ -33089,11 +49078,11 @@ ] }, { - "listSourceURL": "https://www.first-insight.com/maximeyes_fhir_base_url_endpoints/", + "listSourceURL": "https://www.novomedici.com/api-documents/", "softwareProducts": [ { - "id": 9410, - "chplProductNumber": "15.04.04.2729.Maxi.03.00.1.180326", + "id": 10805, + "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", "edition": { "id": 3, "name": "2015" @@ -33103,47 +49092,47 @@ "name": "" }, "developer": { - "id": 1730, - "name": "First Insight Corporation" + "id": 2016, + "name": "NovoMedici, LLC" }, "product": { - "id": 3279, - "name": "MaximEyes EHR" + "id": 2872, + "name": "NovoClinical" }, "version": { - "id": 7296, - "name": "3.0" + "id": 7257, + "name": "1.0" }, - "certificationDate": "2018-03-26", + "certificationDate": "2022-01-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -33151,34 +49140,49 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -33186,29 +49190,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -33216,14 +49215,9 @@ "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 26, @@ -33231,49 +49225,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -33281,77 +49270,72 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" + "value": "http://www.novomedici.com/meaningful-use/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" + "value": "http://www.novomedici.com/meaningful-use/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" + "value": "https://www.novomedici.com/api-documents/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", + "softwareProducts": [ { - "id": 10470, - "chplProductNumber": "15.04.04.2729.Maxi.01.00.1.201014", + "id": 11146, + "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -33361,42 +49345,42 @@ "name": "" }, "developer": { - "id": 1730, - "name": "First Insight Corporation" + "id": 1087, + "name": "Objective Medical Systems, LLC" }, "product": { - "id": 3558, - "name": "MaximEyes.com" + "id": 1823, + "name": "OMS EHR" }, "version": { - "id": 8190, - "name": "1.1" + "id": 8715, + "name": "4.4.0.00" }, - "certificationDate": "2020-10-14", + "certificationDate": "2022-12-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 25, @@ -33404,14 +49388,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 3, @@ -33419,49 +49413,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -33474,29 +49468,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -33504,9 +49483,14 @@ "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -33514,19 +49498,39 @@ "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 49, @@ -33534,37 +49538,29 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.first-insight.com/certifications/" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.first-insight.com/certifications/" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { @@ -33572,19 +49568,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.first-insight.com/certifications/" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://api.medconnecthealth.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 9183, - "chplProductNumber": "15.04.04.1889.MedC.03.00.1.171212", + "id": 11381, + "chplProductNumber": "15.04.04.2086.OMSE.05.04.1.231128", "edition": { "id": 3, "name": "2015" @@ -33594,82 +49593,82 @@ "name": "" }, "developer": { - "id": 890, - "name": "MedConnect, Inc." + "id": 1087, + "name": "Objective Medical Systems, LLC" }, "product": { - "id": 2813, - "name": "MedConnectHealth" + "id": 1823, + "name": "OMS EHR" }, "version": { - "id": 7109, - "name": "3.0" + "id": 8892, + "name": "5.0.0.00" }, - "certificationDate": "2017-12-12", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { "id": 36, @@ -33677,129 +49676,114 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -33807,9 +49791,14 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -33819,23 +49808,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://medconnecthealth.com/wp-content/uploads/2020/05/API_Documentation.pdf" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" } ], "acb": "Drummond Group" @@ -33843,11 +49832,11 @@ ] }, { - "listSourceURL": "https://portal.viewmymed.com/fhir/Endpoint", + "listSourceURL": "https://fhir-documentation.patientmedrecords.com/endpoints", "softwareProducts": [ { - "id": 11238, - "chplProductNumber": "15.04.04.1597.MedP.13.01.1.230216", + "id": 11049, + "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", "edition": { "id": 3, "name": "2015" @@ -33857,52 +49846,52 @@ "name": "" }, "developer": { - "id": 598, - "name": "Health Systems Technology, Inc." + "id": 2049, + "name": "Office Practicum" }, "product": { - "id": 907, - "name": "MedPointe" + "id": 3090, + "name": "Office Practicum" }, "version": { - "id": 8768, - "name": "13" + "id": 8636, + "name": "21" }, - "certificationDate": "2023-02-16", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -33910,29 +49899,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 4, @@ -33940,69 +49914,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, @@ -34010,24 +49954,14 @@ "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -34035,75 +49969,54 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://www.viewmymed.com/api/usage.php" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.viewmymed.com/api/usage.php" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.viewmymed.com/api/usage.php" + "value": "https://www.officepracticum.com/op/fhir-documentation" } ], "acb": "Drummond Group" @@ -34111,11 +50024,11 @@ ] }, { - "listSourceURL": "https://bill.medgenehr.com:7043/fhir/.well-known/smart-configuration", + "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10986, - "chplProductNumber": "15.04.04.2984.Medg.09.02.1.220915", + "id": 10914, + "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", "edition": { "id": 3, "name": "2015" @@ -34125,27 +50038,37 @@ "name": "" }, "developer": { - "id": 1985, - "name": "Comtron Inc." + "id": 1630, + "name": "iSALUS Healthcare" }, "product": { - "id": 3302, - "name": "Medgen EHR" + "id": 2566, + "name": "OfficeEMR" }, "version": { - "id": 8579, - "name": "Version 9" + "id": 8511, + "name": "2021" }, - "certificationDate": "2022-09-15", + "certificationDate": "2022-06-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -34155,12 +50078,17 @@ { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 5, @@ -34168,74 +50096,44 @@ "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -34243,9 +50141,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -34253,49 +50151,39 @@ "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, @@ -34303,59 +50191,72 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.isalushealthcare.com/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -34363,15 +50264,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -34379,11 +50272,11 @@ ] }, { - "listSourceURL": "https://medi-ehr.com/fhir-api-eps", + "listSourceURL": "https://fhirregistration.omnimd.com/#/specification", "softwareProducts": [ { - "id": 10831, - "chplProductNumber": "15.02.05.2979.MEDI.01.01.1.220215", + "id": 10784, + "chplProductNumber": "15.02.05.1717.OMNI.01.01.1.220110", "edition": { "id": 3, "name": "2015" @@ -34393,52 +50286,57 @@ "name": "" }, "developer": { - "id": 1980, - "name": "Medi-EHR, LLC" + "id": 718, + "name": "OmniMD Inc." }, "product": { - "id": 1464, - "name": "Medi-EHR" + "id": 1081, + "name": "OmniMD" }, "version": { - "id": 1265, - "name": "2.1" + "id": 7393, + "name": "18.0" }, - "certificationDate": "2022-02-15", + "certificationDate": "2022-01-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 3, @@ -34446,109 +50344,114 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { "id": 37, @@ -34556,59 +50459,74 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -34618,35 +50536,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://www.omnimd.com/open-api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://medi-ehr.com/public-fhir-api" + "value": "https://www.omnimd.com/open-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://fhirregistration.omnimd.com/#/specification" } ], "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://docs.medifusion.com/", - "softwareProducts": [ + }, { - "id": 10845, - "chplProductNumber": "15.05.05.3102.MEDF.01.00.1.220228", + "id": 11354, + "chplProductNumber": "15.05.05.1717.OM20.02.02.1.231024", "edition": { "id": 3, "name": "2015" @@ -34656,18 +50569,18 @@ "name": "" }, "developer": { - "id": 2103, - "name": "MediFusion, LLC" + "id": 718, + "name": "OmniMD Inc." }, "product": { - "id": 3609, - "name": "MediFusion" + "id": 1081, + "name": "OmniMD" }, "version": { - "id": 8453, - "name": "2.0" + "id": 8866, + "name": "20" }, - "certificationDate": "2022-02-28", + "certificationDate": "2023-10-24", "certificationStatus": { "id": 1, "name": "Active" @@ -34679,99 +50592,84 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -34779,39 +50677,44 @@ "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -34819,14 +50722,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 51, @@ -34834,85 +50737,105 @@ "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + "value": "https://www.omnimd.com/open-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.medifusion.com/" + "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -34920,11 +50843,11 @@ ] }, { - "listSourceURL": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm", + "listSourceURL": "https://fhir.prod.flatiron.io/fhir", "softwareProducts": [ { - "id": 10786, - "chplProductNumber": "15.02.05.1044.AVDC.01.01.1.220111", + "id": 11115, + "chplProductNumber": "15.04.04.3010.Onco.28.02.1.221221", "edition": { "id": 3, "name": "2015" @@ -34934,137 +50857,112 @@ "name": "" }, "developer": { - "id": 45, - "name": "Advanced Data Systems Corporation" + "id": 2011, + "name": "Flatiron Health" }, "product": { - "id": 88, - "name": "MedicsCloud" + "id": 2844, + "name": "OncoEMR" }, "version": { - "id": 7284, - "name": "11.0" + "id": 7582, + "name": "2.8" }, - "certificationDate": "2022-01-11", + "certificationDate": "2022-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, @@ -35072,44 +50970,44 @@ "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 52, @@ -35117,24 +51015,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -35142,29 +51045,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -35172,37 +51070,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" + "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" + "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" + "value": "https://flatiron.force.com/FHIR/s/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm", + "listSourceURL": "https://www.medonehp.com/wp-content/uploads/2023/11/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10785, - "chplProductNumber": "15.02.05.1044.AVDD.01.01.1.220111", + "id": 11426, + "chplProductNumber": "15.04.04.3182.Onec.00.00.1.231227", "edition": { "id": 3, "name": "2015" @@ -35212,62 +51110,37 @@ "name": "" }, "developer": { - "id": 45, - "name": "Advanced Data Systems Corporation" + "id": 2183, + "name": "MedOne Healthcare Partners" }, "product": { - "id": 89, - "name": "MedicsDocAssistant" + "id": 3753, + "name": "OneConnect" }, "version": { - "id": 7718, - "name": "8.0" + "id": 8935, + "name": "Version 0" }, - "certificationDate": "2022-01-11", + "certificationDate": "2023-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -35275,19 +51148,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -35295,54 +51173,44 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -35350,24 +51218,19 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -35375,74 +51238,24 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -35450,9 +51263,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" + "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, { "criterion": { @@ -35460,27 +51273,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhirpresentation.assertus.com/fhir/r4/endpoints", + "listSourceURL": "https://onetouchemr.com/onetouchemr_fhir_api.csv", "softwareProducts": [ { - "id": 10164, - "chplProductNumber": "15.04.04.3057.Medi.01.00.1.191113", + "id": 9396, + "chplProductNumber": "15.04.04.2821.OneT.03.00.1.180411", "edition": { "id": 3, "name": "2015" @@ -35490,37 +51303,32 @@ "name": "" }, "developer": { - "id": 2058, - "name": "Medicus Clinical, LLC" + "id": 1822, + "name": "OT EMR, Inc." }, "product": { - "id": 3496, - "name": "MedicusEHR" + "id": 1822, + "name": "OneTouch EMR" }, "version": { - "id": 7903, - "name": "1.0" + "id": 7283, + "name": "3" }, - "certificationDate": "2019-11-13", + "certificationDate": "2018-04-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 1, @@ -35528,64 +51336,89 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, @@ -35593,24 +51426,9 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -35618,24 +51436,24 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -35643,85 +51461,90 @@ "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://portal.assertus.com/es/medicusehr-application-data-access-api/" + "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -35729,11 +51552,11 @@ ] }, { - "listSourceURL": "https://api.medplum.com/openapi.json", + "listSourceURL": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API", "softwareProducts": [ { - "id": 11256, - "chplProductNumber": "15.04.04.3147.Medp.02.00.0.230307", + "id": 10938, + "chplProductNumber": "15.05.05.3115.OPEN.01.00.1.220708", "edition": { "id": 3, "name": "2015" @@ -35743,27 +51566,82 @@ "name": "" }, "developer": { - "id": 2148, - "name": "Medplum" + "id": 2116, + "name": "OpenEMR Foundation" }, "product": { - "id": 3699, - "name": "Medplum" + "id": 3634, + "name": "OpenEMR" }, "version": { - "id": 8778, - "name": "2" + "id": 8534, + "name": "7.0" }, - "certificationDate": "2023-03-07", + "certificationDate": "2022-07-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -35771,14 +51649,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 54, @@ -35786,46 +51689,97 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.medplum.com/docs/api" + "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://micromddev.dynamicfhir.com/fhir/r4/endpoints", + "listSourceURL": "https://orthoplex.mkoss.com/Fhirdocs", "softwareProducts": [ { - "id": 10886, - "chplProductNumber": "15.04.04.2753.Micr.19.06.1.220429", + "id": 9349, + "chplProductNumber": "15.04.04.3014.Orth.01.00.1.180101", "edition": { "id": 3, "name": "2015" @@ -35835,27 +51789,32 @@ "name": "" }, "developer": { - "id": 1754, - "name": "Henry Schein Medical Systems" + "id": 2015, + "name": "Mendelson Kornblum Orthopedic \u0026 Spine Specialists" }, "product": { - "id": 3350, - "name": "MicroMD EMR" + "id": 2868, + "name": "OrthoplexEMR" }, "version": { - "id": 8484, - "name": "Version 19.0" + "id": 7243, + "name": "V1" }, - "certificationDate": "2022-04-29", + "certificationDate": "2018-01-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 36, @@ -35863,64 +51822,34 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 14, @@ -35928,19 +51857,24 @@ "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -35948,19 +51882,29 @@ "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -35968,64 +51912,69 @@ "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 53, @@ -36033,24 +51982,19 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -36058,17 +52002,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, { "criterion": { @@ -36076,14 +52020,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "http://www.qrshs.info/docs/fhir/service-base.csv", + "softwareProducts": [ { - "id": 11281, - "chplProductNumber": "15.04.04.2753.Micr.20.07.1.230427", + "id": 11142, + "chplProductNumber": "15.04.04.2838.PARA.22.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -36093,92 +52042,72 @@ "name": "" }, "developer": { - "id": 1754, - "name": "Henry Schein Medical Systems" + "id": 1839, + "name": "QRS, Inc." }, "product": { - "id": 3350, - "name": "MicroMD EMR" + "id": 3677, + "name": "PARADIGM®" }, "version": { - "id": 8798, - "name": "Version 20.0" + "id": 8712, + "name": "22" }, - "certificationDate": "2023-04-27", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -36196,59 +52125,79 @@ "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -36256,24 +52205,19 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -36281,24 +52225,24 @@ "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -36306,35 +52250,40 @@ "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "http://www.qrshs.info/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "http://www.qrshs.info/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "http://www.qrshs.info/" } ], "acb": "Drummond Group" @@ -36342,11 +52291,11 @@ ] }, { - "listSourceURL": "https://github.com/cerner/ignite-endpoints", + "listSourceURL": "https://www.pcesystems.com/g10APIInfo.html", "softwareProducts": [ { - "id": 11015, - "chplProductNumber": "15.04.04.1221.Mill.18.06.1.221107", + "id": 11045, + "chplProductNumber": "15.04.04.2125.PCEC.94.01.1.221205", "edition": { "id": 3, "name": "2015" @@ -36356,127 +52305,142 @@ "name": "" }, "developer": { - "id": 222, - "name": "Cerner Corporation" + "id": 1126, + "name": "PCE Systems" }, "product": { - "id": 3653, - "name": "Millennium (Clinical)" + "id": 1879, + "name": "PCE Care Management" }, "version": { - "id": 8608, - "name": "2018" + "id": 8633, + "name": "Version 9.4" }, - "certificationDate": "2022-11-07", + "certificationDate": "2022-12-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 56, @@ -36484,64 +52448,112 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.pcesystems.com/g10APIInfo.html" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://code.cerner.com/apiaccess" + "value": "https://www.pcesystems.com/g10APIInfo.html" }, { "criterion": { @@ -36549,15 +52561,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://code.cerner.com/apiaccess" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://code.cerner.com/apiaccess" + "value": "https://www.pcesystems.com/g10APIInfo.html" } ], "acb": "Drummond Group" @@ -36565,11 +52569,11 @@ ] }, { - "listSourceURL": "https://www.mphrx.com/fhir-service-base-url-directory/", + "listSourceURL": "https://fhir.pcisgold.com/fhirdocs/practices.json", "softwareProducts": [ { - "id": 10649, - "chplProductNumber": "15.04.04.3082.Mine.04.01.0.210609", + "id": 11137, + "chplProductNumber": "15.04.04.2126.PCIS.26.02.1.221222", "edition": { "id": 3, "name": "2015" @@ -36579,32 +52583,102 @@ "name": "" }, "developer": { - "id": 2083, - "name": "My Personal Health Records Express Inc. d/b/a MphRx" + "id": 1127, + "name": "PCIS GOLD" }, "product": { - "id": 3564, - "name": "Minerva" + "id": 1881, + "name": "PCIS GOLD EHR" }, "version": { - "id": 8343, - "name": "V4" + "id": 8707, + "name": "2.6" }, - "certificationDate": "2021-06-09", + "certificationDate": "2022-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -36612,59 +52686,69 @@ "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -36672,19 +52756,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -36692,17 +52801,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.mphrx.com/api-guide_mphrx/" + "value": "https://fhir.pcisgold.com" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.mphrx.com/api-guide_mphrx/" + "value": "https://fhir.pcisgold.com" }, { "criterion": { @@ -36710,7 +52819,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.mphrx.com/api-guide_mphrx/" + "value": "https://fhir.pcisgold.com" } ], "acb": "Drummond Group" @@ -36718,11 +52827,11 @@ ] }, { - "listSourceURL": "https://mmdcf.modulemd.com/cf.fhir.r4", + "listSourceURL": "https://smart.mdsuite.com/Endpoints", "softwareProducts": [ { - "id": 11092, - "chplProductNumber": "15.04.04.2980.Modu.10.01.1.221219", + "id": 9347, + "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", "edition": { "id": 3, "name": "2015" @@ -36732,122 +52841,122 @@ "name": "" }, "developer": { - "id": 1981, - "name": "ModuleMD" + "id": 1689, + "name": "Azalea Health" }, "product": { - "id": 3353, - "name": "ModuleMD WISE™" + "id": 2867, + "name": "PDS MDSuite" }, "version": { - "id": 8670, - "name": "10.0" + "id": 7241, + "name": "Version 8" }, - "certificationDate": "2022-12-19", + "certificationDate": "2018-02-02", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 44, @@ -36855,34 +52964,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 28, @@ -36890,74 +52989,79 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -36965,25 +53069,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://openapi.modulemd.com" + "value": "https://developer.mdsuite.com/api/help/index" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://openapi.modulemd.com" + "value": "https://developer.mdsuite.com/api/help" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://openapi.modulemd.com" + "value": "https://developer.mdsuite.com/api/help/index" } ], "acb": "Drummond Group" @@ -36991,11 +53095,11 @@ ] }, { - "listSourceURL": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9", + "listSourceURL": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/Perform+ConnectServerEndpoints.json", "softwareProducts": [ { - "id": 11229, - "chplProductNumber": "15.05.05.3141.MOYA.01.00.1.230201", + "id": 11095, + "chplProductNumber": "15.04.04.2694.Perf.21.00.0.221219", "edition": { "id": 3, "name": "2015" @@ -37005,32 +53109,32 @@ "name": "" }, "developer": { - "id": 2142, - "name": "Moyae, Inc." + "id": 1695, + "name": "CitiusTech, Inc." }, "product": { - "id": 3693, - "name": "Moyae" + "id": 3667, + "name": "PERFORM+ Connect" }, "version": { - "id": 8761, - "name": "1" + "id": 8673, + "name": "21.01.01" }, - "certificationDate": "2023-02-01", + "certificationDate": "2022-12-19", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -37038,99 +53142,119 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + } + ], + "apiDocumentation": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11282, + "chplProductNumber": "15.04.04.2694.Perf.22.01.0.230426", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1695, + "name": "CitiusTech, Inc." + }, + "product": { + "id": 3667, + "name": "PERFORM+ Connect" + }, + "version": { + "id": 8799, + "name": "22.01.02" + }, + "certificationDate": "2023-04-26", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -37138,47 +53262,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://api-portal.navigatingcare.com/service-base-urls", + "listSourceURL": "https://fhir.thesnfist.com/endpointlist", "softwareProducts": [ { - "id": 11068, - "chplProductNumber": "15.04.04.2034.Navi.07.01.1.221213", + "id": 11177, + "chplProductNumber": "15.04.04.3137.Pace.20.00.1.221229", "edition": { "id": 3, "name": "2015" @@ -37188,27 +53309,57 @@ "name": "" }, "developer": { - "id": 1035, - "name": "Navigating Cancer, Inc." + "id": 2138, + "name": "Saisystems International" }, "product": { - "id": 2800, - "name": "Navigating Care" + "id": 3683, + "name": "PacEHR" }, "version": { - "id": 8652, - "name": "7.0" + "id": 8734, + "name": "v20.22.11.01" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-12-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, @@ -37216,19 +53367,39 @@ "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 34, @@ -37236,19 +53407,19 @@ "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 54, @@ -37256,70 +53427,60 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Audit Report(s)" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" + "value": "https://www.thesnfist.com/cures-update" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" + "value": "https://www.thesnfist.com/cures-update" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" + "value": "https://www.thesnfist.com/cures-update" } ], "acb": "Drummond Group" @@ -37327,11 +53488,11 @@ ] }, { - "listSourceURL": "https://sfp-fhirprod.azurewebsites.net/fhir/metadata", + "listSourceURL": "https://open.allscripts.com/fhirendpoints", "softwareProducts": [ { - "id": 9836, - "chplProductNumber": "15.04.04.2815.Woun.07.00.1.181231", + "id": 11398, + "chplProductNumber": "15.04.04.3123.Para.AM.08.1.231205", "edition": { "id": 3, "name": "2015" @@ -37341,43 +53502,68 @@ "name": "" }, "developer": { - "id": 1816, - "name": "Net Health" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3476, - "name": "Net Health® Wound Care" + "id": 3512, + "name": "Paragon® Ambulatory Care EHR" }, "version": { - "id": 7614, - "name": "7.0" + "id": 8908, + "name": "23.2" }, - "certificationDate": "2018-12-31", + "certificationDate": "2023-12-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 1, "number": "170.315 (a)(1)", @@ -37388,100 +53574,75 @@ "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -37489,54 +53650,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -37544,9 +53690,24 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -37554,37 +53715,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://nextgen.com/api/practice-search", - "softwareProducts": [ + }, { - "id": 10850, - "chplProductNumber": "15.04.04.1918.Next.60.09.1.220303", + "id": 11005, + "chplProductNumber": "15.04.04.3123.Para.AM.06.1.221027", "edition": { "id": 3, "name": "2015" @@ -37594,107 +53750,97 @@ "name": "" }, "developer": { - "id": 919, - "name": "NextGen Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3610, - "name": "NextGen Enterprise EHR" + "id": 3512, + "name": "Paragon® Ambulatory Care EHR" }, "version": { - "id": 8456, - "name": "6.2021.1 Patch 79" + "id": 8599, + "name": "22.2" }, - "certificationDate": "2022-03-03", + "certificationDate": "2022-10-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -37702,24 +53848,9 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -37727,24 +53858,9 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -37752,24 +53868,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 43, @@ -37777,24 +53883,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -37802,9 +53908,14 @@ "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, @@ -37812,72 +53923,72 @@ "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.nextgen.com/api" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" }, { - "id": 10861, - "chplProductNumber": "15.04.04.1918.Next.60.10.1.220318", + "id": 11332, + "chplProductNumber": "15.04.04.3123.Para.AM.07.1.230905", "edition": { "id": 3, "name": "2015" @@ -37887,27 +53998,27 @@ "name": "" }, "developer": { - "id": 919, - "name": "NextGen Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3610, - "name": "NextGen Enterprise EHR" + "id": 3512, + "name": "Paragon® Ambulatory Care EHR" }, "version": { - "id": 8459, - "name": "6.2021.1 Cures" + "id": 8846, + "name": "23.1" }, - "certificationDate": "2022-03-18", + "certificationDate": "2023-09-05", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -37915,49 +54026,44 @@ "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 44, @@ -37965,74 +54071,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, @@ -38040,104 +54101,109 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -38145,17 +54211,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { @@ -38163,19 +54229,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.meditouchehr.com/api/fhir/r4", - "softwareProducts": [ + }, { - "id": 9372, - "chplProductNumber": "15.04.04.2054.Medi.05.00.1.180220", + "id": 11333, + "chplProductNumber": "15.04.04.3123.Para.23.06.1.230905", "edition": { "id": 3, "name": "2015" @@ -38185,62 +54246,67 @@ "name": "" }, "developer": { - "id": 1055, - "name": "NextGen Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2874, - "name": "NextGen Office" + "id": 3379, + "name": "Paragon® for Hospitals 2015 Certified EHR" }, "version": { - "id": 7263, - "name": "Version 5.0" + "id": 8847, + "name": "23.1" }, - "certificationDate": "2018-02-20", + "certificationDate": "2023-09-05", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -38248,134 +54314,124 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -38383,57 +54439,57 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", - "softwareProducts": [ + }, { - "id": 11028, - "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", + "id": 11006, + "chplProductNumber": "15.04.04.3123.Para.22.05.1.221027", "edition": { "id": 3, "name": "2015" @@ -38443,47 +54499,42 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3538, - "name": "Nextech" + "id": 3379, + "name": "Paragon® for Hospitals 2015 Certified EHR" }, "version": { - "id": 8619, - "name": "17" + "id": 8600, + "name": "22.2" }, - "certificationDate": "2022-11-21", + "certificationDate": "2022-10-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -38491,89 +54542,94 @@ "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -38581,72 +54637,97 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { @@ -38654,14 +54735,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" }, { - "id": 11029, - "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", + "id": 11397, + "chplProductNumber": "15.04.04.3123.Para.23.07.1.231205", "edition": { "id": 3, "name": "2015" @@ -38671,37 +54752,32 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3358, - "name": "Nextech with NewCropRx" + "id": 3742, + "name": "Paragon® for Hospitals EHR" }, "version": { - "id": 8620, - "name": "17" + "id": 8907, + "name": "23.2" }, - "certificationDate": "2022-11-21", + "certificationDate": "2023-12-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -38709,39 +54785,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 39, @@ -38749,129 +54825,149 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -38879,17 +54975,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { @@ -38897,19 +54993,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11130, - "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", + "id": 10906, + "chplProductNumber": "15.04.04.3123.Sunr.22.06.1.220524", "edition": { "id": 3, "name": "2015" @@ -38919,78 +55010,88 @@ "name": "" }, "developer": { - "id": 1990, - "name": "Nexus Clinical LLC" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3360, - "name": "Nexus EHR" + "id": 3437, + "name": "Sunrise Acute Care" }, "version": { - "id": 8700, - "name": "7.3" + "id": 8504, + "name": "22.1" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 26, "number": "170.315 (c)(2)", @@ -39004,82 +55105,82 @@ { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -39087,49 +55188,69 @@ "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -39137,37 +55258,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.novomedici.com/api-documents/", - "softwareProducts": [ + }, { - "id": 10805, - "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", + "id": 11385, + "chplProductNumber": "15.04.04.3123.Sunr.22.07.1.231128", "edition": { "id": 3, "name": "2015" @@ -39177,62 +55293,57 @@ "name": "" }, "developer": { - "id": 2016, - "name": "NovoMedici, LLC" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2872, - "name": "NovoClinical" + "id": 3437, + "name": "Sunrise Acute Care" }, "version": { - "id": 7257, - "name": "1.0" + "id": 8896, + "name": "22.1 PR23" }, - "certificationDate": "2022-01-31", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -39240,39 +55351,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 1, @@ -39280,44 +55381,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -39325,34 +55436,34 @@ "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 34, @@ -39360,14 +55471,24 @@ "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 32, @@ -39375,52 +55496,77 @@ "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://developer.allscripts.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.novomedici.com/api-documents/" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://developer.allscripts.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11146, - "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", + "id": 10907, + "chplProductNumber": "15.04.04.3123.Sunr.AH.08.1.220524", "edition": { "id": 3, "name": "2015" @@ -39430,122 +55576,152 @@ "name": "" }, "developer": { - "id": 1087, - "name": "Objective Medical Systems, LLC" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 1823, - "name": "OMS EHR" + "id": 2778, + "name": "Sunrise Acute Care for Hospital-based Providers" }, "version": { - "id": 8715, - "name": "4.4.0.00" + "id": 8505, + "name": "22.1" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Transitions of Care" }, { "id": 12, @@ -39553,54 +55729,59 @@ "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 5, @@ -39608,52 +55789,52 @@ "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://developer.allscripts.com/" }, { "criterion": { @@ -39661,19 +55842,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://atlas-docs-dev.patientmedrecords.com/endpoints", - "softwareProducts": [ + }, { - "id": 11049, - "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", + "id": 11386, + "chplProductNumber": "15.04.04.3123.Sunr.AH.09.1.231128", "edition": { "id": 3, "name": "2015" @@ -39683,42 +55859,47 @@ "name": "" }, "developer": { - "id": 2049, - "name": "Office Practicum" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3090, - "name": "Office Practicum" + "id": 2778, + "name": "Sunrise Acute Care for Hospital-based Providers" }, "version": { - "id": 8636, - "name": "21" + "id": 8897, + "name": "22.1 PR23" }, - "certificationDate": "2022-11-21", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -39726,49 +55907,84 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 14, @@ -39776,14 +55992,19 @@ "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, @@ -39796,54 +56017,89 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -39851,21 +56107,32 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.officepracticum.com/op/fhir-documentation" + "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 10914, - "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", + "id": 10908, + "chplProductNumber": "15.04.04.3123.Sunr.AM.08.1.220524", "edition": { "id": 3, "name": "2015" @@ -39875,37 +56142,52 @@ "name": "" }, "developer": { - "id": 1630, - "name": "iSALUS Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2566, - "name": "OfficeEMR" + "id": 3438, + "name": "Sunrise Ambulatory Care" }, "version": { - "id": 8511, - "name": "2021" + "id": 8506, + "name": "22.1" }, - "certificationDate": "2022-06-06", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 56, @@ -39913,89 +56195,104 @@ "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -40003,49 +56300,54 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -40053,9 +56355,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 5, @@ -40063,57 +56370,42 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.isalushealthcare.com/" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.isalushealthcare.com/" + "value": "https://developer.allscripts.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.isalushealthcare.com/" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhirregistration.omnimd.com/#/specification", - "softwareProducts": [ + }, { - "id": 10784, - "chplProductNumber": "15.02.05.1717.OMNI.01.01.1.220110", + "id": 11384, + "chplProductNumber": "15.04.04.3123.Sunr.AM.09.1.231128", "edition": { "id": 3, "name": "2015" @@ -40123,42 +56415,52 @@ "name": "" }, "developer": { - "id": 718, - "name": "OmniMD Inc." + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 1081, - "name": "OmniMD" + "id": 3438, + "name": "Sunrise Ambulatory Care" }, "version": { - "id": 7393, - "name": "18.0" + "id": 8895, + "name": "22.1 PR23" }, - "certificationDate": "2022-01-10", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -40166,84 +56468,79 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -40251,24 +56548,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40276,94 +56568,84 @@ "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ @@ -40371,37 +56653,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.omnimd.com/open-api/" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhirregistration.omnimd.com/#/specification" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.omnimd.com/open-api/" + "value": "https://developer.allscripts.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir.prod.flatiron.io/fhir", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11115, - "chplProductNumber": "15.04.04.3010.Onco.28.02.1.221221", + "id": 11048, + "chplProductNumber": "15.04.04.3123.Touc.22.08.1.221205", "edition": { "id": 3, "name": "2015" @@ -40411,157 +56688,192 @@ "name": "" }, "developer": { - "id": 2011, - "name": "Flatiron Health" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2844, - "name": "OncoEMR" + "id": 2956, + "name": "TouchWorks EHR" }, "version": { - "id": 7582, - "name": "2.8" + "id": 8635, + "name": "22.1" }, - "certificationDate": "2022-12-21", + "certificationDate": "2022-12-05", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -40569,54 +56881,62 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://flatiron.force.com/FHIR/s/" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -40624,27 +56944,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://flatiron.force.com/FHIR/s/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://flatiron.force.com/FHIR/s/" + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://onetouchemr.com/onetouchemr_fhir_api.csv", - "softwareProducts": [ + }, { - "id": 9396, - "chplProductNumber": "15.04.04.2821.OneT.03.00.1.180411", + "id": 11383, + "chplProductNumber": "15.04.04.3123.Touc.22.09.1.231130", "edition": { "id": 3, "name": "2015" @@ -40654,57 +56961,32 @@ "name": "" }, "developer": { - "id": 1822, - "name": "OT EMR, Inc." + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 1822, - "name": "OneTouch EMR" + "id": 2956, + "name": "TouchWorks EHR" }, "version": { - "id": 7283, - "name": "3" - }, - "certificationDate": "2018-04-11", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, + "id": 8894, + "name": "22.1.6" + }, + "certificationDate": "2023-11-30", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -40712,24 +56994,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -40737,49 +57024,64 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 53, @@ -40787,127 +57089,142 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" + "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API", - "softwareProducts": [ + }, { - "id": 10938, - "chplProductNumber": "15.05.05.3115.OPEN.01.00.1.220708", + "id": 11081, + "chplProductNumber": "15.04.04.3123.dbMo.21.04.1.221216", "edition": { "id": 3, "name": "2015" @@ -40917,132 +57234,82 @@ "name": "" }, "developer": { - "id": 2116, - "name": "OpenEMR Foundation" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3634, - "name": "OpenEMR" + "id": 138, + "name": "dbMotion" }, "version": { - "id": 8534, - "name": "7.0" + "id": 8662, + "name": "21.2 CU1" }, - "certificationDate": "2022-07-08", + "certificationDate": "2022-12-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 59, @@ -41050,82 +57317,59 @@ "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + "value": "https://developer.allscripts.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://orthoplex.mkoss.com/Fhirdocs", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 9349, - "chplProductNumber": "15.04.04.3014.Orth.01.00.1.180101", + "id": 11297, + "chplProductNumber": "15.04.04.3123.dbMo.22.05.1.230531", "edition": { "id": 3, "name": "2015" @@ -41135,72 +57379,72 @@ "name": "" }, "developer": { - "id": 2015, - "name": "Mendelson Kornblum Orthopedic \u0026 Spine Specialists" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2868, - "name": "OrthoplexEMR" + "id": 138, + "name": "dbMotion" }, "version": { - "id": 7243, - "name": "V1" + "id": 8814, + "name": "22.4" }, - "certificationDate": "2018-01-01", + "certificationDate": "2023-05-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 33, @@ -41208,14 +57452,14 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -41223,64 +57467,99 @@ "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.allscripts.com/" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11382, + "chplProductNumber": "15.04.04.3123.dbMo.24.06.1.231130", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2124, + "name": "Altera Digital Health Inc." + }, + "product": { + "id": 138, + "name": "dbMotion" + }, + "version": { + "id": 8893, + "name": "24.1" + }, + "certificationDate": "2023-11-30", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -41293,39 +57572,49 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -41333,40 +57622,32 @@ "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" + "value": "https://developer.allscripts.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -41374,11 +57655,11 @@ ] }, { - "listSourceURL": "http://www.qrshs.info/docs/fhir/service-base.csv", + "listSourceURL": "https://patagoniahealth.com/wp-content/uploads/2022/12/fhir-base-urls.csv", "softwareProducts": [ { - "id": 11142, - "chplProductNumber": "15.04.04.2838.PARA.22.01.1.221227", + "id": 11147, + "chplProductNumber": "15.04.04.2139.Pata.06.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -41388,16 +57669,16 @@ "name": "" }, "developer": { - "id": 1839, - "name": "QRS, Inc." + "id": 1140, + "name": "Patagonia Health" }, "product": { - "id": 3677, - "name": "PARADIGM®" + "id": 2875, + "name": "Patagonia Health EHR" }, "version": { - "id": 8712, - "name": "22" + "id": 8716, + "name": "6" }, "certificationDate": "2022-12-27", "certificationStatus": { @@ -41406,49 +57687,54 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 33, @@ -41456,14 +57742,14 @@ "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 12, @@ -41471,34 +57757,24 @@ "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 39, @@ -41506,59 +57782,64 @@ "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -41566,39 +57847,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -41608,23 +57889,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.qrshs.info/" + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.qrshs.info/" + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.qrshs.info/" + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -41632,11 +57913,11 @@ ] }, { - "listSourceURL": "https://www.pcesystems.com/g10APIInfo.html", + "listSourceURL": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation", "softwareProducts": [ { - "id": 11045, - "chplProductNumber": "15.04.04.2125.PCEC.94.01.1.221205", + "id": 10791, + "chplProductNumber": "15.02.05.2206.PRIC.01.03.1.220114", "edition": { "id": 3, "name": "2015" @@ -41646,77 +57927,82 @@ "name": "" }, "developer": { - "id": 1126, - "name": "PCE Systems" + "id": 1207, + "name": "Prime Clinical Systems, Inc." }, "product": { - "id": 1879, - "name": "PCE Care Management" + "id": 1976, + "name": "Patient Chart Manager" }, "version": { - "id": 8633, - "name": "Version 9.4" + "id": 8003, + "name": "7.1" }, - "certificationDate": "2022-12-05", + "certificationDate": "2022-01-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 1, @@ -41724,39 +58010,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -41769,14 +58030,29 @@ "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -41784,44 +58060,49 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -41829,54 +58110,44 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -41884,37 +58155,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.pcesystems.com/g10APIInfo.html" + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.pcesystems.com/g10APIInfo.html" + "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.pcesystems.com/g10APIInfo.html" + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.pcisgold.com/fhirdocs/practices.json", + "listSourceURL": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/fhir-base-urls.csv", "softwareProducts": [ { - "id": 11137, - "chplProductNumber": "15.04.04.2126.PCIS.26.02.1.221222", + "id": 11245, + "chplProductNumber": "15.04.04.3144.Pati.01.00.1.230302", "edition": { "id": 3, "name": "2015" @@ -41924,122 +58195,142 @@ "name": "" }, "developer": { - "id": 1127, - "name": "PCIS GOLD" + "id": 2145, + "name": "Patient Pattern, Inc" }, "product": { - "id": 1881, - "name": "PCIS GOLD EHR" + "id": 3696, + "name": "Patient Pattern" }, "version": { - "id": 8707, - "name": "2.6" + "id": 8769, + "name": "v1.0" }, - "certificationDate": "2022-12-22", + "certificationDate": "2023-03-02", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 53, @@ -42047,59 +58338,132 @@ "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.willowgladetechnologies.com/requirements", + "softwareProducts": [ + { + "id": 11411, + "chplProductNumber": "15.11.09.3179.PHN0.06.00.1.231222", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2180, + "name": "Willowglade Technologies Corporation" + }, + "product": { + "id": 3747, + "name": "Personal Health Navigator" + }, + "version": { + "id": 8920, + "name": "6.0" + }, + "certificationDate": "2023-12-22", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 56, @@ -42107,72 +58471,67 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.pcisgold.com" + "value": "https://www.willowgladetechnologies.com/requirements" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.pcisgold.com" + "value": "https://www.willowgladetechnologies.com/requirements" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.pcisgold.com" + "value": "https://www.willowgladetechnologies.com/requirements" } ], - "acb": "Drummond Group" + "acb": "Leidos" } ] }, { - "listSourceURL": "https://smart.mdsuite.com/Endpoints", + "listSourceURL": "https://mraemr.com:47102/api/FHIR_Service_URLs.asp", "softwareProducts": [ { - "id": 9347, - "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", + "id": 11214, + "chplProductNumber": "15.07.09.2479.PH01.11.01.1.230117", "edition": { "id": 3, "name": "2015" @@ -42182,52 +58541,52 @@ "name": "" }, "developer": { - "id": 1689, - "name": "Azalea Health" + "id": 1480, + "name": "MD Charts, LLC" }, "product": { - "id": 2867, - "name": "PDS MDSuite" + "id": 2370, + "name": "Physician's Solution" }, "version": { - "id": 7241, - "name": "Version 8" + "id": 7971, + "name": "11" }, - "certificationDate": "2018-02-02", + "certificationDate": "2023-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -42235,44 +58594,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 2, @@ -42280,104 +58649,104 @@ "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -42385,42 +58754,24 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://developer.mdsuite.com/api/help/index" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.mdsuite.com/api/help/index" + "value": "https://mraemr.com:47102/api/help_document.asp" }, { "criterion": { @@ -42428,19 +58779,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.mdsuite.com/api/help" + "value": "https://mraemr.com:47102/api/help_document.asp" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mraemr.com:47102/api/help_document.asp" } ], - "acb": "Drummond Group" + "acb": "Leidos" } ] }, { - "listSourceURL": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/Perform+ConnectServerEndpoints.json", + "listSourceURL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", "softwareProducts": [ { - "id": 11095, - "chplProductNumber": "15.04.04.2694.Perf.21.00.0.221219", + "id": 10235, + "chplProductNumber": "15.07.07.2479.PH01.01.00.1.191230", "edition": { "id": 3, "name": "2015" @@ -42450,122 +58809,77 @@ "name": "" }, "developer": { - "id": 1695, - "name": "CitiusTech, Inc." + "id": 1480, + "name": "MD Charts, LLC" }, "product": { - "id": 3667, - "name": "PERFORM+ Connect" + "id": 2370, + "name": "Physician's Solution" }, "version": { - "id": 8673, - "name": "21.01.01" + "id": 7971, + "name": "11" }, - "certificationDate": "2022-12-19", + "certificationDate": "2019-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" - } - ], - "acb": "Drummond Group" - }, - { - "id": 11282, - "chplProductNumber": "15.04.04.2694.Perf.22.01.0.230426", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1695, - "name": "CitiusTech, Inc." - }, - "product": { - "id": 3667, - "name": "PERFORM+ Connect" - }, - "version": { - "id": 8799, - "name": "22.01.02" - }, - "certificationDate": "2023-04-26", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 54, @@ -42573,119 +58887,99 @@ "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - } - ], - "apiDocumentation": [ + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.thesnfist.com/endpointlist", - "softwareProducts": [ - { - "id": 11177, - "chplProductNumber": "15.04.04.3137.Pace.20.00.1.221229", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 2138, - "name": "Saisystems International" - }, - "product": { - "id": 3683, - "name": "PacEHR" - }, - "version": { - "id": 8734, - "name": "v20.22.11.01" - }, - "certificationDate": "2022-12-29", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 34, @@ -42693,14 +58987,14 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 53, @@ -42708,69 +59002,79 @@ "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.thesnfist.com/cures-update" + "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { @@ -42778,27 +59082,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.thesnfist.com/cures-update" + "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.thesnfist.com/cures-update" + "value": "http://mraemr.com:47102/api/help_document.asp" } ], - "acb": "Drummond Group" + "acb": "ICSA Labs" } ] }, { - "listSourceURL": "https://open.allscripts.com/fhirendpoints", + "listSourceURL": "https://hag-fhir.amazingcharts.com/pc/endpoints", "softwareProducts": [ { - "id": 11005, - "chplProductNumber": "15.04.04.3123.Para.AM.06.1.221027", + "id": 11399, + "chplProductNumber": "15.04.04.2985.Pica.08.05.1.231207", "edition": { "id": 3, "name": "2015" @@ -42808,102 +59112,112 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1986, + "name": "Doc-tor.com" }, "product": { - "id": 3512, - "name": "Paragon® Ambulatory Care EHR" + "id": 3394, + "name": "Picasso" }, - "version": { - "id": 8599, - "name": "22.2" + "version": { + "id": 8909, + "name": "8.2" }, - "certificationDate": "2022-10-27", + "certificationDate": "2023-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 1, @@ -42911,142 +59225,142 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" }, { - "id": 11006, - "chplProductNumber": "15.04.04.3123.Para.22.05.1.221027", + "id": 11031, + "chplProductNumber": "15.04.04.2985.Pica.08.03.1.221128", "edition": { "id": 3, "name": "2015" @@ -43056,57 +59370,52 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1986, + "name": "Doc-tor.com" }, "product": { - "id": 3379, - "name": "Paragon® for Hospitals 2015 Certified EHR" + "id": 3394, + "name": "Picasso" }, "version": { - "id": 8600, - "name": "22.2" + "id": 8622, + "name": "8.0" }, - "certificationDate": "2022-10-27", + "certificationDate": "2022-11-28", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -43114,69 +59423,89 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 36, @@ -43184,39 +59513,49 @@ "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 53, @@ -43224,49 +59563,24 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -43276,30 +59590,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" }, { - "id": 10906, - "chplProductNumber": "15.04.04.3123.Sunr.22.06.1.220524", + "id": 11327, + "chplProductNumber": "15.04.04.2985.Pica.08.04.1.230801", "edition": { "id": 3, "name": "2015" @@ -43309,47 +59623,67 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1986, + "name": "Doc-tor.com" }, "product": { - "id": 3437, - "name": "Sunrise Acute Care" + "id": 3394, + "name": "Picasso" }, "version": { - "id": 8504, - "name": "22.1" + "id": 8842, + "name": "8.1" }, - "certificationDate": "2022-05-24", + "certificationDate": "2023-08-01", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -43357,9 +59691,19 @@ "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -43367,109 +59711,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -43477,14 +59796,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 14, @@ -43492,44 +59816,14 @@ "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -43537,52 +59831,47 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/" + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://dataapi.practiceehr.com", + "softwareProducts": [ { - "id": 10907, - "chplProductNumber": "15.04.04.3123.Sunr.AH.08.1.220524", + "id": 10923, + "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", "edition": { "id": 3, "name": "2015" @@ -43592,127 +59881,117 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1998, + "name": "Practice EHR LLC" }, "product": { - "id": 2778, - "name": "Sunrise Acute Care for Hospital-based Providers" + "id": 2790, + "name": "Practice EHR" }, "version": { - "id": 8505, - "name": "22.1" + "id": 7051, + "name": "V12" }, - "certificationDate": "2022-05-24", + "certificationDate": "2022-06-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 53, @@ -43720,152 +59999,117 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", + "softwareProducts": [ { - "id": 10908, - "chplProductNumber": "15.04.04.3123.Sunr.AM.08.1.220524", + "id": 9856, + "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", "edition": { "id": 3, "name": "2015" @@ -43875,270 +60119,250 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 191, + "name": "California Medical Systems" }, "product": { - "id": 3438, - "name": "Sunrise Ambulatory Care" + "id": 289, + "name": "Practice Expert" }, "version": { - "id": 8506, - "name": "22.1" + "id": 7634, + "name": "2018" }, - "certificationDate": "2022-05-24", + "certificationDate": "2018-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/" + "value": "https://cal-med.com/onc.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/" + "value": "https://cal-med.com/onc.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "http://cal-med.com/Calmed_API_Document.pdf" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", + "softwareProducts": [ { - "id": 11048, - "chplProductNumber": "15.04.04.3123.Touc.22.08.1.221205", + "id": 9833, + "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -44148,132 +60372,122 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1925, + "name": "Practice Fusion" }, "product": { - "id": 2956, - "name": "TouchWorks EHR" + "id": 3399, + "name": "Practice Fusion EHR" }, "version": { - "id": 8635, - "name": "22.1" + "id": 7611, + "name": "3.7" }, - "certificationDate": "2022-12-05", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 9, @@ -44281,29 +60495,54 @@ "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -44311,107 +60550,117 @@ "title": "Emergency Access" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicefusion.com/fhir/api-specifications/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", + "softwareProducts": [ { - "id": 11009, - "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", + "id": 9590, + "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", "edition": { "id": 3, "name": "2015" @@ -44421,62 +60670,47 @@ "name": "" }, "developer": { - "id": 1892, - "name": "Allscripts" + "id": 986, + "name": "MicroFour, Inc." }, "product": { - "id": 3652, - "name": "Veradigm EHR" + "id": 1667, + "name": "PracticeStudio" }, "version": { - "id": 8603, - "name": "22.2" + "id": 7412, + "name": "X20" }, - "certificationDate": "2022-10-25", + "certificationDate": "2018-08-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -44484,24 +60718,19 @@ "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -44509,54 +60738,59 @@ "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -44564,142 +60798,157 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.veradigm.com/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.veradigm.com/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", + "softwareProducts": [ { - "id": 11081, - "chplProductNumber": "15.04.04.3123.dbMo.21.04.1.221216", + "id": 10853, + "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", "edition": { "id": 3, "name": "2015" @@ -44709,37 +60958,52 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1767, + "name": "Infor-Med Medical Information Systems Inc." }, "product": { - "id": 138, - "name": "dbMotion" + "id": 3403, + "name": "Praxis EMR" }, "version": { - "id": 8662, - "name": "21.2 CU1" + "id": 8081, + "name": "9" }, - "certificationDate": "2022-12-16", + "certificationDate": "2022-03-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -44747,9 +61011,29 @@ "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -44757,64 +61041,124 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -44822,9 +61166,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/" + "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, { "criterion": { @@ -44832,19 +61176,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "https://www.praxisemr.com/applicationaccess/api/help/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.praxisemr.com/applicationaccess/api/help/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://patagoniahealth.com/wp-content/uploads/2022/12/fhir-base-urls.csv", + "listSourceURL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11147, - "chplProductNumber": "15.04.04.2139.Pata.06.01.1.221227", + "id": 11155, + "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", "edition": { "id": 3, "name": "2015" @@ -44854,97 +61206,87 @@ "name": "" }, "developer": { - "id": 1140, - "name": "Patagonia Health" + "id": 1215, + "name": "Procentive" }, "product": { - "id": 2875, - "name": "Patagonia Health EHR" + "id": 1987, + "name": "Procentive" }, "version": { - "id": 8716, - "name": "6" + "id": 8723, + "name": "2" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-12-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -44952,59 +61294,64 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 12, @@ -45012,85 +61359,49 @@ "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" + "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -45098,11 +61409,11 @@ ] }, { - "listSourceURL": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation", + "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", "softwareProducts": [ { - "id": 10791, - "chplProductNumber": "15.02.05.2206.PRIC.01.03.1.220114", + "id": 11391, + "chplProductNumber": "15.04.04.2837.Puls.08.02.1.231206", "edition": { "id": 3, "name": "2015" @@ -45112,67 +61423,77 @@ "name": "" }, "developer": { - "id": 1207, - "name": "Prime Clinical Systems, Inc." + "id": 1838, + "name": "Pulse Systems, Inc" }, "product": { - "id": 1976, - "name": "Patient Chart Manager" + "id": 2910, + "name": "Pulse EHR" }, "version": { - "id": 8003, - "name": "7.1" + "id": 8901, + "name": "8.01" }, - "certificationDate": "2022-01-14", + "certificationDate": "2023-12-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 56, @@ -45180,9 +61501,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -45190,19 +61516,9 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, @@ -45210,29 +61526,24 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -45240,137 +61551,112 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/fhir-base-urls.csv", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11245, - "chplProductNumber": "15.04.04.3144.Pati.01.00.1.230302", + "id": 11180, + "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", "edition": { "id": 3, "name": "2015" @@ -45380,72 +61666,82 @@ "name": "" }, "developer": { - "id": 2145, - "name": "Patient Pattern, Inc" + "id": 1838, + "name": "Pulse Systems, Inc" }, "product": { - "id": 3696, - "name": "Patient Pattern" + "id": 2910, + "name": "Pulse EHR" }, "version": { - "id": 8769, - "name": "v1.0" + "id": 8737, + "name": "8.0" }, - "certificationDate": "2023-03-02", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -45453,110 +61749,145 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -45564,11 +61895,11 @@ ] }, { - "listSourceURL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", + "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", "softwareProducts": [ { - "id": 11214, - "chplProductNumber": "15.07.09.2479.PH01.11.01.1.230117", + "id": 11213, + "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", "edition": { "id": 3, "name": "2015" @@ -45578,82 +61909,47 @@ "name": "" }, "developer": { - "id": 1480, - "name": "MD Charts, LLC" + "id": 2140, + "name": "Pure EHR LLC" }, "product": { - "id": 2370, - "name": "Physician's Solution" + "id": 3690, + "name": "Pure EHR" }, "version": { - "id": 7971, - "name": "11" + "id": 8755, + "name": "1.0" }, - "certificationDate": "2023-01-17", + "certificationDate": "2023-01-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -45661,44 +61957,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -45711,29 +61987,29 @@ "title": "Demographics" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 59, @@ -45741,49 +62017,44 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -45791,32 +62062,32 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "criterion": { @@ -45824,14 +62095,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" } ], - "acb": "Leidos" - }, + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", + "softwareProducts": [ { - "id": 10235, - "chplProductNumber": "15.07.07.2479.PH01.01.00.1.191230", + "id": 10803, + "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", "edition": { "id": 3, "name": "2015" @@ -45841,72 +62117,67 @@ "name": "" }, "developer": { - "id": 1480, - "name": "MD Charts, LLC" + "id": 2099, + "name": "Magilen Enterprises Inc" }, "product": { - "id": 2370, - "name": "Physician's Solution" + "id": 3604, + "name": "QSmartCare" }, "version": { - "id": 7971, - "name": "11" + "id": 8432, + "name": "1.0" }, - "certificationDate": "2019-12-30", + "certificationDate": "2022-01-27", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 56, @@ -45914,29 +62185,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 42, @@ -45944,14 +62215,14 @@ "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -45959,54 +62230,34 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -46014,89 +62265,69 @@ "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -46104,9 +62335,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { @@ -46114,27 +62345,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://www.qsmartcare.com/api-documentation.html" } ], - "acb": "ICSA Labs" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/pc/endpoints", + "listSourceURL": "https://fhir.myqone.com/Endpoints", "softwareProducts": [ { - "id": 11031, - "chplProductNumber": "15.04.04.2985.Pica.08.03.1.221128", + "id": 10709, + "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", "edition": { "id": 3, "name": "2015" @@ -46144,102 +62375,122 @@ "name": "" }, "developer": { - "id": 1986, - "name": "Doc-tor.com" + "id": 1615, + "name": "TRIARQ Practice Services" }, "product": { - "id": 3394, - "name": "Picasso" + "id": 2816, + "name": "QSuite" }, "version": { - "id": 8622, - "name": "8.0" + "id": 7113, + "name": "Manistee" }, - "certificationDate": "2022-11-28", + "certificationDate": "2021-11-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -46247,29 +62498,29 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -46277,49 +62528,54 @@ "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 32, @@ -46327,52 +62583,64 @@ "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" + "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" }, { "criterion": { @@ -46380,19 +62648,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" + "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.myqone.com" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://dataapi.practiceehr.com", + "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", "softwareProducts": [ { - "id": 10923, - "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", + "id": 10903, + "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", "edition": { "id": 3, "name": "2015" @@ -46402,27 +62678,42 @@ "name": "" }, "developer": { - "id": 1998, - "name": "Practice EHR LLC" + "id": 1929, + "name": "Quest Diagnostics Incorporated" }, "product": { - "id": 2790, - "name": "Practice EHR" + "id": 2787, + "name": "Quanum EHR" }, "version": { - "id": 7051, - "name": "V12" + "id": 8501, + "name": "2021" }, - "certificationDate": "2022-06-28", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 42, @@ -46430,69 +62721,79 @@ "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -46500,34 +62801,24 @@ "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -46535,82 +62826,77 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, + "apiDocumentation": [ { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" }, { "criterion": { @@ -46618,7 +62904,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" } ], "acb": "Drummond Group" @@ -46626,11 +62912,11 @@ ] }, { - "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", + "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", "softwareProducts": [ { - "id": 9856, - "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", + "id": 10253, + "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", "edition": { "id": 3, "name": "2015" @@ -46640,47 +62926,47 @@ "name": "" }, "developer": { - "id": 191, - "name": "California Medical Systems" + "id": 1913, + "name": "Radysans, Inc" }, "product": { - "id": 289, - "name": "Practice Expert" + "id": 3415, + "name": "Radysans EHR" }, "version": { - "id": 7634, - "name": "2018" + "id": 7987, + "name": "5.0" }, - "certificationDate": "2018-12-22", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, @@ -46688,79 +62974,79 @@ "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -46768,19 +63054,19 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -46788,74 +63074,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://cal-med.com/onc.html" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { @@ -46863,15 +63174,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://cal-med.com/Calmed_API_Document.pdf" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://cal-med.com/onc.html" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" } ], "acb": "Drummond Group" @@ -46879,11 +63190,11 @@ ] }, { - "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", + "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", "softwareProducts": [ { - "id": 9833, - "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", + "id": 11024, + "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", "edition": { "id": 3, "name": "2015" @@ -46893,82 +63204,57 @@ "name": "" }, "developer": { - "id": 1925, - "name": "Practice Fusion" + "id": 1991, + "name": "ReLi Med Solutions, LLC" }, "product": { - "id": 3399, - "name": "Practice Fusion EHR" + "id": 3422, + "name": "ReLiMed EMR" }, "version": { - "id": 7611, - "name": "3.7" + "id": 8615, + "name": "Version 7.3" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-11-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -46976,44 +63262,29 @@ "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -47021,29 +63292,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 3, @@ -47051,94 +63317,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -47146,25 +63422,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.practicefusion.com/fhir/api-specifications/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -47172,11 +63448,11 @@ ] }, { - "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", + "listSourceURL": "https://www.ihs.gov/cis/", "softwareProducts": [ { - "id": 9590, - "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", + "id": 10848, + "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", "edition": { "id": 3, "name": "2015" @@ -47186,52 +63462,32 @@ "name": "" }, "developer": { - "id": 986, - "name": "MicroFour, Inc." + "id": 674, + "name": "Indian Health Service" }, "product": { - "id": 1667, - "name": "PracticeStudio" + "id": 1033, + "name": "Resource and Patient Management System Electronic Health Record" }, "version": { - "id": 7412, - "name": "X20" + "id": 8380, + "name": "BCERv7.0" }, - "certificationDate": "2018-08-10", + "certificationDate": "2022-03-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -47239,79 +63495,79 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -47319,29 +63575,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 4, @@ -47349,84 +63615,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -47436,35 +63702,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.ihs.gov/cis/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", + "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10853, - "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", + "id": 9923, + "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -47474,47 +63740,42 @@ "name": "" }, "developer": { - "id": 1767, - "name": "Infor-Med Medical Information Systems Inc." + "id": 592, + "name": "Health Innovation Technologies, Inc." }, "product": { - "id": 3403, - "name": "Praxis EMR" + "id": 3423, + "name": "RevolutionEHR" }, "version": { - "id": 8081, - "name": "9" + "id": 7694, + "name": "7" }, - "certificationDate": "2022-03-10", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -47522,19 +63783,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -47542,24 +63793,14 @@ "title": "Integrity" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -47567,39 +63808,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -47607,92 +63853,102 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -47700,19 +63956,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", + "listSourceURL": "https://www.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", "softwareProducts": [ { - "id": 11155, - "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", + "id": 10770, + "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", "edition": { "id": 3, "name": "2015" @@ -47722,52 +63978,52 @@ "name": "" }, "developer": { - "id": 1215, - "name": "Procentive" + "id": 1846, + "name": "Royal Health, Inc." }, "product": { - "id": 1987, - "name": "Procentive" + "id": 3424, + "name": "Royal Solutions" }, "version": { - "id": 8723, - "name": "2.0" + "id": 8424, + "name": "5" }, - "certificationDate": "2022-12-28", + "certificationDate": "2021-12-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -47775,74 +64031,74 @@ "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, @@ -47850,64 +64106,64 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -47915,9 +64171,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -47925,11 +64197,11 @@ ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", + "listSourceURL": "https://dataapi.sequelmed.com", "softwareProducts": [ { - "id": 11180, - "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", + "id": 11143, + "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -47939,27 +64211,47 @@ "name": "" }, "developer": { - "id": 1838, - "name": "Pulse Systems, Inc" + "id": 1847, + "name": "Sequel Systems, Inc." }, "product": { - "id": 2910, - "name": "Pulse EHR" + "id": 2126, + "name": "SequelMed EHR" }, "version": { - "id": 8737, - "name": "8.0" + "id": 7973, + "name": "V12" }, - "certificationDate": "2022-12-29", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, @@ -47967,9 +64259,9 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -47977,54 +64269,64 @@ "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -48032,14 +64334,14 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -48047,9 +64349,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -48057,19 +64369,19 @@ "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 29, @@ -48077,39 +64389,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, @@ -48117,50 +64404,40 @@ "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" } ], "acb": "Drummond Group" @@ -48168,11 +64445,11 @@ ] }, { - "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", + "listSourceURL": "https://genensys.com/api/", "softwareProducts": [ { - "id": 11213, - "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", + "id": 10317, + "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", "edition": { "id": 3, "name": "2015" @@ -48182,27 +64459,27 @@ "name": "" }, "developer": { - "id": 2140, - "name": "Pure EHR LLC" + "id": 524, + "name": "Genensys LLC" }, "product": { - "id": 3690, - "name": "Pure EHR" + "id": 805, + "name": "Simplify EMR" }, "version": { - "id": 8755, - "name": "1.0" + "id": 8046, + "name": "4.0" }, - "certificationDate": "2023-01-10", + "certificationDate": "2020-02-25", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -48210,29 +64487,49 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 59, @@ -48240,24 +64537,89 @@ "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -48265,44 +64627,39 @@ "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -48310,19 +64667,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 52, @@ -48330,14 +64677,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -48345,37 +64687,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://genensys.com/api/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://genensys.com/api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://genensys.com/api/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10803, - "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", + "id": 10987, + "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -48385,32 +64727,27 @@ "name": "" }, "developer": { - "id": 2099, - "name": "Magilen Enterprises Inc" + "id": 1856, + "name": "Streamline Healthcare Solutions" }, "product": { - "id": 3604, - "name": "QSmartCare" + "id": 2222, + "name": "SmartCare" }, "version": { - "id": 8432, - "name": "1.0" + "id": 8580, + "name": "R6" }, - "certificationDate": "2022-01-27", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, @@ -48418,19 +64755,14 @@ "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 44, @@ -48438,119 +64770,129 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -48558,82 +64900,97 @@ "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir.myqone.com/Endpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10709, - "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", + "id": 9303, + "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", "edition": { "id": 3, "name": "2015" @@ -48643,142 +65000,162 @@ "name": "" }, "developer": { - "id": 1615, - "name": "TRIARQ Practice Services" + "id": 1856, + "name": "Streamline Healthcare Solutions" }, "product": { - "id": 2816, - "name": "QSuite" + "id": 2222, + "name": "SmartCare" }, "version": { - "id": 7113, - "name": "Manistee" + "id": 7204, + "name": "5.0" }, - "certificationDate": "2021-11-05", + "certificationDate": "2017-12-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -48786,34 +65163,34 @@ "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 25, @@ -48821,9 +65198,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 35, @@ -48831,112 +65208,267 @@ "title": "End-User Device Encryption" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", + "softwareProducts": [ + { + "id": 11051, + "chplProductNumber": "15.04.04.3129.Smil.02.00.0.221207", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2130, + "name": "SmileCDR" + }, + "product": { + "id": 3660, + "name": "Smile CDR" + }, + "version": { + "id": 8637, + "name": "2022.11.PRE-35" + }, + "certificationDate": "2022-12-07", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://cms.smilecdr.com/fhir-request/api-docs" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.myqone.com" + "value": "https://cms.smilecdr.com/fhir-request/api-docs" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11368, + "chplProductNumber": "15.04.04.3129.Smil.03.01.0.231117", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2130, + "name": "SmileCDR" + }, + "product": { + "id": 3660, + "name": "Smile CDR" + }, + "version": { + "id": 8879, + "name": "2023" + }, + "certificationDate": "2023-11-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://cms.smilecdr.com/fhir-request/api-docs" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", + "listSourceURL": "https://github.com/cerner/ignite-endpoints/blob/main/soarian_patient_r4_endpoints.json", "softwareProducts": [ { - "id": 10903, - "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", + "id": 10604, + "chplProductNumber": "15.04.04.1221.Soar.15.01.1.210331", "edition": { "id": 3, "name": "2015" @@ -48946,67 +65478,62 @@ "name": "" }, "developer": { - "id": 1929, - "name": "Quest Diagnostics Incorporated" + "id": 222, + "name": "Cerner Corporation" }, "product": { - "id": 2787, - "name": "Quanum EHR" + "id": 2783, + "name": "Soarian Clinicals" }, "version": { - "id": 8501, - "name": "2021" + "id": 7020, + "name": "2015" }, - "certificationDate": "2022-05-24", + "certificationDate": "2021-03-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -49014,59 +65541,59 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 12, @@ -49074,79 +65601,94 @@ "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -49154,17 +65696,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://fhir.cerner.com/soarian/overview/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://fhir.cerner.com/soarian/overview/" }, { "criterion": { @@ -49172,7 +65714,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://fhir.cerner.com/soarian/overview/" } ], "acb": "Drummond Group" @@ -49180,11 +65722,11 @@ ] }, { - "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", + "listSourceURL": "https://fhir.solidpractice.com/.well-known/smart-configuration", "softwareProducts": [ { - "id": 10253, - "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", + "id": 10763, + "chplProductNumber": "15.05.05.3095.SOLP.01.00.1.211227", "edition": { "id": 3, "name": "2015" @@ -49194,47 +65736,47 @@ "name": "" }, "developer": { - "id": 1913, - "name": "Radysans, Inc" + "id": 2096, + "name": "SolidPractice Technologies, LLC" }, "product": { - "id": 3415, - "name": "Radysans EHR" + "id": 3597, + "name": "SolidPractice" }, "version": { - "id": 7987, - "name": "5.0" + "id": 8418, + "name": "2.0" }, - "certificationDate": "2019-12-31", + "certificationDate": "2021-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 4, @@ -49242,19 +65784,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 36, @@ -49262,187 +65799,174 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "title": "Encrypt Authentication Credentials" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Application Access - All Data Request" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://solidpractice.com/cost-limitation.php" }, { "criterion": { @@ -49450,19 +65974,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://solidpractice.com/cost-limitation.php" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://solidpractice.com/cost-limitation.php" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", + "listSourceURL": "https://fhir.practicegateway.net/smart", "softwareProducts": [ { - "id": 11024, - "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", + "id": 11421, + "chplProductNumber": "15.04.04.2355.Soph.10.02.1.231222", "edition": { "id": 3, "name": "2015" @@ -49472,92 +66004,52 @@ "name": "" }, "developer": { - "id": 1991, - "name": "ReLi Med Solutions, LLC" + "id": 1356, + "name": "Sophrona Solutions, Inc." }, "product": { - "id": 3422, - "name": "ReLiMed EMR" + "id": 2774, + "name": "Sophrona e2015 Portal Technology" }, "version": { - "id": 8615, - "name": "Version 7.3" + "id": 8930, + "name": "Version R10.11" }, - "certificationDate": "2022-11-18", + "certificationDate": "2023-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -49565,84 +66057,44 @@ "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -49650,39 +66102,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -49690,17 +66122,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://api-docs.practicegateway.net" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://api-docs.practicegateway.net" }, { "criterion": { @@ -49708,7 +66140,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://api-docs.practicegateway.net" } ], "acb": "Drummond Group" @@ -49716,11 +66148,11 @@ ] }, { - "listSourceURL": "https://www.ihs.gov/cis/", + "listSourceURL": "https://www.correctek.com/cost-disclosure-and-transparency/", "softwareProducts": [ { - "id": 10848, - "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", + "id": 10274, + "chplProductNumber": "15.05.05.1292.CORT.01.00.1.200114", "edition": { "id": 3, "name": "2015" @@ -49730,102 +66162,87 @@ "name": "" }, "developer": { - "id": 674, - "name": "Indian Health Service" + "id": 293, + "name": "CorrecTek" }, "product": { - "id": 1033, - "name": "Resource and Patient Management System Electronic Health Record" + "id": 2618, + "name": "Spark" }, "version": { - "id": 8380, - "name": "BCER v6.1" + "id": 6179, + "name": "7.1" }, - "certificationDate": "2022-03-02", + "certificationDate": "2020-01-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -49833,29 +66250,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -49868,14 +66285,14 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 51, @@ -49883,29 +66300,29 @@ "title": "Automated Measure Calculation" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 54, @@ -49913,54 +66330,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -49968,9 +66355,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, { "criterion": { @@ -49978,15 +66365,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.ihs.gov/cis/" + "value": "https://www.correctek.com/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -49994,11 +66381,11 @@ ] }, { - "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", + "listSourceURL": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-fhir-base-urls.csv", "softwareProducts": [ { - "id": 9923, - "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", + "id": 10778, + "chplProductNumber": "15.05.05.3097.STRQ.01.00.1.220105", "edition": { "id": 3, "name": "2015" @@ -50008,167 +66395,167 @@ "name": "" }, "developer": { - "id": 592, - "name": "Health Innovation Technologies, Inc." + "id": 2098, + "name": "Strateq Health, Inc." }, "product": { - "id": 3423, - "name": "RevolutionEHR" + "id": 3603, + "name": "StrateqEHR" }, "version": { - "id": 7694, - "name": "7" + "id": 8426, + "name": "5" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-01-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -50176,29 +66563,19 @@ "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -50206,37 +66583,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", + "listSourceURL": "https://patientportal.streamlinemd.com/FHIRReg/Practice%20Service%20based%20URL%20List.csv", "softwareProducts": [ { - "id": 10770, - "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", + "id": 9974, + "chplProductNumber": "15.04.04.2383.Stre.15.00.1.190417", "edition": { "id": 3, "name": "2015" @@ -50246,27 +66623,52 @@ "name": "" }, "developer": { - "id": 1846, - "name": "Royal Health, Inc." + "id": 1384, + "name": "StreamlineMD, LLC" }, "product": { - "id": 3424, - "name": "Royal Solutions" + "id": 2228, + "name": "StreamlineMD EHR" }, "version": { - "id": 8424, - "name": "5" + "id": 7742, + "name": "15.0" }, - "certificationDate": "2021-12-29", + "certificationDate": "2019-04-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -50274,29 +66676,34 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -50304,155 +66711,155 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "value": "https://patientportal.streamlinemd.com/FHIRAPI" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "value": "https://patientportal.streamlinemd.com/FHIRAPI" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "value": "https://patientportal.streamlinemd.com/FHIRAPI" } ], "acb": "Drummond Group" @@ -50460,11 +66867,11 @@ ] }, { - "listSourceURL": "https://dataapi.sequelmed.com", + "listSourceURL": "https://webservices2.systemedx.com/xnet/api/fhir", "softwareProducts": [ { - "id": 11143, - "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", + "id": 11075, + "chplProductNumber": "15.04.04.2857.Syst.22.01.1.221215", "edition": { "id": 3, "name": "2015" @@ -50474,77 +66881,67 @@ "name": "" }, "developer": { - "id": 1847, - "name": "Sequel Systems, Inc." + "id": 1858, + "name": "Systemedx Inc" }, "product": { - "id": 2126, - "name": "SequelMed EHR" + "id": 2918, + "name": "Systemedx Clinical Navigator" }, "version": { - "id": 7973, - "name": "V12" + "id": 8657, + "name": "2022.12" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-12-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 9, @@ -50552,14 +66949,19 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -50567,9 +66969,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -50577,94 +66994,99 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 37, @@ -50672,9 +67094,14 @@ "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -50682,25 +67109,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://www.systemedx.com/API/APIIntro.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://www.systemedx.com/API/APIIntro.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://www.systemedx.com/API/APIIntro.html" } ], "acb": "Drummond Group" @@ -50708,11 +67135,11 @@ ] }, { - "listSourceURL": "https://genensys.com/api/", + "listSourceURL": "https://www.nemohealth.com/fhir-api/", "softwareProducts": [ { - "id": 10317, - "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", + "id": 11179, + "chplProductNumber": "15.04.04.3003.TRAK.04.04.1.221229", "edition": { "id": 3, "name": "2015" @@ -50722,42 +67149,32 @@ "name": "" }, "developer": { - "id": 524, - "name": "Genensys LLC" + "id": 2004, + "name": "Modernizing Medicine Podiatry Systems, Inc." }, "product": { - "id": 805, - "name": "Simplify EMR" + "id": 3646, + "name": "TRAKnet" }, "version": { - "id": 8046, - "name": "4.0" + "id": 8736, + "name": "4" }, - "certificationDate": "2020-02-25", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -50765,24 +67182,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 52, @@ -50790,79 +67212,59 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -50870,79 +67272,79 @@ "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -50950,37 +67352,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://genensys.com/api/" + "value": "http://wiki.traknetsolutions.com/traknet-open-api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://genensys.com/api/" + "value": "http://wiki.traknetsolutions.com/traknet-open-api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://genensys.com/api/" + "value": "http://wiki.traknetsolutions.com/traknet-open-api" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "listSourceURL": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/", "softwareProducts": [ { - "id": 10987, - "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", + "id": 10227, + "chplProductNumber": "15.05.05.3049.UL15.01.00.1.191226", "edition": { "id": 3, "name": "2015" @@ -50990,72 +67392,52 @@ "name": "" }, "developer": { - "id": 1856, - "name": "Streamline Healthcare Solutions" + "id": 2050, + "name": "Ulrich Medical Concepts" }, "product": { - "id": 2222, - "name": "SmartCare" + "id": 3093, + "name": "Team Chart Concept" }, "version": { - "id": 8580, - "name": "R6" + "id": 7963, + "name": "7.1" }, - "certificationDate": "2022-09-15", + "certificationDate": "2019-12-26", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -51063,19 +67445,14 @@ "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 35, @@ -51083,94 +67460,74 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, @@ -51183,77 +67540,82 @@ "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", + "softwareProducts": [ { - "id": 9303, - "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", + "id": 11090, + "chplProductNumber": "15.04.04.2777.Tebr.05.02.1.221219", "edition": { "id": 3, "name": "2015" @@ -51263,42 +67625,27 @@ "name": "" }, "developer": { - "id": 1856, - "name": "Streamline Healthcare Solutions" + "id": 1778, + "name": "Tebra Technologies, Inc." }, "product": { - "id": 2222, - "name": "SmartCare" + "id": 3745, + "name": "Tebra EHR (Kareo)" }, "version": { - "id": 7204, - "name": "5.0" + "id": 8668, + "name": "Version 5.0" }, - "certificationDate": "2017-12-31", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -51306,14 +67653,9 @@ "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -51321,49 +67663,34 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -51371,79 +67698,74 @@ "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -51451,75 +67773,70 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + "value": "https://www.kareo.com/macra-mips" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.kareo.com/macra-mips" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.kareo.com/macra-mips" } ], "acb": "Drummond Group" @@ -51527,11 +67844,11 @@ ] }, { - "listSourceURL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", + "listSourceURL": "https://devportal.techcareehr.com/Help/", "softwareProducts": [ { - "id": 11051, - "chplProductNumber": "15.04.04.3129.Smil.02.00.0.221207", + "id": 10207, + "chplProductNumber": "15.04.04.2813.Tech.05.00.0.191208", "edition": { "id": 3, "name": "2015" @@ -51541,37 +67858,107 @@ "name": "" }, "developer": { - "id": 2130, - "name": "SmileCDR" + "id": 1814, + "name": "NaphCare, Inc." }, "product": { - "id": 3660, - "name": "Smile CDR" + "id": 3502, + "name": "TechCare®" }, "version": { - "id": 8637, - "name": "2022.11.PRE-35" + "id": 7944, + "name": "Version 5.0" }, - "certificationDate": "2022-12-07", + "certificationDate": "2019-12-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, @@ -51579,39 +67966,82 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://devportal.techcareehr.com/Terms" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://devportal.techcareehr.com/Terms" }, { "criterion": { @@ -51619,7 +68049,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://devportal.techcareehr.com/Terms" } ], "acb": "Drummond Group" @@ -51627,11 +68057,11 @@ ] }, { - "listSourceURL": "https://github.com/cerner/ignite-endpoints/blob/main/soarian_patient_r4_endpoints.json", + "listSourceURL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", "softwareProducts": [ { - "id": 10604, - "chplProductNumber": "15.04.04.1221.Soar.15.01.1.210331", + "id": 10799, + "chplProductNumber": "15.02.05.2936.TENZ.01.01.1.220120", "edition": { "id": 3, "name": "2015" @@ -51641,112 +68071,107 @@ "name": "" }, "developer": { - "id": 222, - "name": "Cerner Corporation" + "id": 1937, + "name": "Tenzing Medical LLC" }, "product": { - "id": 2783, - "name": "Soarian Clinicals" + "id": 3447, + "name": "Tenzing VistA" }, "version": { - "id": 7020, - "name": "2015" + "id": 7927, + "name": "2.0" }, - "certificationDate": "2021-03-31", + "certificationDate": "2022-01-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -51754,44 +68179,64 @@ "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, @@ -51801,90 +68246,120 @@ { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.cerner.com/soarian/overview/" + "value": "https://tenzing.docs.apiary.io/#" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.cerner.com/soarian/overview/" + "value": "https://tenzing.docs.apiary.io/#" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.cerner.com/soarian/overview/" + "value": "https://tenzing.docs.apiary.io/#" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.solidpractice.com/.well-known/smart-configuration", + "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html", "softwareProducts": [ { - "id": 10763, - "chplProductNumber": "15.05.05.3095.SOLP.01.00.1.211227", + "id": 10076, + "chplProductNumber": "15.05.05.3103.TRIC.01.00.1.190820", "edition": { "id": 3, "name": "2015" @@ -51894,32 +68369,137 @@ "name": "" }, "developer": { - "id": 2096, - "name": "SolidPractice Technologies, LLC" + "id": 2104, + "name": "TriMed Technologies" }, "product": { - "id": 3597, - "name": "SolidPractice" + "id": 3099, + "name": "TriMed Complete" }, "version": { - "id": 8418, - "name": "2.0" + "id": 7825, + "name": "1" }, - "certificationDate": "2021-12-27", + "certificationDate": "2019-08-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 33, @@ -51927,44 +68507,39 @@ "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 12, @@ -51972,69 +68547,54 @@ "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -52042,54 +68602,49 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -52097,50 +68652,40 @@ "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://solidpractice.com/cost-limitation.php" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://solidpractice.com/cost-limitation.php" + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://solidpractice.com/cost-limitation.php" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" } ], "acb": "SLI Compliance" @@ -52148,11 +68693,11 @@ ] }, { - "listSourceURL": "https://www.correctek.com/cost-disclosure-and-transparency/", + "listSourceURL": "https://usmon.com/USMON-FHIRServerURLs.csv", "softwareProducts": [ { - "id": 10274, - "chplProductNumber": "15.05.05.1292.CORT.01.00.1.200114", + "id": 11096, + "chplProductNumber": "15.99.09.3011.US01.13.01.0.221220", "edition": { "id": 3, "name": "2015" @@ -52162,117 +68707,37 @@ "name": "" }, "developer": { - "id": 293, - "name": "CorrecTek" + "id": 2012, + "name": "US Monitoring, Inc." }, "product": { - "id": 2618, - "name": "Spark" + "id": 2845, + "name": "USMON Database" }, "version": { - "id": 6179, - "name": "7.1" + "id": 7190, + "name": "13" }, - "certificationDate": "2020-01-14", + "certificationDate": "2022-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 32, @@ -52285,69 +68750,54 @@ "title": "Quality Management System" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -52355,37 +68805,21 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.correctek.com/cost-disclosure-and-transparency/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.correctek.com/cost-disclosure-and-transparency/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.correctek.com/cost-disclosure-and-transparency/" + "value": "https://usmon.com/USMON-SmartOnFHIR-API.pdf" } ], - "acb": "SLI Compliance" + "acb": "Leidos" } ] }, { - "listSourceURL": "https://patientportal.streamlinemd.com/FHIRReg/Practice%20Service%20based%20URL%20List.csv", + "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", "softwareProducts": [ { - "id": 9974, - "chplProductNumber": "15.04.04.2383.Stre.15.00.1.190417", + "id": 10824, + "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", "edition": { "id": 3, "name": "2015" @@ -52395,117 +68829,97 @@ "name": "" }, "developer": { - "id": 1384, - "name": "StreamlineMD, LLC" + "id": 2085, + "name": "Landmark Health, LLC" }, "product": { - "id": 2228, - "name": "StreamlineMD EHR" + "id": 3574, + "name": "Ubiquity" }, "version": { - "id": 7742, - "name": "15.0" + "id": 8445, + "name": "1.2" }, - "certificationDate": "2019-04-17", + "certificationDate": "2022-02-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, @@ -52513,39 +68927,34 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -52555,17 +68964,7 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -52573,65 +68972,50 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], "acb": "Drummond Group" @@ -52639,11 +69023,11 @@ ] }, { - "listSourceURL": "https://webservices2.systemedx.com/xnet/api/fhir", + "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", "softwareProducts": [ { - "id": 11075, - "chplProductNumber": "15.04.04.2857.Syst.22.01.1.221215", + "id": 9333, + "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", "edition": { "id": 3, "name": "2015" @@ -52653,18 +69037,18 @@ "name": "" }, "developer": { - "id": 1858, - "name": "Systemedx Inc" + "id": 1479, + "name": "Universal EHR, Inc." }, "product": { - "id": 2918, - "name": "Systemedx Clinical Navigator" + "id": 3459, + "name": "Universal EHR" }, "version": { - "id": 8657, - "name": "2022.12" + "id": 7231, + "name": "2.0.0" }, - "certificationDate": "2022-12-15", + "certificationDate": "2018-03-12", "certificationStatus": { "id": 1, "name": "Active" @@ -52673,87 +69057,72 @@ { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "title": "Auditable Events and Tamper-Resistance" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -52763,92 +69132,82 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -52856,9 +69215,19 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -52866,14 +69235,19 @@ "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -52881,17 +69255,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" }, { "criterion": { @@ -52899,7 +69273,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -52907,11 +69281,11 @@ ] }, { - "listSourceURL": "https://www.nemohealth.com/fhir-api/", + "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11179, - "chplProductNumber": "15.04.04.3003.TRAK.04.04.1.221229", + "id": 11069, + "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", "edition": { "id": 3, "name": "2015" @@ -52921,62 +69295,67 @@ "name": "" }, "developer": { - "id": 2004, - "name": "Modernizing Medicine Podiatry Systems, Inc." + "id": 1515, + "name": "VisionWeb" }, "product": { - "id": 3646, - "name": "TRAKnet" + "id": 2414, + "name": "Uprise" }, "version": { - "id": 8736, - "name": "4" + "id": 7534, + "name": "3.1" }, - "certificationDate": "2022-12-29", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 25, @@ -52984,14 +69363,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 52, @@ -52999,39 +69378,59 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, @@ -53039,14 +69438,14 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -53054,49 +69453,39 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 4, @@ -53104,32 +69493,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -53137,7 +69518,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -53145,11 +69534,11 @@ ] }, { - "listSourceURL": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/", + "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", "softwareProducts": [ { - "id": 10227, - "chplProductNumber": "15.05.05.3049.UL15.01.00.1.191226", + "id": 9887, + "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", "edition": { "id": 3, "name": "2015" @@ -53159,27 +69548,27 @@ "name": "" }, "developer": { - "id": 2050, - "name": "Ulrich Medical Concepts" + "id": 1876, + "name": "Vohra Wound Physicians Management, LLC" }, "product": { - "id": 3093, - "name": "Team Chart Concept" + "id": 3465, + "name": "VHS Medical Documentation \u0026 Coding" }, "version": { - "id": 7963, - "name": "7.1" + "id": 7660, + "name": "3.5" }, - "certificationDate": "2019-12-26", + "certificationDate": "2018-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -53187,19 +69576,39 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 54, @@ -53207,19 +69616,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 34, @@ -53227,14 +69636,9 @@ "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 29, @@ -53242,9 +69646,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -53252,34 +69656,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 8, @@ -53287,64 +69686,74 @@ "title": "Medication Allergy List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -53352,9 +69761,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { @@ -53362,27 +69771,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://devportal.techcareehr.com/Help/", + "listSourceURL": "https://fhir.allegiancemd.io/R4/", "softwareProducts": [ { - "id": 10207, - "chplProductNumber": "15.04.04.2813.Tech.05.00.0.191208", + "id": 10794, + "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", "edition": { "id": 3, "name": "2015" @@ -53392,32 +69801,27 @@ "name": "" }, "developer": { - "id": 1814, - "name": "NaphCare, Inc." + "id": 1673, + "name": "AllegianceMD Software, Inc." }, "product": { - "id": 3502, - "name": "TechCare®" + "id": 3463, + "name": "Veracity" }, "version": { - "id": 7944, - "name": "Version 5.0" + "id": 7899, + "name": "9.1" }, - "certificationDate": "2019-12-08", + "certificationDate": "2022-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -53425,24 +69829,24 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -53450,19 +69854,9 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -53470,9 +69864,9 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -53482,42 +69876,62 @@ { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -53525,9 +69939,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -53535,29 +69974,49 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -53565,9 +70024,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://devportal.techcareehr.com/Terms" + "value": "https://allegiancemd.com/developer-guide-api-help/" }, { "criterion": { @@ -53575,27 +70034,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://devportal.techcareehr.com/Terms" + "value": "https://allegiancemd.com/developer-guide-api-help/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://devportal.techcareehr.com/Terms" + "value": "https://allegiancemd.com/fhir-api-documentation" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", + "listSourceURL": "https://open.platform.veradigm.com/fhirendpoints", "softwareProducts": [ { - "id": 10799, - "chplProductNumber": "15.02.05.2936.TENZ.01.01.1.220120", + "id": 11009, + "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", "edition": { "id": 3, "name": "2015" @@ -53605,42 +70064,27 @@ "name": "" }, "developer": { - "id": 1937, - "name": "Tenzing Medical LLC" + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3447, - "name": "Tenzing VistA" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7927, - "name": "2.0" + "id": 8603, + "name": "22.2" }, - "certificationDate": "2022-01-20", + "certificationDate": "2022-10-25", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 34, @@ -53648,124 +70092,124 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -53773,39 +70217,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 37, @@ -53813,67 +70262,72 @@ "title": "Trusted Connection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://tenzing.docs.apiary.io/#" + "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://tenzingmedical.com/termsofuse" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -53881,19 +70335,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://tenzingmedical.com/termsofuse" + "value": "https://developer.veradigm.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10076, - "chplProductNumber": "15.05.05.3103.TRIC.01.00.1.190820", + "id": 11289, + "chplProductNumber": "15.04.04.2891.Alls.VE.09.0.230531", "edition": { "id": 3, "name": "2015" @@ -53903,52 +70352,27 @@ "name": "" }, "developer": { - "id": 2104, - "name": "TriMed Technologies" + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3099, - "name": "TriMed Complete" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7825, - "name": "1" + "id": 8806, + "name": "23.1" }, - "certificationDate": "2019-08-20", + "certificationDate": "2023-05-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 37, @@ -53956,164 +70380,149 @@ "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 12, @@ -54121,24 +70530,19 @@ "title": "Family Health History" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -54146,54 +70550,54 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -54201,37 +70605,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" + "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://developer.veradigm.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10824, - "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", + "id": 11379, + "chplProductNumber": "15.04.04.2891.Vera.23.10.0.231128", "edition": { "id": 3, "name": "2015" @@ -54241,62 +70640,162 @@ "name": "" }, "developer": { - "id": 2085, - "name": "Landmark Health, LLC" + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3574, - "name": "Ubiquity" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 8445, - "name": "1.2" + "id": 8890, + "name": "23.3" }, - "certificationDate": "2022-02-04", + "certificationDate": "2023-11-28", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -54304,99 +70803,89 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -54404,17 +70893,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://developer.veradigm.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -54422,19 +70911,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", - "softwareProducts": [ + }, { - "id": 9333, - "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", + "id": 11380, + "chplProductNumber": "15.04.04.2891.Vera.23.11.0.231128", "edition": { "id": 3, "name": "2015" @@ -54444,27 +70928,32 @@ "name": "" }, "developer": { - "id": 1479, - "name": "Universal EHR, Inc." + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3459, - "name": "Universal EHR" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7231, - "name": "2.0.0" + "id": 8891, + "name": "23.4" }, - "certificationDate": "2018-03-12", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -54472,34 +70961,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 43, @@ -54507,180 +70991,215 @@ "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://developer.veradigm.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -54688,11 +71207,11 @@ ] }, { - "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", + "listSourceURL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", "softwareProducts": [ { - "id": 11069, - "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", + "id": 10299, + "chplProductNumber": "15.07.04.2503.Vers.09.01.1.200210", "edition": { "id": 3, "name": "2015" @@ -54702,27 +71221,37 @@ "name": "" }, "developer": { - "id": 1515, - "name": "VisionWeb" + "id": 1504, + "name": "VersaSuite" }, "product": { - "id": 2414, - "name": "Uprise" + "id": 2401, + "name": "VersaSuite" }, "version": { - "id": 7534, - "name": "3.1" + "id": 7948, + "name": "9.0" }, - "certificationDate": "2022-12-13", + "certificationDate": "2020-02-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 4, @@ -54730,49 +71259,74 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -54780,29 +71334,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -54810,14 +71374,9 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -54825,54 +71384,54 @@ "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -54880,44 +71439,52 @@ "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" }, { "criterion": { @@ -54925,15 +71492,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -54941,11 +71500,11 @@ ] }, { - "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", + "listSourceURL": "https://www.vision-works.com/cert/FHIR", "softwareProducts": [ { - "id": 9887, - "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", + "id": 10954, + "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", "edition": { "id": 3, "name": "2015" @@ -54955,238 +71514,208 @@ "name": "" }, "developer": { - "id": 1876, - "name": "Vohra Wound Physicians Management, LLC" + "id": 1940, + "name": "Vision Works, Inc." }, "product": { - "id": 3465, - "name": "VHS Medical Documentation \u0026 Coding" + "id": 2666, + "name": "Vision Works" }, "version": { - "id": 7660, - "name": "3.5" + "id": 7382, + "name": "10.0" }, - "certificationDate": "2018-12-21", + "certificationDate": "2022-08-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" } ], "acb": "Drummond Group" @@ -55194,11 +71723,11 @@ ] }, { - "listSourceURL": "https://fhir.allegiancemd.io/R4/", + "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10794, - "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", + "id": 9588, + "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", "edition": { "id": 3, "name": "2015" @@ -55208,42 +71737,37 @@ "name": "" }, "developer": { - "id": 1673, - "name": "AllegianceMD Software, Inc." + "id": 1527, + "name": "WEBeDoctor, Inc." }, "product": { - "id": 3463, - "name": "Veracity" + "id": 2433, + "name": "WEBeDoctor Physician Office" }, "version": { - "id": 7899, - "name": "9.1" + "id": 7410, + "name": "V6.0" }, - "certificationDate": "2022-01-17", + "certificationDate": "2018-05-08", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 21, @@ -55251,94 +71775,104 @@ "title": "Data Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 29, @@ -55346,59 +71880,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -55406,62 +71935,57 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://allegiancemd.com/fhir-api-documentation" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://allegiancemd.com/developer-guide-api-help/" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://allegiancemd.com/developer-guide-api-help/" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://www.vision-works.com/cert/FHIR", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10954, - "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", + "id": 11388, + "chplProductNumber": "15.99.09.2526.WEBe.06.01.1.231204", "edition": { "id": 3, "name": "2015" @@ -55471,42 +71995,32 @@ "name": "" }, "developer": { - "id": 1940, - "name": "Vision Works, Inc." + "id": 1527, + "name": "WEBeDoctor, Inc." }, "product": { - "id": 2666, - "name": "Vision Works" + "id": 2433, + "name": "WEBeDoctor Physician Office" }, "version": { - "id": 7382, - "name": "10.0" + "id": 4393, + "name": "6.0" }, - "certificationDate": "2022-08-08", + "certificationDate": "2023-12-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 53, @@ -55514,49 +72028,74 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -55564,44 +72103,44 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 52, @@ -55609,9 +72148,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -55619,34 +72168,44 @@ "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -55656,35 +72215,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], - "acb": "Drummond Group" + "acb": "Leidos" } ] }, { - "listSourceURL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", + "listSourceURL": "https://api.fhir.wrs.cloud/docs", "softwareProducts": [ { - "id": 11129, - "chplProductNumber": "15.04.04.2425.Visu.13.02.1.221227", + "id": 10750, + "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", "edition": { "id": 3, "name": "2015" @@ -55694,52 +72253,62 @@ "name": "" }, "developer": { - "id": 1426, - "name": "The Echo Group" + "id": 1528, + "name": "WRS Health" }, "product": { - "id": 2857, - "name": "Visual Health Record" + "id": 2434, + "name": "WRS Health Web EHR and Practice Management System" }, "version": { - "id": 8699, - "name": "v13" + "id": 7587, + "name": "7.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2021-12-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 12, @@ -55747,39 +72316,64 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -55787,14 +72381,69 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 37, @@ -55802,49 +72451,54 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" } ], "apiDocumentation": [ @@ -55854,35 +72508,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" + "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" + "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" + "value": "https://api.fhir.wrs.cloud/docs" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", + "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", "softwareProducts": [ { - "id": 9588, - "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", + "id": 11022, + "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", "edition": { "id": 3, "name": "2015" @@ -55892,132 +72546,132 @@ "name": "" }, "developer": { - "id": 1527, - "name": "WEBeDoctor, Inc." + "id": 933, + "name": "Medical Informatics Engineering" }, "product": { - "id": 2433, - "name": "WEBeDoctor Physician Office" + "id": 1480, + "name": "WebChart EHR" }, "version": { - "id": 7410, - "name": "V6.0" + "id": 8613, + "name": "8.4" }, - "certificationDate": "2018-05-08", + "certificationDate": "2022-11-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 54, @@ -56025,115 +72679,140 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" } ], "acb": "Drummond Group" @@ -56141,11 +72820,11 @@ ] }, { - "listSourceURL": "https://api.fhir.wrs.cloud/docs", + "listSourceURL": "https://fhir.qa.welligent.com/", "softwareProducts": [ { - "id": 10750, - "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", + "id": 10811, + "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", "edition": { "id": 3, "name": "2015" @@ -56155,32 +72834,67 @@ "name": "" }, "developer": { - "id": 1528, - "name": "WRS Health" + "id": 1537, + "name": "Welligent, Part of the ContinuumCloud" }, "product": { - "id": 2434, - "name": "WRS Health Web EHR and Practice Management System" + "id": 2445, + "name": "Welligent" }, "version": { - "id": 7587, - "name": "7.0" + "id": 8034, + "name": "8MU3" }, - "certificationDate": "2021-12-14", + "certificationDate": "2022-02-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -56188,34 +72902,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -56223,59 +72947,142 @@ "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://zoobooksystems.com/api-documentation/", + "softwareProducts": [ + { + "id": 9268, + "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2009, + "name": "Zoobook Systems LLC" + }, + "product": { + "id": 2841, + "name": "Zoobook EHR" + }, + "version": { + "id": 7175, + "name": "2.0" + }, + "certificationDate": "2017-12-31", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -56283,39 +73090,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -56323,74 +73130,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 14, @@ -56398,9 +73195,14 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -56410,35 +73212,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://zoobooksystems.com/disclosures/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://zoobooksystems.com/api-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.fhir.wrs.cloud/docs" + "value": "https://zoobooksystems.com/api-documentation/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", + "listSourceURL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", "softwareProducts": [ { - "id": 11022, - "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", + "id": 11259, + "chplProductNumber": "15.04.04.2880.Athe.AM.09.1.230317", "edition": { "id": 3, "name": "2015" @@ -56448,47 +73250,42 @@ "name": "" }, "developer": { - "id": 933, - "name": "Medical Informatics Engineering" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 1480, - "name": "WebChart EHR" + "id": 3135, + "name": "athenaClinicals" }, "version": { - "id": 8613, - "name": "8.4" + "id": 8781, + "name": "23" }, - "certificationDate": "2022-11-17", + "certificationDate": "2023-03-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -56496,34 +73293,34 @@ "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -56531,59 +73328,49 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 14, @@ -56591,137 +73378,152 @@ "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://mu3test.welligent.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 10811, - "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", + "id": 10950, + "chplProductNumber": "15.04.04.2880.Athe.AM.08.1.220726", "edition": { "id": 3, "name": "2015" @@ -56731,37 +73533,132 @@ "name": "" }, "developer": { - "id": 1537, - "name": "Welligent, Part of the ContinuumCloud" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 2445, - "name": "Welligent" + "id": 3135, + "name": "athenaClinicals" }, "version": { - "id": 8034, - "name": "8MU3" + "id": 8545, + "name": "22" }, - "certificationDate": "2022-02-01", + "certificationDate": "2022-07-26", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 59, @@ -56769,157 +73666,147 @@ "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mu3test.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://mu3test.welligent.com/dhit/109/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mu3test.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://sfp-nhfhirdevproxy.azurewebsites.net/fhir/metadata", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10234, - "chplProductNumber": "15.04.04.2272.Woun.07.01.1.191224", + "id": 11260, + "chplProductNumber": "15.04.04.2880.Athe.IN.09.1.230317", "edition": { "id": 3, "name": "2015" @@ -56929,62 +73816,42 @@ "name": "" }, "developer": { - "id": 1273, - "name": "RestorixHealth" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 2066, - "name": "WoundDocs" + "id": 3137, + "name": "athenaClinicals for Hospitals and Health Systems" }, "version": { - "id": 7970, - "name": "7.0" + "id": 8782, + "name": "23" }, - "certificationDate": "2019-12-24", + "certificationDate": "2023-03-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 2, @@ -56992,159 +73859,154 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -57152,62 +74014,62 @@ "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://nethealthapis-integration.nhsinc.com/index.html" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://zoobooksystems.com/api-documentation/", - "softwareProducts": [ + }, { - "id": 9268, - "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", + "id": 10951, + "chplProductNumber": "15.04.04.2880.Athe.IN.08.1.220726", "edition": { "id": 3, "name": "2015" @@ -57217,47 +74079,87 @@ "name": "" }, "developer": { - "id": 2009, - "name": "Zoobook Systems LLC" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 2841, - "name": "Zoobook EHR" + "id": 3137, + "name": "athenaClinicals for Hospitals and Health Systems" }, "version": { - "id": 7175, - "name": "2.0" + "id": 8546, + "name": "22" }, - "certificationDate": "2017-12-31", + "certificationDate": "2022-07-26", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -57267,17 +74169,22 @@ { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -57285,74 +74192,79 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -57360,34 +74272,34 @@ "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -57395,25 +74307,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://zoobooksystems.com/disclosures/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -57421,11 +74333,11 @@ ] }, { - "listSourceURL": "https://docs.athenahealth.com/api/base-fhir-urls", + "listSourceURL": "https://mydata.athenahealth.com/home", "softwareProducts": [ { - "id": 11259, - "chplProductNumber": "15.04.04.2880.Athe.AM.09.1.230317", + "id": 10916, + "chplProductNumber": "15.04.04.2880.flow.22.05.1.220621", "edition": { "id": 3, "name": "2015" @@ -57439,128 +74351,128 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3135, - "name": "athenaClinicals" + "id": 3627, + "name": "athenaFlow" }, "version": { - "id": 8781, - "name": "23" + "id": 8513, + "name": "v22" }, - "certificationDate": "2023-03-17", + "certificationDate": "2022-06-21", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -57568,147 +74480,132 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" }, { - "id": 10950, - "chplProductNumber": "15.04.04.2880.Athe.AM.08.1.220726", + "id": 11270, + "chplProductNumber": "15.04.04.2880.flow.23.06.1.230403", "edition": { "id": 3, "name": "2015" @@ -57722,153 +74619,118 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3135, - "name": "athenaClinicals" + "id": 3627, + "name": "athenaFlow" }, "version": { - "id": 8545, - "name": "22" + "id": 8787, + "name": "v23" }, - "certificationDate": "2022-07-26", + "certificationDate": "2023-04-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 35, @@ -57876,122 +74738,147 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" }, { - "id": 11260, - "chplProductNumber": "15.04.04.2880.Athe.IN.09.1.230317", + "id": 10917, + "chplProductNumber": "15.04.04.2880.prac.22.04.1.220621", "edition": { "id": 3, "name": "2015" @@ -58005,48 +74892,28 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3137, - "name": "athenaClinicals for Hospitals and Health Systems" + "id": 3628, + "name": "athenaPractice" }, "version": { - "id": 8782, - "name": "23" + "id": 8514, + "name": "v22" }, - "certificationDate": "2023-03-17", + "certificationDate": "2022-06-21", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -58054,79 +74921,79 @@ "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -58134,74 +75001,89 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, @@ -58209,52 +75091,67 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" }, { - "id": 10951, - "chplProductNumber": "15.04.04.2880.Athe.IN.08.1.220726", + "id": 11271, + "chplProductNumber": "15.04.04.2880.prac.23.05.1.230403", "edition": { "id": 3, "name": "2015" @@ -58268,83 +75165,103 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3137, - "name": "athenaClinicals for Hospitals and Health Systems" + "id": 3628, + "name": "athenaPractice" }, "version": { - "id": 8546, - "name": "22" + "id": 8788, + "name": "v23" }, - "certificationDate": "2022-07-26", + "certificationDate": "2023-04-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 43, @@ -58352,54 +75269,69 @@ "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -58407,39 +75339,9 @@ "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -58447,44 +75349,49 @@ "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -58492,25 +75399,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -58518,11 +75425,11 @@ ] }, { - "listSourceURL": "https://mydata.athenahealth.com/home", + "listSourceURL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10916, - "chplProductNumber": "15.04.04.2880.flow.22.05.1.220621", + "id": 10910, + "chplProductNumber": "15.99.04.2897.DRCH.11.03.1.220531", "edition": { "id": 3, "name": "2015" @@ -58532,47 +75439,37 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 1898, + "name": "drchrono Inc." }, "product": { - "id": 3627, - "name": "athenaFlow" + "id": 3187, + "name": "drchrono EHR" }, "version": { - "id": 8513, - "name": "v22" + "id": 7598, + "name": "11.0" }, - "certificationDate": "2022-06-21", + "certificationDate": "2022-05-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -58580,59 +75477,49 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 12, @@ -58640,24 +75527,24 @@ "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -58665,99 +75552,109 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -58765,32 +75662,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://drchrono-fhirpresentation.everhealthsoftware.com/drchrono/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://drchrono.com/api-docs/v4/documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://drchrono.com/api-docs/v4/documentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html", + "softwareProducts": [ { - "id": 11270, - "chplProductNumber": "15.04.04.2880.flow.23.06.1.230403", + "id": 9849, + "chplProductNumber": "15.05.05.3103.TRI8.01.00.1.190111", "edition": { "id": 3, "name": "2015" @@ -58800,42 +75702,42 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 2104, + "name": "TriMed Technologies" }, "product": { - "id": 3627, - "name": "athenaFlow" + "id": 3024, + "name": "e-Medsys E.H.R." }, "version": { - "id": 8787, - "name": "v23" + "id": 7627, + "name": "8" }, - "certificationDate": "2023-04-03", + "certificationDate": "2019-01-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -58843,9 +75745,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -58853,20 +75770,25 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 4, "number": "170.315 (a)(4)", @@ -58878,49 +75800,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -58928,59 +75835,54 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, @@ -58988,34 +75890,44 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 51, @@ -59023,42 +75935,47 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://mydata.athenahealth.com/home" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://ipatientcare.com/onc-acb-certified-2015-edition/", + "softwareProducts": [ { - "id": 10917, - "chplProductNumber": "15.04.04.2880.prac.22.04.1.220621", + "id": 9371, + "chplProductNumber": "15.04.04.1146.eChi.18.01.1.180403", "edition": { "id": 3, "name": "2015" @@ -59068,127 +75985,132 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 147, + "name": "Best Practices Academy" }, "product": { - "id": 3628, - "name": "athenaPractice" + "id": 241, + "name": "eChiroEHR" }, "version": { - "id": 8514, - "name": "v22" + "id": 7262, + "name": "18.0" }, - "certificationDate": "2022-06-21", + "certificationDate": "2018-04-03", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -59196,127 +76118,124 @@ "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://mydata.athenahealth.com/home" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" }, { "criterion": { @@ -59324,14 +76243,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://fhir.eclinicalworks.com/ecwopendev/external/practiceList", + "softwareProducts": [ { - "id": 11271, - "chplProductNumber": "15.04.04.2880.prac.23.05.1.230403", + "id": 11021, + "chplProductNumber": "15.04.04.2883.eCli.12.06.1.221116", "edition": { "id": 3, "name": "2015" @@ -59341,87 +76273,32 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 1884, + "name": "eClinicalWorks, LLC" }, "product": { - "id": 3628, - "name": "athenaPractice" + "id": 3189, + "name": "eClinicalWorks" }, "version": { - "id": 8788, - "name": "v23" + "id": 8612, + "name": "Version 12.0.1" }, - "certificationDate": "2023-04-03", + "certificationDate": "2022-11-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 25, @@ -59429,34 +76306,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -59464,79 +76336,84 @@ "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 33, @@ -59544,14 +76421,39 @@ "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -59559,19 +76461,49 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -59579,37 +76511,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 10910, - "chplProductNumber": "15.99.04.2897.DRCH.11.03.1.220531", + "id": 11062, + "chplProductNumber": "15.04.04.2883.eCli.11.05.1.221212", "edition": { "id": 3, "name": "2015" @@ -59619,82 +76546,62 @@ "name": "" }, "developer": { - "id": 1898, - "name": "drchrono Inc." + "id": 1884, + "name": "eClinicalWorks, LLC" }, "product": { - "id": 3187, - "name": "drchrono EHR" + "id": 3189, + "name": "eClinicalWorks" }, "version": { - "id": 7598, - "name": "11.0" + "id": 8647, + "name": "Version 11.52.305C" }, - "certificationDate": "2022-05-31", + "certificationDate": "2022-12-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 34, @@ -59702,24 +76609,29 @@ "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 3, @@ -59727,99 +76639,109 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -59827,9 +76749,34 @@ "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -59839,35 +76786,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://drchrono.com/api-docs/v4/documentation" + "value": "https://fhir.eclinicalworks.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://drchrono.com/api-docs/v4/documentation" + "value": "https://fhir.eclinicalworks.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://drchrono.com/api-docs/v4/documentation" + "value": "https://fhir.eclinicalworks.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html", - "softwareProducts": [ + }, { - "id": 9849, - "chplProductNumber": "15.05.05.3103.TRI8.01.00.1.190111", + "id": 11299, + "chplProductNumber": "15.04.04.2883.eCli.12.07.1.230613", "edition": { "id": 3, "name": "2015" @@ -59877,138 +76819,123 @@ "name": "" }, "developer": { - "id": 2104, - "name": "TriMed Technologies" + "id": 1884, + "name": "eClinicalWorks, LLC" }, "product": { - "id": 3024, - "name": "e-Medsys E.H.R." + "id": 3189, + "name": "eClinicalWorks" }, "version": { - "id": 7627, - "name": "8" + "id": 8815, + "name": "Version 12.0.2" }, - "certificationDate": "2019-01-11", + "certificationDate": "2023-06-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 14, "number": "170.315 (a)(14)", @@ -60020,9 +76947,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 35, @@ -60030,89 +76957,99 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -60122,35 +77059,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" + "value": "https://fhir.eclinicalworks.com" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://ipatientcare.com/onc-acb-certified-2015-edition/", + "listSourceURL": "https://www.edermehr.com/sites/default/files/webform/FHIR%20Service%20URLs.pdf", "softwareProducts": [ { - "id": 9371, - "chplProductNumber": "15.04.04.1146.eChi.18.01.1.180403", + "id": 10149, + "chplProductNumber": "15.04.04.2592.eDer.28.00.1.191025", "edition": { "id": 3, "name": "2015" @@ -60160,57 +77097,72 @@ "name": "" }, "developer": { - "id": 147, - "name": "Best Practices Academy" + "id": 1593, + "name": "eDerm Systems LLC" }, "product": { - "id": 241, - "name": "eChiroEHR" + "id": 2677, + "name": "eDerm Systems" }, "version": { - "id": 7262, - "name": "18.0" + "id": 7890, + "name": "2.8.0" }, - "certificationDate": "2018-04-03", + "certificationDate": "2019-10-25", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -60223,159 +77175,69 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -60383,50 +77245,45 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" + "value": "https://www.edermehr.com/ederm-onc-certified" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" + "value": "https://www.edermehr.com/ederm-onc-certified" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" + "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -60434,11 +77291,11 @@ ] }, { - "listSourceURL": "https://fhir.eclinicalworks.com/ecwopendev", + "listSourceURL": "https://www.ehana.com/s/fhir-base-urls.csv", "softwareProducts": [ { - "id": 11021, - "chplProductNumber": "15.04.04.2883.eCli.12.06.1.221116", + "id": 10200, + "chplProductNumber": "15.04.04.2594.eHan.19.00.1.191206", "edition": { "id": 3, "name": "2015" @@ -60448,37 +77305,37 @@ "name": "" }, "developer": { - "id": 1884, - "name": "eClinicalWorks, LLC" + "id": 1595, + "name": "eHana" }, "product": { - "id": 3189, - "name": "eClinicalWorks" + "id": 2516, + "name": "eHana EHR" }, "version": { - "id": 8612, - "name": "v12.0.1" + "id": 7937, + "name": "v2019-MU" }, - "certificationDate": "2022-11-16", + "certificationDate": "2019-12-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -60491,215 +77348,200 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://fhir.eclinicalworks.com" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir.eclinicalworks.com" + "value": "https://mu2014-stage.ehana.com/apidocs" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhir.eclinicalworks.com" + "value": "https://mu2014-stage.ehana.com/apidocs" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://mu2014-stage.ehana.com/apidocs" } ], "acb": "Drummond Group" @@ -60707,11 +77549,11 @@ ] }, { - "listSourceURL": "https://fhir.eclinicalworks.com/ecwopendev/", + "listSourceURL": "https://emedpractice.com/Fhir/FhirHelpDocument.html", "softwareProducts": [ { - "id": 11062, - "chplProductNumber": "15.04.04.2883.eCli.11.05.1.221212", + "id": 10787, + "chplProductNumber": "15.02.05.2898.EMED.01.01.1.220112", "edition": { "id": 3, "name": "2015" @@ -60721,42 +77563,52 @@ "name": "" }, "developer": { - "id": 1884, - "name": "eClinicalWorks, LLC" + "id": 1899, + "name": "eMedPractice LLC" }, "product": { - "id": 3189, - "name": "eClinicalWorks" + "id": 2524, + "name": "eMedicalPractice" }, "version": { - "id": 8647, - "name": "11.52.305C" + "id": 6878, + "name": "2.0" }, - "certificationDate": "2022-12-12", + "certificationDate": "2022-01-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -60764,14 +77616,19 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -60779,24 +77636,34 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 43, @@ -60804,187 +77671,162 @@ "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.eclinicalworks.com/" + "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhir.eclinicalworks.com/" + "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.eclinicalworks.com/" + "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.edermehr.com/sites/default/files/webform/FHIR%20Service%20URLs.pdf", + "listSourceURL": "https://eph-solutions.com/FHIR_Service_URL_08162022.pdf", "softwareProducts": [ { - "id": 10149, - "chplProductNumber": "15.04.04.2592.eDer.28.00.1.191025", + "id": 10909, + "chplProductNumber": "15.04.04.3113.Ephs.05.00.1.220530", "edition": { "id": 3, "name": "2015" @@ -60994,37 +77836,47 @@ "name": "" }, "developer": { - "id": 1593, - "name": "eDerm Systems LLC" + "id": 2114, + "name": "ePH Solutions, Inc" }, "product": { - "id": 2677, - "name": "eDerm Systems" + "id": 3625, + "name": "ePHS-EMR" }, "version": { - "id": 7890, - "name": "2.8.0" + "id": 8507, + "name": "5.6" }, - "certificationDate": "2019-10-25", + "certificationDate": "2022-05-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, @@ -61032,49 +77884,49 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -61084,32 +77936,22 @@ { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -61117,34 +77959,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, @@ -61152,35 +77984,40 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.edermehr.com/ederm-onc-certified" + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.edermehr.com/ederm-onc-certified" + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.edermehr.com/ederm-onc-certified" + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } ], "acb": "Drummond Group" @@ -61188,11 +78025,11 @@ ] }, { - "listSourceURL": "https://www.ehana.com/s/fhir-base-urls.csv", + "listSourceURL": "https://img1.wsimg.com/blobby/go/f698f3eb-0d14-4f25-a21e-9ac5944696fe/downloads/ezdocs-fhir-base-urls.csv", "softwareProducts": [ { - "id": 10200, - "chplProductNumber": "15.04.04.2594.eHan.19.00.1.191206", + "id": 10744, + "chplProductNumber": "15.02.04.2708.eZDo.05.01.1.211209", "edition": { "id": 3, "name": "2015" @@ -61202,97 +78039,97 @@ "name": "" }, "developer": { - "id": 1595, - "name": "eHana" + "id": 1709, + "name": "Dexter Solutions Inc" }, "product": { - "id": 2516, - "name": "eHana EHR" + "id": 3507, + "name": "eZDocs" }, "version": { - "id": 7937, - "name": "v2019-MU" + "id": 7969, + "name": "5.0" }, - "certificationDate": "2019-12-06", + "certificationDate": "2021-12-09", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -61300,19 +78137,29 @@ "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 2, @@ -61320,44 +78167,59 @@ "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, @@ -61365,72 +78227,52 @@ "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://mu2014-stage.ehana.com/apidocs" + "value": "https://dexter-solutions.com/certification" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mu2014-stage.ehana.com/apidocs" + "value": "https://dexter-solutions.com/certification" }, { "criterion": { @@ -61438,19 +78280,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mu2014-stage.ehana.com/apidocs" + "value": "http://interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://emedpractice.com/Fhir/FhirHelpDocument.html", - "softwareProducts": [ + }, { - "id": 10787, - "chplProductNumber": "15.02.05.2898.EMED.01.01.1.220112", + "id": 11432, + "chplProductNumber": "15.02.04.2708.eZDo.05.02.1.240102", "edition": { "id": 3, "name": "2015" @@ -61460,52 +78297,62 @@ "name": "" }, "developer": { - "id": 1899, - "name": "eMedPractice LLC" + "id": 1709, + "name": "Dexter Solutions Inc" }, "product": { - "id": 2524, - "name": "eMedicalPractice" + "id": 3507, + "name": "eZDocs" }, "version": { - "id": 6878, - "name": "2.0" + "id": 8940, + "name": "5.5" }, - "certificationDate": "2022-01-12", + "certificationDate": "2024-01-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -61513,9 +78360,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -61523,24 +78390,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -61548,9 +78435,14 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -61558,24 +78450,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 2, @@ -61588,59 +78485,147 @@ "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dexter-solutions.com/certification" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://code.medicasoft.us/fhir_r4_endpoints.html", + "softwareProducts": [ + { + "id": 11141, + "chplProductNumber": "15.04.04.1930.eHTC.05.01.0.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 931, + "name": "MedicaSoft, LLC" + }, + "product": { + "id": 3069, + "name": "ehr.NXT HealthCenter" + }, + "version": { + "id": 8711, + "name": "5.1" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -61648,44 +78633,39 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" } ], "apiDocumentation": [ @@ -61693,17 +78673,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://code.medicasoft.us/fhir_r4.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://code.medicasoft.us/fhir_r4.html" }, { "criterion": { @@ -61711,19 +78691,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://code.medicasoft.us/fhir_r4.html" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://eph-solutions.com/FHIR_Service_URL_08162022.pdf", + "listSourceURL": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/ServiceUrl.html", "softwareProducts": [ { - "id": 10909, - "chplProductNumber": "15.04.04.3113.Ephs.05.00.1.220530", + "id": 9585, + "chplProductNumber": "15.05.05.2737.GENI.01.00.1.180802", "edition": { "id": 3, "name": "2015" @@ -61733,82 +78713,102 @@ "name": "" }, "developer": { - "id": 2114, - "name": "ePH Solutions, Inc" + "id": 1738, + "name": "Genius Solutions Inc." }, "product": { - "id": 3625, - "name": "ePHS-EMR" + "id": 3193, + "name": "ehrTHOMAS" }, "version": { - "id": 8507, - "name": "5.6" + "id": 7407, + "name": "3" }, - "certificationDate": "2022-05-30", + "certificationDate": "2018-08-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 32, @@ -61816,9 +78816,29 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 42, @@ -61831,14 +78851,9 @@ "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -61846,19 +78861,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 37, @@ -61866,29 +78891,84 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -61896,37 +78976,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://img1.wsimg.com/blobby/go/f698f3eb-0d14-4f25-a21e-9ac5944696fe/downloads/ezdocs-fhir-base-urls.csv", + "listSourceURL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10744, - "chplProductNumber": "15.02.04.2708.eZDo.05.01.1.211209", + "id": 11200, + "chplProductNumber": "15.04.04.2861.Elec.24.01.1.221231", "edition": { "id": 3, "name": "2015" @@ -61936,52 +79016,62 @@ "name": "" }, "developer": { - "id": 1709, - "name": "Dexter Solutions Inc" + "id": 1862, + "name": "TenEleven Group" }, "product": { - "id": 3507, - "name": "eZDocs" + "id": 3194, + "name": "electronic Clinical Record (eCR)" }, "version": { - "id": 7969, - "name": "5.0" + "id": 8751, + "name": "2.4" }, - "certificationDate": "2021-12-09", + "certificationDate": "2022-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -61989,34 +79079,54 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -62024,9 +79134,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 26, @@ -62034,59 +79144,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 37, @@ -62094,64 +79204,54 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -62161,23 +79261,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://interopengine.com/2017/open-api-documentation.html" + "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dexter-solutions.com/certification" + "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dexter-solutions.com/certification" + "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -62185,11 +79285,11 @@ ] }, { - "listSourceURL": "http://code.medicasoft.us/fhir_r4_endpoints.html", + "listSourceURL": "http://www.interopengine.com/2021", "softwareProducts": [ { - "id": 11141, - "chplProductNumber": "15.04.04.1930.eHTC.05.01.0.221227", + "id": 10214, + "chplProductNumber": "15.04.04.2796.emr4.09.00.1.191218", "edition": { "id": 3, "name": "2015" @@ -62199,42 +79299,167 @@ "name": "" }, "developer": { - "id": 931, - "name": "MedicaSoft, LLC" + "id": 1797, + "name": "MedNet Medical Solutions" }, "product": { - "id": 3069, - "name": "ehr.NXT HealthCenter" + "id": 3202, + "name": "emr4MD" }, "version": { - "id": 8711, - "name": "5.1" + "id": 7951, + "name": "Version 9.10" }, - "certificationDate": "2022-12-27", + "certificationDate": "2019-12-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 35, @@ -62242,44 +79467,49 @@ "title": "End-User Device Encryption" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 37, @@ -62289,17 +79519,17 @@ { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" } ], "apiDocumentation": [ @@ -62309,23 +79539,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://code.medicasoft.us/fhir_r4.html" + "value": "http://www.interopengine.com/open-api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://code.medicasoft.us/fhir_r4.html" + "value": "http://www.interopengine.com/open-api-documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://code.medicasoft.us/fhir_r4.html" + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -62333,11 +79563,11 @@ ] }, { - "listSourceURL": "https://gsehrwebapi.geniussolutions.com/Help/html/ServiceUrl.html", + "listSourceURL": "https://ehr.escribe.com/ehr/api/fhir", "softwareProducts": [ { - "id": 9585, - "chplProductNumber": "15.05.05.2737.GENI.01.00.1.180802", + "id": 10830, + "chplProductNumber": "15.02.05.3058.LILG.01.01.1.220214", "edition": { "id": 3, "name": "2015" @@ -62347,112 +79577,52 @@ "name": "" }, "developer": { - "id": 1738, - "name": "Genius Solutions Inc." + "id": 2059, + "name": "Lille Group, Inc." }, "product": { - "id": 3193, - "name": "ehrTHOMAS" + "id": 3510, + "name": "escribeHOST" }, "version": { - "id": 7407, - "name": "3" + "id": 7979, + "name": "7" }, - "certificationDate": "2018-08-02", + "certificationDate": "2022-02-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -62460,19 +79630,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 29, @@ -62480,29 +79650,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -62510,64 +79675,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 54, @@ -62575,34 +79725,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -62610,25 +79775,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://gsehrwebapi.geniussolutions.com/Help/html/Index.html" + "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "https://www.lillegroup.com/esh.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "https://www.lillegroup.com/esh.html" } ], "acb": "SLI Compliance" @@ -62636,11 +79801,11 @@ ] }, { - "listSourceURL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", + "listSourceURL": "https://fhir-api.ethizo.com/#55b1b3d2-fd9a-4afa-8d17-5bf78943702d", "softwareProducts": [ { - "id": 11200, - "chplProductNumber": "15.04.04.2861.Elec.24.01.1.221231", + "id": 10265, + "chplProductNumber": "15.05.05.3060.DOTM.01.00.1.200107", "edition": { "id": 3, "name": "2015" @@ -62650,42 +79815,32 @@ "name": "" }, "developer": { - "id": 1862, - "name": "TenEleven Group" + "id": 2061, + "name": "DocToMe, Inc." }, "product": { - "id": 3194, - "name": "electronic Clinical Record (eCR)" + "id": 3515, + "name": "ethizo EHR" }, "version": { - "id": 8751, - "name": "2.42" + "id": 7998, + "name": "2.0" }, - "certificationDate": "2022-12-31", + "certificationDate": "2020-01-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -62693,34 +79848,39 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 44, @@ -62728,34 +79888,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -62763,94 +79918,99 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -62858,34 +80018,69 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -62895,35 +80090,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.ethizo.com/pda-api/developer-guide/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.ethizo.com/pda-api/developer-guide/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://fhir-api.ethizo.com/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "http://www.interopengine.com/2021", + "listSourceURL": "https://www.ezemrx.com/fhir", "softwareProducts": [ { - "id": 10214, - "chplProductNumber": "15.04.04.2796.emr4.09.00.1.191218", + "id": 10779, + "chplProductNumber": "15.02.05.2886.EZEM.01.01.1.220105", "edition": { "id": 3, "name": "2015" @@ -62933,27 +80128,32 @@ "name": "" }, "developer": { - "id": 1797, - "name": "MedNet Medical Solutions" + "id": 1887, + "name": "ezEMRx Inc" }, "product": { - "id": 3202, - "name": "emr4MD" + "id": 2932, + "name": "ezEMRx" }, "version": { - "id": 7951, - "name": "Version 9.10" + "id": 7385, + "name": "10.01" }, - "certificationDate": "2019-12-18", + "certificationDate": "2022-01-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -62961,54 +80161,59 @@ "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -63016,24 +80221,19 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 26, @@ -63041,94 +80241,99 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -63136,72 +80341,72 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ezemrx.com/fhir" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.interopengine.com/open-api-documentation" + "value": "https://www.ezemrx.com/oauth/fhir.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.interopengine.com/open-api-documentation" + "value": "https://www.ezemrx.com/oauth/fhir.htm" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://ehr.escribe.com/ehr/api/fhir", + "listSourceURL": "https://pcbapps.com/wp-content/uploads/2022/11/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10830, - "chplProductNumber": "15.02.05.3058.LILG.01.01.1.220214", + "id": 11237, + "chplProductNumber": "15.07.04.2154.Ezpr.15.01.1.230208", "edition": { "id": 3, "name": "2015" @@ -63211,67 +80416,52 @@ "name": "" }, "developer": { - "id": 2059, - "name": "Lille Group, Inc." + "id": 1155, + "name": "Perk Medical Systems LLC (PCB Apps LLC)" }, "product": { - "id": 3510, - "name": "escribeHOST" + "id": 1915, + "name": "ezPractice" }, "version": { - "id": 7979, - "name": "7" + "id": 8767, + "name": "V15.1" }, - "certificationDate": "2022-02-14", + "certificationDate": "2023-02-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "title": "Transitions of Care" }, { "id": 36, @@ -63279,109 +80469,89 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 56, @@ -63389,19 +80559,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -63409,9 +80594,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.lillegroup.com/esh.html" + "value": "https://penn-clinical.com/api-documentation" }, { "criterion": { @@ -63419,27 +80604,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.lillegroup.com/esh.html" + "value": "https://penn-clinical.com/api-documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" + "value": "https://penn-clinical.com/api-documentation" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir-api.ethizo.com/#55b1b3d2-fd9a-4afa-8d17-5bf78943702d", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10265, - "chplProductNumber": "15.05.05.3060.DOTM.01.00.1.200107", + "id": 10410, + "chplProductNumber": "15.07.07.2154.EZ01.01.00.1.200611", "edition": { "id": 3, "name": "2015" @@ -63449,82 +80629,57 @@ "name": "" }, "developer": { - "id": 2061, - "name": "DocToMe, Inc." + "id": 1155, + "name": "Perk Medical Systems LLC (PCB Apps LLC)" }, "product": { - "id": 3515, - "name": "ethizo EHR" + "id": 1915, + "name": "ezPractice" }, "version": { - "id": 7998, - "name": "2.0" + "id": 8133, + "name": "15.1" }, - "certificationDate": "2020-01-07", + "certificationDate": "2020-06-11", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 4, + "name": "Withdrawn by ONC-ACB" }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -63532,44 +80687,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, @@ -63577,29 +80712,14 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -63607,24 +80727,9 @@ "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -63632,34 +80737,34 @@ "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 7, @@ -63667,24 +80772,19 @@ "title": "Medication List" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 3, @@ -63692,29 +80792,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -63722,17 +80837,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-api.ethizo.com/" + "value": "https://penn-clinical.com/api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ethizo.com/pda-api/developer-guide/" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" }, { "criterion": { @@ -63740,19 +80855,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ethizo.com/pda-api/developer-guide/" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" } ], - "acb": "SLI Compliance" + "acb": "ICSA Labs" } ] }, { - "listSourceURL": "https://www.ezemrx.com/fhir", + "listSourceURL": "https://sfp-proxy9794.azurewebsites.net/fhir/base-url", "softwareProducts": [ { - "id": 10779, - "chplProductNumber": "15.02.05.2886.EZEM.01.01.1.220105", + "id": 10140, + "chplProductNumber": "15.04.04.1575.ihea.02.00.1.191007", "edition": { "id": 3, "name": "2015" @@ -63762,47 +80877,27 @@ "name": "" }, "developer": { - "id": 1887, - "name": "ezEMRx Inc" + "id": 576, + "name": "Healogics, Inc." }, "product": { - "id": 2932, - "name": "ezEMRx" + "id": 3490, + "name": "i-heal" }, "version": { - "id": 7385, - "name": "10.01" + "id": 7881, + "name": "2.0" }, - "certificationDate": "2022-01-05", + "certificationDate": "2019-10-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -63810,69 +80905,54 @@ "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 59, @@ -63880,114 +80960,109 @@ "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -63995,52 +81070,52 @@ "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.ezemrx.com/fhir" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ezemrx.com/oauth/fhir.htm" + "value": "https://www.healogics.com/2015-certified-ehr-technology/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ezemrx.com/oauth/fhir.htm" + "value": "https://www.healogics.com/2015-certified-ehr-technology/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.healogics.com/2015-certified-ehr-technology/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://pcbapps.com/wp-content/uploads/2022/11/fhir-base-urls.csv", + "listSourceURL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", "softwareProducts": [ { - "id": 11237, - "chplProductNumber": "15.07.04.2154.Ezpr.15.01.1.230208", + "id": 11413, + "chplProductNumber": "15.04.04.2621.iMed.52.01.1.231220", "edition": { "id": 3, "name": "2015" @@ -64050,92 +81125,107 @@ "name": "" }, "developer": { - "id": 1155, - "name": "Perk Medical Systems LLC (PCB Apps LLC)" + "id": 1622, + "name": "i3 Healthcare Solutions, LLC" }, "product": { - "id": 1915, - "name": "ezPractice" + "id": 3748, + "name": "i3 EHR" }, "version": { - "id": 8767, - "name": "V15.1" + "id": 8922, + "name": "5.2" }, - "certificationDate": "2023-02-08", + "certificationDate": "2023-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 5, @@ -64143,112 +81233,107 @@ "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://appstudio.interopengine.com/" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://penn-clinical.com/api-documentation" + "value": "https://appstudio.interopengine.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://penn-clinical.com/api-documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://penn-clinical.com/api-documentation" + "value": "https://appstudio.interopengine.com/" } ], "acb": "Drummond Group" }, { - "id": 10410, - "chplProductNumber": "15.07.07.2154.EZ01.01.00.1.200611", + "id": 9851, + "chplProductNumber": "15.04.04.2621.iMed.51.00.1.181229", "edition": { "id": 3, "name": "2015" @@ -64258,97 +81343,82 @@ "name": "" }, "developer": { - "id": 1155, - "name": "Perk Medical Systems LLC (PCB Apps LLC)" + "id": 1622, + "name": "i3 Healthcare Solutions, LLC" }, "product": { - "id": 1915, - "name": "ezPractice" + "id": 3257, + "name": "i3Med" }, "version": { - "id": 8133, - "name": "15.1" + "id": 7629, + "name": "5.1" }, - "certificationDate": "2020-06-11", + "certificationDate": "2018-12-29", "certificationStatus": { - "id": 4, - "name": "Withdrawn by ONC-ACB" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 9, @@ -64356,109 +81426,99 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -64468,35 +81528,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" + "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" + "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://penn-clinical.com/api-documentation" + "value": "https://appstudio.interopengine.com/" } ], - "acb": "ICSA Labs" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://sfp-proxy9794.azurewebsites.net/fhir/base-url", + "listSourceURL": "https://www.icare.com/endpoints.csv", "softwareProducts": [ { - "id": 10140, - "chplProductNumber": "15.04.04.1575.ihea.02.00.1.191007", + "id": 10314, + "chplProductNumber": "15.04.04.2617.iCar.02.00.1.200220", "edition": { "id": 3, "name": "2015" @@ -64506,32 +81566,37 @@ "name": "" }, "developer": { - "id": 576, - "name": "Healogics, Inc." + "id": 1618, + "name": "iCare.com, Inc." }, "product": { - "id": 3490, - "name": "i-heal" + "id": 2550, + "name": "iCare EHR" }, "version": { - "id": 7881, - "name": "2.0" + "id": 8043, + "name": "Version 2" }, - "certificationDate": "2019-10-07", + "certificationDate": "2020-02-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 33, @@ -64539,14 +81604,29 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 56, @@ -64559,164 +81639,167 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.icare.com/developers/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" + "value": "https://www.icare.com/developers/" }, { "criterion": { @@ -64724,15 +81807,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" + "value": "https://www.icare.com/developers/" } ], "acb": "Drummond Group" @@ -64740,11 +81815,11 @@ ] }, { - "listSourceURL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", + "listSourceURL": "https://api-fhir-proxy-2.mdland.net/", "softwareProducts": [ { - "id": 9851, - "chplProductNumber": "15.04.04.2621.iMed.51.00.1.181229", + "id": 9814, + "chplProductNumber": "15.04.04.1828.iCli.12.00.1.181221", "edition": { "id": 3, "name": "2015" @@ -64754,27 +81829,27 @@ "name": "" }, "developer": { - "id": 1622, - "name": "i3-iMed, LLC" + "id": 829, + "name": "MDLAND" }, "product": { - "id": 3257, - "name": "i3Med" + "id": 3009, + "name": "iClinic" }, "version": { - "id": 7629, - "name": "5.1" + "id": 7595, + "name": "12.3" }, - "certificationDate": "2018-12-29", + "certificationDate": "2018-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -64782,64 +81857,99 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 12, @@ -64847,19 +81957,14 @@ "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -64867,39 +81972,49 @@ "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 36, @@ -64907,55 +82022,50 @@ "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" + "value": "https://api.mdland.com/Mdland_FHIR_API.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://appstudio.interopengine.com/" + "value": "https://api.mdland.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" + "value": "https://api.mdland.com/Mdland_FHIR_API.html" } ], "acb": "Drummond Group" @@ -64963,11 +82073,11 @@ ] }, { - "listSourceURL": "https://www.icare.com/endpoints.csv", + "listSourceURL": "https://g2fhir-int.mckesson.com/docs/index.html", "softwareProducts": [ { - "id": 10314, - "chplProductNumber": "15.04.04.2617.iCar.02.00.1.200220", + "id": 9580, + "chplProductNumber": "15.04.04.2920.iKno.30.01.1.180508", "edition": { "id": 3, "name": "2015" @@ -64977,67 +82087,62 @@ "name": "" }, "developer": { - "id": 1618, - "name": "iCare.com, Inc." + "id": 1921, + "name": "McKesson Specialty Health Technology Products LLC (Ontada)" }, "product": { - "id": 2550, - "name": "iCare EHR" + "id": 3255, + "name": "iKnowMed Generation 2" }, "version": { - "id": 8043, - "name": "Version 2" + "id": 7151, + "name": "Version 3" }, - "certificationDate": "2020-02-20", + "certificationDate": "2018-05-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 36, @@ -65045,44 +82150,44 @@ "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, @@ -65090,135 +82195,135 @@ "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.icare.com/developers/" + "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.icare.com/developers/" + "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.icare.com/developers/" + "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" } ], "acb": "Drummond Group" @@ -65226,11 +82331,11 @@ ] }, { - "listSourceURL": "https://api-fhir-proxy-2.mdland.net/", + "listSourceURL": "https://assurecare.com/wp-content/uploads/fhir-base-urls.csv", "softwareProducts": [ { - "id": 9814, - "chplProductNumber": "15.04.04.1828.iCli.12.00.1.181221", + "id": 11103, + "chplProductNumber": "15.04.04.2627.iPat.22.01.1.221221", "edition": { "id": 3, "name": "2015" @@ -65240,47 +82345,72 @@ "name": "" }, "developer": { - "id": 829, - "name": "MDLAND" + "id": 1628, + "name": "AssureCare LLC" }, "product": { - "id": 3009, - "name": "iClinic" + "id": 2563, + "name": "iPatientCare" }, "version": { - "id": 7595, - "name": "12.3" + "id": 8680, + "name": "22.5" }, - "certificationDate": "2018-12-21", + "certificationDate": "2022-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -65288,9 +82418,9 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -65298,124 +82428,114 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -65423,34 +82543,34 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -65458,37 +82578,32 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.mdland.com/Mdland_FHIR_API.html" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api.mdland.com/Mdland_FHIR_API.html" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api.mdland.com/" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://g2fhir-int.mckesson.com/docs/index.html", - "softwareProducts": [ + }, { - "id": 9580, - "chplProductNumber": "15.04.04.2920.iKno.30.01.1.180508", + "id": 11286, + "chplProductNumber": "15.04.04.2627.iPat.23.02.1.230522", "edition": { "id": 3, "name": "2015" @@ -65498,122 +82613,127 @@ "name": "" }, "developer": { - "id": 1921, - "name": "McKesson Specialty Health Technology Products LLC (Ontada)" + "id": 1628, + "name": "AssureCare LLC" }, "product": { - "id": 3255, - "name": "iKnowMed Generation 2" + "id": 2563, + "name": "iPatientCare" }, "version": { - "id": 7151, - "name": "Version 3.0" + "id": 8803, + "name": "23.0" }, - "certificationDate": "2018-05-08", + "certificationDate": "2023-05-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -65621,132 +82741,127 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://assurecare.com/wp-content/uploads/fhir-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11103, - "chplProductNumber": "15.04.04.2627.iPat.22.01.1.221221", + "id": 8970, + "chplProductNumber": "15.04.04.2627.iPat.18.00.1.171201", "edition": { "id": 3, "name": "2015" @@ -65764,39 +82879,49 @@ "name": "iPatientCare" }, "version": { - "id": 8680, - "name": "22.5" + "id": 6965, + "name": "18.0" }, - "certificationDate": "2022-12-21", + "certificationDate": "2017-12-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 28, @@ -65804,44 +82929,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 25, @@ -65849,84 +82979,89 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 26, @@ -65934,87 +83069,92 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://careconnect-uat.netsmartcloud.com/", + "softwareProducts": [ { - "id": 8970, - "chplProductNumber": "15.04.04.2627.iPat.18.00.1.171201", + "id": 11387, + "chplProductNumber": "15.04.04.2816.myAv.23.07.0.231127", "edition": { "id": 3, "name": "2015" @@ -66024,117 +83164,77 @@ "name": "" }, "developer": { - "id": 1628, - "name": "AssureCare LLC" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 2563, - "name": "iPatientCare" + "id": 2720, + "name": "myAvatar Certified Edition" }, "version": { - "id": 6965, - "name": "18.0" + "id": 8898, + "name": "2023" }, - "certificationDate": "2017-12-01", + "certificationDate": "2023-11-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -66142,9 +83242,9 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -66152,29 +83252,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 44, @@ -66182,9 +83292,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -66192,84 +83317,84 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -66277,9 +83402,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { @@ -66287,24 +83412,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://careconnect-uat.netsmartcloud.com/", - "softwareProducts": [ + }, { "id": 11132, "chplProductNumber": "15.04.04.2816.myAv.22.06.0.221227", @@ -66330,29 +83450,14 @@ }, "certificationDate": "2022-12-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -66360,114 +83465,119 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 44, @@ -66475,19 +83585,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 14, @@ -66495,62 +83625,52 @@ "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -66558,15 +83678,15 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" } @@ -66608,69 +83728,69 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -66678,104 +83798,89 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -66783,14 +83888,19 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -66798,24 +83908,19 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 42, @@ -66823,9 +83928,24 @@ "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -66841,7 +83961,7 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.myhelo.com/api/" }, @@ -66849,7 +83969,7 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://www.myhelo.com/api/#introduction" } @@ -66891,134 +84011,129 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -67026,100 +84141,97 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 170, "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "title": "Care Plan" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://www.nablemd.com/api_fhir/index.html" }, @@ -67130,6 +84242,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nablemd.com/api_fhir/index.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nablemd.com/api_fhir/index.html" } ], "acb": "Drummond Group" diff --git a/resources/dev_resources/Canvas_Medical_Inc_EndpointSources.json b/resources/dev_resources/Canvas_Medical_Inc_EndpointSources.json index 0e3bc63c8..e8dffbff4 100644 --- a/resources/dev_resources/Canvas_Medical_Inc_EndpointSources.json +++ b/resources/dev_resources/Canvas_Medical_Inc_EndpointSources.json @@ -1,3 +1,10 @@ { - "Endpoints": null + "Endpoints": [ + { + "URL": "https://fumage-modernfamilypractice.canvasmedical.com", + "OrganizationName": "modernfamilypractice", + "NPIID": "", + "OrganizationZipCode": "" + } + ] } \ No newline at end of file diff --git a/resources/dev_resources/Carepaths_Inc_EndpointSources.json b/resources/dev_resources/Carepaths_Inc_EndpointSources.json new file mode 100644 index 000000000..14440c6fa --- /dev/null +++ b/resources/dev_resources/Carepaths_Inc_EndpointSources.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "http://developer.carepaths.com/beauchene/api/", + "OrganizationName": "Beauchene Family Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/qcounseling/api/", + "OrganizationName": "Q Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1390898-152525/api/", + "OrganizationName": "Kristen O'Shea, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/salt/api/", + "OrganizationName": "Salt and Light Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/frcc/api/", + "OrganizationName": "Firmly Rooted Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rochford/api/", + "OrganizationName": "Lisa Rochford, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pacificsky/api/", + "OrganizationName": "Pacific Sky Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yelk/api/", + "OrganizationName": "Dawn L. Yelk, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scl/api/", + "OrganizationName": "Sharon Chatkupt Lee, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385102-145752/api/", + "OrganizationName": "Embrace Life Counseling", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/Darena_Solutions_LLC_EndpointSources.json b/resources/dev_resources/Darena_Solutions_LLC_EndpointSources.json index 9ef03e9cb..cb920d768 100644 --- a/resources/dev_resources/Darena_Solutions_LLC_EndpointSources.json +++ b/resources/dev_resources/Darena_Solutions_LLC_EndpointSources.json @@ -1,61 +1,61 @@ { "Endpoints": [ { - "URL": "https://api.meldrx.com/fhir/hmc-001", + "URL": "https://app.meldrx.com/api/fhir/hmc-001", "OrganizationName": "Harbor - UCLA Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/bridgeview_medical_systems", + "URL": "https://app.meldrx.com/api/fhir/bridgeview_medical_systems", "OrganizationName": "Professional Imaging, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/asheville", + "URL": "https://app.meldrx.com/api/fhir/asheville", "OrganizationName": "Asheville Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/readeyecenter", + "URL": "https://app.meldrx.com/api/fhir/readeyecenter", "OrganizationName": "Read Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/eyeandface", + "URL": "https://app.meldrx.com/api/fhir/eyeandface", "OrganizationName": "EYE AND FACE LLC - David Leventer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fhs", + "URL": "https://app.meldrx.com/api/fhir/fhs", "OrganizationName": "Fagadau, Hawk \u0026 Swanson, MD LLP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/gcny", + "URL": "https://app.meldrx.com/api/fhir/gcny", "OrganizationName": "Glaucoma Consultants of NY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/moran", + "URL": "https://app.meldrx.com/api/fhir/moran", "OrganizationName": "Moran", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/aves", + "URL": "https://app.meldrx.com/api/fhir/aves", "OrganizationName": "AVES - ANew Vision Eye Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ohioeye", + "URL": "https://app.meldrx.com/api/fhir/ohioeye", "OrganizationName": "Ohio Eye Alliance", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/dev_resources/Firely_USA_Inc_EndpointSources.json b/resources/dev_resources/Firely_USA_Inc_EndpointSources.json new file mode 100644 index 000000000..758ecb11b --- /dev/null +++ b/resources/dev_resources/Firely_USA_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://server.fire.ly/r4", + "OrganizationName": "Firely B.V.", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/NextGen_Healthcare_EndpointSources.json b/resources/dev_resources/NextGen_Healthcare_EndpointSources.json index 1ca6d4ef9..49f031382 100644 --- a/resources/dev_resources/NextGen_Healthcare_EndpointSources.json +++ b/resources/dev_resources/NextGen_Healthcare_EndpointSources.json @@ -2,63 +2,15 @@ "Endpoints": [ { "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Alabama", + "OrganizationName": "", "NPIID": "", - "OrganizationZipCode": "402432404" + "OrganizationZipCode": "" }, { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Delaware", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Georgia", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Indiana", - "NPIID": "", - "OrganizationZipCode": "436979614" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Kansas", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Kentucky", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Maryland", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Massachusetts", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360Care Of Michigan", - "NPIID": "", - "OrganizationZipCode": "436979360" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Mississippi", + "URL": "https://fhir.nextgen.com/nge/prod/fhir-api-r4/fhir/r4/", + "OrganizationName": "", "NPIID": "", - "OrganizationZipCode": "402432404" + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/dev_resources/Qualifacts_Systems_LLC_1_EndpointSources.json b/resources/dev_resources/Qualifacts_Systems_LLC_1_EndpointSources.json index 161f80427..2b4f72b61 100644 --- a/resources/dev_resources/Qualifacts_Systems_LLC_1_EndpointSources.json +++ b/resources/dev_resources/Qualifacts_Systems_LLC_1_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://cms.smilecdr.com/fhir-request", + "URL": "https://fhir.cbh4.crediblebh.com", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/dev_resources/Qualifacts_Systems_LLC_2_EndpointSources.json b/resources/dev_resources/Qualifacts_Systems_LLC_2_EndpointSources.json new file mode 100644 index 000000000..161f80427 --- /dev/null +++ b/resources/dev_resources/Qualifacts_Systems_LLC_2_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://cms.smilecdr.com/fhir-request", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/athenahealth_Inc_EndpointSources.json b/resources/dev_resources/athenahealth_Inc_EndpointSources.json index bbfc09a0a..129f56008 100644 --- a/resources/dev_resources/athenahealth_Inc_EndpointSources.json +++ b/resources/dev_resources/athenahealth_Inc_EndpointSources.json @@ -2,61 +2,61 @@ "Endpoints": [ { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Anchor", + "OrganizationName": "NC - Sollus Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Community Health Ministry, Inc.", + "OrganizationName": "KY - Scott \u0026 Jonah Mds", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Sollus Pediatrics", + "OrganizationName": "First Physicians", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KY - Scott \u0026 Jonah Mds", + "OrganizationName": "TX - Trophy Club Pediatrics, PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "First Physicians", + "OrganizationName": "MA - The Sharewood Project", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Trophy Club Pediatrics, PA", + "OrganizationName": "GA - Contemporary Women's Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - The Sharewood Project", + "OrganizationName": "WA - Dr. Stephen B. Hillis, MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Contemporary Women's Healthcare", + "OrganizationName": "FL - Margarita M Vendrell MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Dr. Stephen B. Hillis, MD", + "OrganizationName": "Boca Integrative Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Margarita M Vendrell MD", + "OrganizationName": "Center for Emotional Wellness at RPCA", "NPIID": "", "OrganizationZipCode": "" } diff --git a/resources/dev_resources/eClinicalWorks_LLC_EndpointSources.json b/resources/dev_resources/eClinicalWorks_LLC_EndpointSources.json index 4ceacbfe6..167d522dd 100644 --- a/resources/dev_resources/eClinicalWorks_LLC_EndpointSources.json +++ b/resources/dev_resources/eClinicalWorks_LLC_EndpointSources.json @@ -1,64 +1,64 @@ { "Endpoints": [ { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBFCCA", - "OrganizationName": "Mon-Vale Professional Services, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGIACA", + "OrganizationName": "Surgical Assoicates", "NPIID": "", - "OrganizationZipCode": "15063" + "OrganizationZipCode": "59101" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHEAA", - "OrganizationName": "Valley Women s Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHECDA", + "OrganizationName": "Pinnacle Family Care", "NPIID": "", - "OrganizationZipCode": "15063" + "OrganizationZipCode": "28304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIEBDD", - "OrganizationName": "Park Place Healthcare LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIDAD", + "OrganizationName": "Carlos Aguilar MD", "NPIID": "", - "OrganizationZipCode": "35242" + "OrganizationZipCode": "77504" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHCJBA", - "OrganizationName": "Tri-County Medical Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIADA", + "OrganizationName": "Surgical Associates PA", "NPIID": "", - "OrganizationZipCode": "15012" + "OrganizationZipCode": "66502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHDACA", - "OrganizationName": "Skin Care Now Pueblo PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCCAA", + "OrganizationName": "GastroDoxs PLLC", "NPIID": "", - "OrganizationZipCode": "81003" + "OrganizationZipCode": "77429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDEFBA", - "OrganizationName": "Pain and Spine Centers of Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAAAAA", + "OrganizationName": "MEDPEDS, LLC", "NPIID": "", - "OrganizationZipCode": "32778" + "OrganizationZipCode": "20707" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECGFCA", - "OrganizationName": "George Nasser, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBCCD", + "OrganizationName": "Hillside Pain Management", "NPIID": "", - "OrganizationZipCode": "77384" + "OrganizationZipCode": "17331" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCICAA", - "OrganizationName": "Handelsman Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFBCD", + "OrganizationName": "Paragon Pain and Rehabilitation, LLP", "NPIID": "", - "OrganizationZipCode": "15120" + "OrganizationZipCode": "75460-9331" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDFCA", - "OrganizationName": "Bindusagar Reddy, MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBBCD", + "OrganizationName": "Summit Medical Center dba Summit Medical Clinic", "NPIID": "", - "OrganizationZipCode": "93257" + "OrganizationZipCode": "82609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHACA", - "OrganizationName": "Western Nephrology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CABIAD", + "OrganizationName": "Crescent City Internal Medicine", "NPIID": "", - "OrganizationZipCode": "80033" + "OrganizationZipCode": "95531" } ] } \ No newline at end of file diff --git a/resources/dev_resources/endpoint_pfile.csv b/resources/dev_resources/endpoint_pfile.csv index 4b219cd78..e69de29bb 100644 --- a/resources/dev_resources/endpoint_pfile.csv +++ b/resources/dev_resources/endpoint_pfile.csv @@ -1,999 +0,0 @@ -"NPI","Endpoint Type","Endpoint Type Description","Endpoint","Affiliation","Endpoint Description","Affiliation Legal Business Name","Use Code","Use Description","Other Use Description","Content Type","Content Description","Other Content Description","Affiliation Address Line One","Affiliation Address Line Two","Affiliation Address City","Affiliation Address State","Affiliation Address Country","Affiliation Address Postal Code" -"1306849591","DIRECT","Direct Messaging Address","svogel89246@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","16 Woodbine Ln","","Danville","PA","US","178218029" -"1912900960","CONNECT","CONNECT URL","9543838836","N","Cell","","DIRECT","Direct","","OTHER","Other","cell","2350 N University Dr Unit 841423","","Pembroke Pines","FL","US","330844106" -"1821091869","DIRECT","Direct Messaging Address","paola.bass.1@3326.direct.athenahealth.com","N","Athena EMR","","","","","","","","210 Westside Dr","","Dothan","AL","US","363031928" -"1205839248","DIRECT","Direct Messaging Address","jhollandsworth737910@direct.novanthealth.org","N","","","","","","","","","4848 Fort Henry Dr","","Kingsport","TN","US","376633347" -"1477556413","DIRECT","Direct Messaging Address","msirois6825@direct.watsonclinicad.com","Y","Direct Messaging Address","Watson Clinic LLP","","","","","","","1430 Lakeland Hills Blvd","","Lakeland","FL","US","338053202" -"1972506913","DIRECT","Direct Messaging Address","william.shaffer@direct.davitaphysiciansolutions.com","N","","","","","","","","","1521 S Staples St","Ste 601","Corpus Christi","TX","US","784043154" -"1649273673","DIRECT","Direct Messaging Address","tkopczynski36984@direct.novanthealth.org","N","","","","","","","","","1450 Matthews Township Pkwy","Suite 300","Matthews","NC","US","281052387" -"1144223173","DIRECT","Direct Messaging Address","asciullo81227@direct.ahn.org","N","","","","","","","","","647 N Broad Street Ext Ste 205","","Grove City","PA","US","161274604" -"1205839222","DIRECT","Direct Messaging Address","michelle.bachtel.1@4692.direct.athenahealth.com","N","","","","","","","","","3428 N Roosevelt Blvd","","Key West","FL","US","330404224" -"1114920139","DIRECT","Direct Messaging Address","maryditman@sfc.allscriptsdirect.net","N","","","","","","","","","900 N 1st St","","Springfield","IL","US","627023749" -"1437152451","DIRECT","Direct Messaging Address","john.powell@direct.scosa.nextgenshare.com","N","","","","","","","","","9323 Phoenix Village Pkwy","","O Fallon","MO","US","633664281" -"1184627317","DIRECT","Direct Messaging Address","james.wilson.p1@direct.carolinarheumdoc.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","744 Arden Ln","Suite 225","Rock Hill","SC","US","297322984" -"1427051648","OTHERS","Other URL","Salisbury","N","","","","","","","","","30454 E Rustic Drive","","Salisbury","MD","US","21804" -"1922001114","DIRECT","Direct Messaging Address","errashid@rashidrice.ecldirect.net","N","Updox","","DIRECT","Direct","","OTHER","Other","CCD","5430 Fredericksburg Rd","Ste 100","San Antonio","TX","US","78229" -"1699778878","DIRECT","Direct Messaging Address","bstaley1677@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","7589 Tylers Place Blvd","","West Chester","OH","US","45069" -"1164425344","DIRECT","Direct Messaging Address","shans1721@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","7589 Tylers Place Blvd","","West Chester","OH","US","450696308" -"1134122310","DIRECT","Direct Messaging Address","gsmith33508@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372322637" -"1780687954","DIRECT","Direct Messaging Address","henry.purvis.1@8824.direct.athenahealth.com","N","AMR direct address","","","","","","","","658 Northside Dr E","Ste A","Statesboro","GA","US","304584828" -"1295738458","DIRECT","Direct Messaging Address","DrToporcer@marybtoporcermd.medentdirect.com","N","REFERRING PATIENTS, PROVIDING RECORDS TO PCPs, COMPLIANCE WITH MIPS","","DIRECT","Direct","","OTHER","Other","CSV, XML, HL7","252 W Swamp Rd","SUITE 48","Doylestown","PA","US","189012422" -"1912900168","DIRECT","Direct Messaging Address","somersethospital@somersethospital.medalliesdirect.net","N","secure direct address for this UPMC hospital","","HIE","Health Information Exchange (HIE)","","","","","225 S Center Ave","","Somerset","PA","US","155012033" -"1831192087","DIRECT","Direct Messaging Address","rfleming22749@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372320005" -"1295738441","DIRECT","Direct Messaging Address","lerki122027@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","Suite 400","Camp Hill","PA","US","170112203" -"1265435390","DIRECT","Direct Messaging Address","rstephens7009@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","5885 Harrison Ave","Suite 3100","Cincinnati","OH","US","452481691" -"1881697894","DIRECT","Direct Messaging Address","kshannon124309@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","251 N 4th St","","Oakland","MD","US","215501375" -"1043213051","DIRECT","Direct Messaging Address","Direct@GorovoyMDEyeSpecialistFortMyersFL.CompulinkDirect.com","N","office direct email","","DIRECT","Direct","","","","","12381 S Cleveland Ave Ste 300","","Fort Myers","FL","US","339073852" -"1306849310","DIRECT","Direct Messaging Address","surjiti.moolamalla.1@1928.direct.athenahealth.com","N","AMR Direct Address","","","","","","","","4351 E Lohman Ave","Suite 401","Las Cruces","NM","US","880118259" -"1083617294","DIRECT","Direct Messaging Address","mhanson18409@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","mhanson18409@direct-ehr-ssmhc.com","12266 De Paul Dr Ste 305","","Bridgeton","MO","US","630442514" -"1083617294","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","12266 De Paul Dr Ste 305","","Bridgeton","MO","US","630442514" -"1831192012","DIRECT","Direct Messaging Address","kfarber1703@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","7589 Tylers Place Blvd","","West Chester","OH","US","450696308" -"1659374833","DIRECT","Direct Messaging Address","kevin.vanhoy.1@4693.direct.athenahelath.com","N","AMR direct access","","","","","","","","798 Oak Ridge Farm Hwy","Ste A","Mooresville","NC","US","281157924" -"1457354631","DIRECT","Direct Messaging Address","hubert.smith.1@8824.direct.athenahealth.com","N","AMR direct address","","","","","","","","658 Northside Dr E","Suite A","Statesboro","GA","US","304584828" -"1508869744","DIRECT","Direct Messaging Address","skahn155923@direct.rush.rush-health.com","N","","","HIE","Health Information Exchange (HIE)","","","","","1725 W Harrison St Ste 318","","Chicago","IL","US","606123817" -"1508869744","FHIR","FHIR URL","skahn155923@direct.rush.rush-health.com","N","Rush Health HIE Address","","HIE","Health Information Exchange (HIE)","","","","","1725 W Harrison St Ste 318","","Chicago","IL","US","606123817" -"1861495004","DIRECT","Direct Messaging Address","jpowers1042969@wm.providencedirect.org","N","","","DIRECT","Direct","","","","","21616 76th Ave W Ste 212","Tan 240","Edmonds","WA","US","980267512" -"1861495004","DIRECT","Direct Messaging Address","jpowers1042969@wm.providencedirect.org","N","","","DIRECT","Direct","","","","","550 17th Ave Ste 540","","Seattle","WA","US","981224470" -"1558364646","CONNECT","CONNECT URL","https://adelantehealthcare.com/","N","","","","","","","","","3033 N Central Ave Ste 200","","Phoenix","AZ","US","850122809" -"1487658712","DIRECT","Direct Messaging Address","fleal47346@direct.sw.org","N","","","DIRECT","Direct","","","","","600 North Park St","","Brenham","TX","US","778332610" -"1730182957","DIRECT","Direct Messaging Address","ronald.huffman.1@4693.direct.athenahealth.com","N","AMR direct access","","","","","","","","798 Oak Ridge Farm Hwy","Ste A","Mooresville","NC","US","281157924" -"1285637405","DIRECT","Direct Messaging Address","rmcgowen6071@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","100 Rosebrook Way","2nd Floor","Wareham","MA","US","025712097" -"1831192004","DIRECT","Direct Messaging Address","ebrennan122010@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","","Camp Hill","PA","US","170112203" -"1093718256","DIRECT","Direct Messaging Address","echamberlin134753@direct.ahn.org","N","","","","","","","","","1200 Brooks Ln","SUITE G-20","Jefferson Hills","PA","US","150253747" -"1083617245","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1598768756","DIRECT","Direct Messaging Address","meghancook@negaidx.allscriptsdirect.net","N","Direct Messaging","","DIRECT","Direct","","OTHER","Other","Direct Edge","1240 Jesse Jewell Pkwy SE","Ste 500","Gainesville","GA","US","305013861" -"1639172885","DIRECT","Direct Messaging Address","wbatchelor620096@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","3300 Gallows Rd","","Falls Church","VA","US","220423300" -"1184627333","DIRECT","Direct Messaging Address","rdave122020@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","Suite 400","Camp Hill","PA","US","170112203" -"1346243581","DIRECT","Direct Messaging Address","rkahn@raymondkahn.opdirect.net","N","","","DIRECT","Direct","","","","","5819 Highway 6","Ste 330","Missouri City","TX","US","774594070" -"1336142579","DIRECT","Direct Messaging Address","skim122045@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","Suite 400","Camp Hill","PA","US","170112203" -"1881697027","DIRECT","Direct Messaging Address","shawn.swan@mgh.eclinicaldirectplus.com","N","","","","","","","","","1419 W Bella Dr","","Marion","IN","US","469535250" -"1750384996","DIRECT","Direct Messaging Address","dman122058@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","Suite 400","Camp Hill","PA","US","170112203" -"1912900051","DIRECT","Direct Messaging Address","dlarkins6187@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","333 E County Line Rd","Suite B","Greenwood","IN","US","461431046" -"1629071766","DIRECT","Direct Messaging Address","martina.frost@nwhc.cernerdirect.com","N","AMR Direct Address","","","","","","","","6320 N La Cholla Blvd Ste 300","","Tucson","AZ","US","857413552" -"1245233386","DIRECT","Direct Messaging Address","thonkala134769@direct.ahn.org","N","","","","","","","","","1200 Brooks Ln","Ste G20","Jefferson Hills","PA","US","150253752" -"1740283878","DIRECT","Direct Messaging Address","cmanak388943@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","5777 E Mayo Blvd","","Phoenix","AZ","US","85054" -"1114920212","DIRECT","Direct Messaging Address","anne.cicale.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1538162631","DIRECT","Direct Messaging Address","daniel.park@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1441 Eastlake Ave","Ste 7416","Los Angeles","CA","US","900892211" -"1649273764","DIRECT","Direct Messaging Address","awali122107@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","Suite 400","Camp Hill","PA","US","170112203" -"1639172752","DIRECT","Direct Messaging Address","robert.fincher.1@3326.direct.athenahealth.com","N","Athena EMR","","","","","","","","210 Westside Dr","","Dothan","AL","US","363031928" -"1992708010","DIRECT","Direct Messaging Address","cspizzieri122100@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","Suite 400","Camp Hill","PA","US","170112203" -"1851394969","DIRECT","Direct Messaging Address","carla.branch.1@8824.direct.athenahealth.com","N","AMR direct address","","","","","","","","658 Northside Dr E","Ste A","Statesboro","GA","US","304584828" -"1548263932","DIRECT","Direct Messaging Address","richard.preciado@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1516 San Pablo St Fl 5","","Los Angeles","CA","US","900335313" -"1245233352","DIRECT","Direct Messaging Address","mmcgough9960@direct.beaumont.edu","N","","","","","","","","","1701 South Blvd E","Ste 390","Rochester Hills","MI","US","483076117" -"1942203047","DIRECT","Direct Messaging Address","admin@holc.oncoemrdirect.com","N","","","","","","","","","605B Medical Center Dr","","Alexandria","LA","US","713018127" -"1669475760","DIRECT","Direct Messaging Address","andrekallab@negaidx.allscriptsdirect.net","N","Direct Messaging","","DIRECT","Direct","","OTHER","Other","Direct Edge","1240 Jesse Jewell Pkwy SE","Ste 500","Gainesville","GA","US","305013861" -"1801899901","DIRECT","Direct Messaging Address","nperry9138@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","100 Town Center Rd S","Ste B","Mooresville","IN","US","461582321" -"1164425252","DIRECT","Direct Messaging Address","tedd.goldfinger@nwhc.cernerdirect.com","N","AMR Direct Address","","","","","","","","6320 N La Cholla Blvd Ste 300","","Tucson","AZ","US","857413552" -"1235132325","DIRECT","Direct Messaging Address","jperry7304@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","100 Town Center Rd S","Suite B","Mooresville","IN","US","46158" -"1255334322","DIRECT","Direct Messaging Address","bkurtz405553@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372324659" -"1871596940","DIRECT","Direct Messaging Address","ksiemon134787@direct.ahn.org","N","","","","","","","","","1200 Brooks Ln","SUITE G-20","Jefferson Hills","PA","US","150253747" -"1720081888","DIRECT","Direct Messaging Address","calvin.reid.1@3326.direct.athenahealth.com","N","Athena AMR","","","","","","","","210 Westside Dr","","Dothan","AL","US","363031928" -"1710980875","DIRECT","Direct Messaging Address","anthony.berni@direct.scosa.nextgenshare.com","N","","","","","","","","","9323 Phoenix Village Pkwy","","O Fallon","MO","US","633664281" -"1184627242","DIRECT","Direct Messaging Address","mduncan95050@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","132 Abigail Lane","","Port Matilda","PA","US","168705700" -"1699778753","DIRECT","Direct Messaging Address","deborah.castile@lutheranhealthnetwork.cernerdirect.com","N","AMR direct address","","","","","","","","7333 W Jefferson Blvd","","Fort Wayne","IN","US","468046280" -"1205839362","DIRECT","Direct Messaging Address","ivan.jackson.1@3326.direct.athenahealth.com","N","Athena EMR","","","","","","","","210 Westside Dr","","Dothan","AL","US","363031928" -"1568465623","DIRECT","Direct Messaging Address","gcrossley21062@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 Tvc","","Nashville","TN","US","372320001" -"1922001072","OTHERS","Other URL","tcneurology@gmail.com","N","TCN email","","DIRECT","Direct","","CSV","CSV","","2401 Frist Blvd Ste 2B","","Fort Pierce","FL","US","349504800" -"1518960491","DIRECT","Direct Messaging Address","fariba.zarinetchi@direct.davitaphysiciansolutions.com","N","","","","","","","","","1521 S Staples St","Ste 601","Corpus Christi","TX","US","784043154" -"1144223025","DIRECT","Direct Messaging Address","tschutte6984@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","6939 Cox Rd Ste 350","","Liberty Twp","OH","US","450697595" -"1952304834","DIRECT","Direct Messaging Address","smaclellantobert43045@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","800 West Ave S","","LA Crosse","WI","US","546018806" -"1427051390","DIRECT","Direct Messaging Address","rheavner112969@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1447253208","DIRECT","Direct Messaging Address","therrmann112970@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1801899661","DIRECT","Direct Messaging Address","cdunn135771@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","cdunn135771@direct-ehr-ssmhc.com","600 Medical Park Dr","","Mexico","MO","US","652653724" -"1801899661","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","600 Medical Park Dr","","Mexico","MO","US","652653724" -"1720081532","CONNECT","CONNECT URL","work","N","","","","","","","","","141 Hillcrest Dr","","Clarksville","TN","US","370435088" -"1528061322","DIRECT","Direct Messaging Address","vcox112865@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1487657136","DIRECT","Direct Messaging Address","mfilak25144@soc.inova.org","Y","Health Information Exchange","Inova Physician Partners, Inc.","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","6201 Centreville Rd Ste 100","","Centreville","VA","US","201212626" -"1093718900","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd","","Northbrook","IL","US","600622609" -"1093718900","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd","","Northbrook","IL","US","600622609" -"1831192756","DIRECT","Direct Messaging Address","rdsouzakamath1740@direct.theportlandclinic.net","N","","","","","","","","","15950 SW Millikan Way","","Beaverton","OR","US","970065170" -"1144223041","DIRECT","Direct Messaging Address","dhs@direct.deaconess.com","N","","","","","","","","","4640 W Lloyd Expy","","Evansville","IN","US","477126517" -"1578566469","DIRECT","Direct Messaging Address","lrutledge472581@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","719 Thompson Ln Ste 27100","","Nashville","TN","US","372044684" -"1255334132","DIRECT","Direct Messaging Address","sungjunhwangmd@theeyecarecenter.medentdirect.com","N","EMR E-mail address for secure sharing of patient","","DIRECT","Direct","","CSV","CSV","","325 West St","","Canandaigua","NY","US","144241723" -"1255334132","DIRECT","Direct Messaging Address","sungjunhwangmd@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","784 Pre Emption Rd","","Geneva","NY","US","144562092" -"1255334132","DIRECT","Direct Messaging Address","sungjunhwangmd@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","1210 Driving Park Ave","","Newark","NY","US","145131057" -"1841293727","DIRECT","Direct Messaging Address","shah.islam@direct.davitaphysiciansolutions.com","N","","","","","","","","","1521 S Staples St","Ste 601","Corpus Christi","TX","US","784043154" -"1790788545","DIRECT","Direct Messaging Address","jbraham108839@direct.wvuhsdirect.com","N","","","","","","","","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1790788545","DIRECT","Direct Messaging Address","jbraham108839@direct.wvuhsdirect.com","N","","","","","","","","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1790788545","DIRECT","Direct Messaging Address","jbraham108839@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1790788545","DIRECT","Direct Messaging Address","jbraham108839@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1497758239","DIRECT","Direct Messaging Address","chmcummins@chcsks.cernerdirect.com","N","Cerner","","DIRECT","Direct","","","","","206 S Grand Ave","","Saint Marys","KS","US","665361637" -"1023011863","DIRECT","Direct Messaging Address","lucindabuescher@siusm.allscriptsdirect.net","N","","","","","","","","","751 N Rutledge St","","Springfield","IL","US","627024909" -"1679576599","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","411 E Chestnut St # Street1","","Louisville","KY","US","402021713" -"1679576599","DIRECT","Direct Messaging Address","jsayat65866@direct.nortonhealthcare.org","N","","","","","","","","","411 E Chestnut St # Street1","","Louisville","KY","US","402021713" -"1386647253","DIRECT","Direct Messaging Address","karim.nooruddin@direct.davitaphysiciansolutions.com","N","","","","","","","","","5826 Esplanade Dr Ste 204","","Corpus Christi","TX","US","784144198" -"1568465383","DIRECT","Direct Messaging Address","kfluharty112968@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1083617872","DIRECT","Direct Messaging Address","thomas.backer@atlcardio.directbygreenway.com","N","direct messaging","","HIE","Health Information Exchange (HIE)","","","","","3400C Old Milton Pkwy Ste 395","","Alpharetta","GA","US","300054438" -"1063415859","DIRECT","Direct Messaging Address","cadkins112933@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1063415859","DIRECT","Direct Messaging Address","cadkins112933@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1063415859","DIRECT","Direct Messaging Address","cadkins112933@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1063415859","DIRECT","Direct Messaging Address","cadkins112933@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1134122914","OTHERS","Other URL","mail","N","","","","","","","","","6915 N Fir Rd","","Granger","IN","US","465304754" -"1023011798","DIRECT","Direct Messaging Address","sduchene@dekalbcounty.org","N","","","","","","","","","2600 N Annie Glidden Rd","","Dekalb","IL","US","601151207" -"1609879485","DIRECT","Direct Messaging Address","susan.kamovitch.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1720081797","DIRECT","Direct Messaging Address","david.barnes.p1@direct.eyeone.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","17 N Medical Park Dr","","Fishersville","VA","US","229392344" -"1982607958","DIRECT","Direct Messaging Address","james.gillespie.p1@direct.eyeone.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","425 S Linden Ave","","Waynesboro","VA","US","229803505" -"1699778662","DIRECT","Direct Messaging Address","anthony.spedale.1@20251.direct.athena.net","N","","","DIRECT","Direct","","CSV","CSV","","3113 Wesley Way Ste 1","","Dothan","AL","US","363052004" -"1225031297","DIRECT","Direct Messaging Address","racha.patel.p1@direct.eyeoneva.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","17 N Medical Park Dr","","Fishersville","VA","US","229392344" -"1477556371","DIRECT","Direct Messaging Address","stephen.ballmd.p2@direct.gmg.nextgenshare.com","N","Direct Address","","DIRECT","Direct","","OTHER","Other","Direct Edge","631 Professional Dr Ste 200","","Lawrenceville","GA","US","300463371" -"1811990716","DIRECT","Direct Messaging Address","aimee.flournoy.1@1293.direct.athenahealth.com","N","AMR direct address","","","","","","","","1009 NE Big Bend Trail","","Glen Rose","TX","US","760434912" -"1174526065","DIRECT","Direct Messaging Address","lmilam29090@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372322845" -"1922001767","DIRECT","Direct Messaging Address","kstooke112949@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1891798625","DIRECT","Direct Messaging Address","svance113009@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1528061355","DIRECT","Direct Messaging Address","jsemian82703@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","100 N Academy Ave","","Danville","PA","US","178227615" -"1265435226","DIRECT","Direct Messaging Address","marc.shields.p1@direct.eyeoneva.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1500 Commerce Rd","","Staunton","VA","US","244019032" -"1477556322","DIRECT","Direct Messaging Address","midcty2docs@ppdxdirect.com","N","","","DIRECT","Direct","","","","","1039 N Twin City Hwy Ste B","","Nederland","TX","US","77627" -"1275536120","DIRECT","Direct Messaging Address","james.schaberg@direct.scosa.nextgenshare.com","N","","","","","","","","","9323 Phoenix Village Pkwy","","O Fallon","MO","US","633664281" -"1770586620","DIRECT","Direct Messaging Address","midcty2docs@ppdxdirect.com","N","","","DIRECT","Direct","","","","","1039 N Twin City Hwy Ste B","","Nederland","TX","US","77627" -"1861495632","DIRECT","Direct Messaging Address","fsoans@cpemds.ecldirect.com","N","","","DIRECT","Direct","","","","","7717 E 29th St N Ste 100","","Wichita","KS","US","672263444" -"1679576441","DIRECT","Direct Messaging Address","emiller113019@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Grand Central Mall Ste 4","","Vienna","WV","US","261054100" -"1134122906","DIRECT","Direct Messaging Address","mquinlan135765@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","mquinlan135765@direct-ehr-ssmhc.com","600 Medical Park Dr","","Mexico","MO","US","652653724" -"1134122906","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","600 Medical Park Dr","","Mexico","MO","US","652653724" -"1942203922","DIRECT","Direct Messaging Address","npastis1582@direct.musc.edu","N","","","DIRECT","Direct","","","","","171 Ashley Ave","","Charleston","SC","US","294258900" -"1386647345","CONNECT","CONNECT URL","obgynbillings@wudosis.wustl.edu","Y","Washington University","Washington University","OTHER","Other","CMS esMD eMDR","","","","660 S Euclid Ave","","Saint Louis","MO","US","631101010" -"1710980453","DIRECT","Direct Messaging Address","rmiller5231@direct.musc.edu","N","","","DIRECT","Direct","","","","","171 Ashley Ave","","Charleston","SC","US","294258908" -"1710980453","DIRECT","Direct Messaging Address","rmiller5231@direct.musc.edu","N","","","DIRECT","Direct","","","","","171 Ashley Ave","","Charleston","SC","US","294258908" -"1558364430","DIRECT","Direct Messaging Address","heidipipermd@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","325 West St","","Canandaigua","NY","US","144241723" -"1558364430","DIRECT","Direct Messaging Address","heidipipermd@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","784 Pre Emption Rd","","Geneva","NY","US","144562092" -"1558364430","DIRECT","Direct Messaging Address","heidipipermd@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","1210 Driving Park Ave","","Newark","NY","US","145131057" -"1639172513","DIRECT","Direct Messaging Address","estamler7006@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","5885 Harrison Ave","Suite 3100","Cincinnati","OH","US","452481691" -"1144223876","DIRECT","Direct Messaging Address","Geeta.Reddy@direct.davitaphysiciansolutions.com","N","","","","","","","","","1315 Santa Fe St Ste 102","","Corpus Christi","TX","US","784042242" -"1356344162","DIRECT","Direct Messaging Address","cdent454415@direct.healthsystem.virginia.edu","N","","","DIRECT","Direct","","","","","2014 Goose Creek Rd Ste 116","","Waynesboro","VA","US","229806588" -"1700889516","DIRECT","Direct Messaging Address","aodibo86037@direct.tgh.org","N","","","","","","","","","2 Tampa General Cir","STC 4th floor","Tampa","FL","US","336063603" -"1073516704","DIRECT","Direct Messaging Address","paul.schmidt.1@1293.direct.athenahealth.com","N","AMR direct address","","","","","","","","507 SW Big Bend Trl","","Glen Rose","TX","US","760434449" -"1639172240","DIRECT","Direct Messaging Address","staceyjo.murray.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1902809502","DIRECT","Direct Messaging Address","ugoldberg5758@samhealth.direct-ci.com","N","","","","","","","","","199 W Highway 20","","Toledo","OR","US","973911242" -"1598768194","DIRECT","Direct Messaging Address","hisdept@direct.cloquethospital.com","N","","","","","","","","","512 Skyline Blvd Ste 1","","Cloquet","MN","US","557201199" -"1912900648","DIRECT","Direct Messaging Address","TDALTON16354@DIRECT.NOVANTHEALTH.ORG","N","","","","","","","","","1995 Bethabara Rd","","Winston-Salem","NC","US","271063375" -"1093718728","DIRECT","Direct Messaging Address","matherhospital@jtmmh.allscriptsdirect.net","N","Mather Hospital MedAllies Direct Address","","HIE","Health Information Exchange (HIE)","","","","","75 N Country Rd","","Port Jefferson","NY","US","117772119" -"1093718728","FHIR","FHIR URL","https://fhirprod.matherhospital.org/","N","Mather Hospital FHIR API","","HIE","Health Information Exchange (HIE)","","","","","75 N Country Rd","","Port Jefferson","NY","US","117772119" -"1760485486","DIRECT","Direct Messaging Address","cwarnimont5335@direct.novanthealth.org","N","","","","","","","","","105 Stadium Oaks Dr","","Clemmons","NC","US","270128962" -"1871596403","DIRECT","Direct Messaging Address","tdavenport.cmchealthcare@direct.ethin.org","N","","","","","","","","","421 S Main St","","Crossville","TN","US","385555048" -"1124021753","DIRECT","Direct Messaging Address","slewis109710@oc.providencedirect.org","N","","","","","","","","","9135 SW Barnes Rd","STE 261","Portland","OR","US","972256601" -"1063415669","DIRECT","Direct Messaging Address","rkrumdieck98258@direct.novanthealth.org","N","","","","","","","","","170 medical park road","Ste 101","Mooresville","NC","US","281178524" -"1558364166","DIRECT","Direct Messaging Address","MadisonMedicalGroup.WayneLajewski@139340.advancedmd-direct.com","N","Direct Mail into EMR / AdvancedMD","","DIRECT","Direct","","","","","159 Main St Ste 1B","","Chatham","NJ","US","079282415" -"1366445975","DIRECT","Direct Messaging Address","adelaney15603@sih.direct-ci.com","N","","","","","","","","","409 W Oak St","","Carbondale","IL","US","629011464" -"1669475265","DIRECT","Direct Messaging Address","rlewis29375@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","1075 Jesse Jewell Pkwy NE","Ste B","Gainesville","GA","US","305013814" -"1669475265","DIRECT","Direct Messaging Address","rlewis29375@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","1439 Jesse Jewell Pkwy NE Ste 302","","Gainesville","GA","US","305013806" -"1467455931","DIRECT","Direct Messaging Address","ethomason61941@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","7250 Clearvista Dr Ste 100","","Indianapolis","IN","US","462564640" -"1962405522","DIRECT","Direct Messaging Address","medreview@reverehealth.com","Y","","Central Utah Clinic, P.C.","","","","","","","5896 S Ridgeline Dr","Suite B","Ogden","UT","US","844056779" -"1013910645","DIRECT","Direct Messaging Address","RPoser@pc.gwaydirect.com","N","","","DIRECT","Direct","","OTHER","Other","RPoser@pc.gwaydirect.com","635 Park Ave","","Columbus","WI","US","539252604" -"1457354086","DIRECT","Direct Messaging Address","donna.montesi.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1114920824","DIRECT","Direct Messaging Address","vasimacopoulos15928@ce-direct.presencehealth.org","N","","","","","","","","","205 S Northwest Hwy","","Park Ridge","IL","US","600685802" -"1154324846","DIRECT","Direct Messaging Address","spackard67897@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","2200 NW 26th St","","Owatonna","MN","US","550605503" -"1669475240","DIRECT","Direct Messaging Address","kyle.hudgens.1@9954.direct.athenahealth.com","N","AMR direct address","","","","","","","","3686 Grandview Pkwy Ste 600","","Birmingham","AL","US","352433406" -"1013910694","DIRECT","Direct Messaging Address","rodney.swillie.1@9954.direct.athenahealth.com","N","AMR direct address","","","","","","","","3686 Grandview Pkwy Ste 600","","Birmingham","AL","US","352433406" -"1619970290","DIRECT","Direct Messaging Address","james.strong.1@9954.direct.athenahealth.com","N","AMR direct address","","","","","","","","3686 Grandview Pkwy Ste 600","","Birmingham","AL","US","352433406" -"1861495475","DIRECT","Direct Messaging Address","direct@cityofhope.direct-ci.com","Y","","CITY OF HOPE MEDICAL FOUNDATION","","","","","","","1500 Duarte Rd","","Duarte","CA","US","910103012" -"1811990476","DIRECT","Direct Messaging Address","jtheriot179399@direct.nortonhealthcare.org","N","","","","","","","","","411 E Chestnut St # Street1","","Louisville","KY","US","402021713" -"1811990476","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","411 E Chestnut St # Street1","","Louisville","KY","US","402021713" -"1992708614","DIRECT","Direct Messaging Address","wluce4222@direct.lexmed.com","N","","","","","","","","","2720 Sunset Blvd","","West Columbia","SC","US","291694810" -"1962405688","DIRECT","Direct Messaging Address","DHAUBERT16353@DIRECT.NOVANTHEALTH.ORG","N","","","","","","","","","1995 Bethabara Rd","","Winston-Salem","NC","US","271063375" -"1750384343","DIRECT","Direct Messaging Address","pdavis4875@direct.novanthealth.org","N","","","","","","","","","105 Stadium Oaks Dr","","Clemmons","NC","US","270128962" -"1518960228","DIRECT","Direct Messaging Address","pkirk6857@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","4460 RED BANK EXPRESSWAY","SUITE 110","CINCINNATI","OH","US","452272173" -"1396748000","DIRECT","Direct Messaging Address","lawrence.gans.p31@direct.surevision.nextgenshare.com","N","","","","","","","","","7934 N Lindbergh Blvd","Suite A","Hazelwood","MO","US","630423521" -"1235132812","DIRECT","Direct Messaging Address","ajohnson153965@direct.ahn.org","N","","","","","","","","","4247 W Ridge Rd Ste 101","","Erie","PA","US","165061746" -"1235132812","DIRECT","Direct Messaging Address","ajohnson153965@direct.ahn.org","N","","","","","","","","","4247 W Ridge Rd Ste 101","","Erie","PA","US","165061746" -"1184627879","DIRECT","Direct Messaging Address","jromero97108@direct.ahn.org","N","","","","","","","","","3394 Saxonburg Blvd","Suite 600","Glenshaw","PA","US","151163168" -"1144223835","DIRECT","Direct Messaging Address","medreview@reverehealth.com","Y","","Central Utah Clinic, P.C.","","","","","","","1055 N 500 W","Suite 102","Provo","UT","US","846043305" -"1437152006","DIRECT","Direct Messaging Address","julieknapka@npa.allscriptsdirect.net","N","Julie Knapka, CRNP Direct Address Allscripts Pro EHR","","DIRECT","Direct","","OTHER","Other","CCD","1012 Water St","","Meadville","PA","US","163353444" -"1245233899","DIRECT","Direct Messaging Address","robert.morep63@direct.hunterdon.nextshare.com","N","NextGen EMR Direct Adress","","DIRECT","Direct","","","","","8100 Wescott Drive","","Flemington","NJ","US","088224671" -"1871596429","DIRECT","Direct Messaging Address","candyceluciando@npa.allscriptsdirect.net","N","Dr. Candyce Lucian Direct Address Allscripts Pro EHR","","DIRECT","Direct","","OTHER","Other","CCD","8508 State Hwy 285","","Conneaut Lake","PA","US","163161120" -"1780687335","DIRECT","Direct Messaging Address","jreginelli10739@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","11140 Montgomery Rd","","Cincinnati","OH","US","452492309" -"1417950981","DIRECT","Direct Messaging Address","tshaver@vsa.gwaydirect.com","N","","","","","","","","","13135 Lee Jackson Memorial Hwy Ste 305","","Fairfax","VA","US","220331907" -"1326041922","DIRECT","Direct Messaging Address","aclayton20458@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","719 Thompson Ln Ste 26300","","Nashville","TN","US","372044679" -"1508869090","DIRECT","Direct Messaging Address","mross@stokeseye.integrityemrdirect.com","N","","","HIE","Health Information Exchange (HIE)","","","","","367 W Evans St","","Florence","SC","US","295013429" -"1588667067","DIRECT","Direct Messaging Address","hstokes@stokeseye.integrityemrdirect.com","N","","","HIE","Health Information Exchange (HIE)","","","","","367 W Evans St","","Florence","SC","US","295013429" -"1013910595","DIRECT","Direct Messaging Address","mstokes@stokeseye.integrityemrdirect.com","N","","","HIE","Health Information Exchange (HIE)","","","","","367 W Evans St","","Florence","SC","US","295013429" -"1093718579","DIRECT","Direct Messaging Address","jgraybill30464@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","7229 Clearvista Dr","","Indianapolis","IN","US","462561698" -"1447253927","DIRECT","Direct Messaging Address","michael.o.connell.1@1928.direct.athenahealth.com","N","AMR Direct Address","","","","","","","","2435 S Telshor Blvd","","Las Cruces","NM","US","880115029" -"1780687269","DIRECT","Direct Messaging Address","gking@stokeseye.integrityemrdirect.com","N","","","HIE","Health Information Exchange (HIE)","","","","","365 W Wesmark Blvd","","Sumter","SC","US","291501987" -"1689677155","DIRECT","Direct Messaging Address","jgoodson@stokeseye.integrityemrdirect.com","N","","","HIE","Health Information Exchange (HIE)","","","","","365 W Wesmark Blvd","","Sumter","SC","US","291501987" -"1710980248","DIRECT","Direct Messaging Address","jamesallman@uhps.allscriptsdirect.net","N","","","","","","","","","350 Hillcrest Dr","Suite 2","Ashland","OH","US","448054052" -"1477556991","DIRECT","Direct Messaging Address","virginia.lolley.p1@direct.uabmc.nextgenshare.com","N","","","","","","","","","700 18th St S Ste 601","","Birmingham","AL","US","352333800" -"1619970126","DIRECT","Direct Messaging Address","richard.gutknecht@digichart.direct-ci.com","N","","","","","","","","","19550 E 39th St S","Suite 300","Independence","MO","US","640572303" -"1013910421","DIRECT","Direct Messaging Address","Direct@PFFranckeMGNunleyMDsCharlestonWV.Compulink.com","N","","","","","","","","","1220 Lee St E Ste 203","","Charleston","WV","US","253011864" -"1407859846","DIRECT","Direct Messaging Address","request@endocrinemd.net","N","","","DIRECT","Direct","","CSV","CSV","","6430 Rockledge Dr Ste 300","","Bethesda","MD","US","208171847" -"1770586109","DIRECT","Direct Messaging Address","request@endocrinemd.net","N","","","DIRECT","Direct","","CSV","CSV","","6430 Rockledge Dr Ste 300","","Bethesda","MD","US","208171847" -"1386647717","DIRECT","Direct Messaging Address","BMCU_INBOX@DIRECT.USPI.COM","N","DIRECT EMAIL ADDRESS","","DIRECT","Direct","","","","","2727 E Lemmon Ave","","Dallas","TX","US","75204" -"1376546705","DIRECT","Direct Messaging Address","peterplessmd@npa.allscriptsdirect.net","N","Dr. Pless Direct Address Allscripts Pro EHR","","DIRECT","Direct","","OTHER","Other","CCD","505 Poplar St","","Meadville","PA","US","163353057" -"1821091240","DIRECT","Direct Messaging Address","request@endocrinemd.net","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","6430 Rockledge Dr Ste 300","","Bethesda","MD","US","208171847" -"1467455881","DIRECT","Direct Messaging Address","mkarram6849@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","11140 Montgomery Rd","","Cincinnati","OH","US","452492309" -"1467455881","DIRECT","Direct Messaging Address","mkarram6849@direct.thechristospital.com","N","","","DIRECT","Direct","","","","","11140 Montgomery Rd","","Cincinnati","OH","US","452492309" -"1982607297","DIRECT","Direct Messaging Address","hcho581945@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","24801 Pinebrook Rd Ste 110","","Chantilly","VA","US","20152" -"1306849716","DIRECT","Direct Messaging Address","stephenpappasjrmd@crds.direct.doctorsoft.com","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","6420 Rockledge Dr","Ste 4900","Bethesda","MD","US","208177848" -"1437152832","DIRECT","Direct Messaging Address","cgriffith113191@direct.tgh.org","N","","","","","","","","","13101 Bruce B Downs Blvd","","Tampa","FL","US","336123803" -"1306849625","DIRECT","Direct Messaging Address","mariannesuprysmd@npa.allscriptsdirect.net","N","Dr. Suprys Direct Address Allscripts Pro EHR","","DIRECT","Direct","","OTHER","Other","CCD","1012 Water St","","Meadville","PA","US","163353444" -"1336142777","DIRECT","Direct Messaging Address","dennis.sager.1@16718.direct.athenahealth.com","N","","","","","","","","","1800 Town Center Dr","Ste 313","Reston","VA","US","201903200" -"1811990211","DIRECT","Direct Messaging Address","amy.papszycki.1@1498.direct.athenahealth.com","N","","","","","","","","","200 Gentilly Blvd","","Cartersville","GA","US","301208504" -"1306849740","DIRECT","Direct Messaging Address","Neal.Brent@covenanthealth.cernerdirect.com","N","","","","","","","","","1610 Tazewell Rd","Suite 201","Tazewell","TN","US","378793600" -"1619970092","DIRECT","Direct Messaging Address","mthomas155489@direct.ahn.org","N","","","","","","","","","320 E North Ave","","Pittsburgh","PA","US","152124756" -"1154324531","DIRECT","Direct Messaging Address","michael.nirenberg@ffc.eclinicaldirect.com","N","eclinicalworks HISP direct messaging","","DIRECT","Direct","","","","","50 W 94th Pl","","Crown Point","IN","US","463071710" -"1780687129","DIRECT","Direct Messaging Address","lynne.einbinder@rwjbh.org","Y","email","RWJBarnabas","HIE","Health Information Exchange (HIE)","","CSV","CSV","","274 Highway 35","","Eatontown","NJ","US","077242105" -"1619979945","DIRECT","Direct Messaging Address","rswift59219@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","8650 Sudley Rd Ste 410","","Manassas","VA","US","201104416" -"1821091182","DIRECT","Direct Messaging Address","gtrubowitsch@swretina.intellechartdirect.net","N","","","","","","","","","1700 Curie Dr","Ste 3800","El Paso","TX","US","799022985" -"1043213465","DIRECT","Direct Messaging Address","deanspencermd@npa.allscriptsdirect.net","N","Dr. Spencer Direct Address Allscripts Pro EHR","","DIRECT","Direct","","OTHER","Other","CCD","1012 Water St","","Meadville","PA","US","163353468" -"1407859796","DIRECT","Direct Messaging Address","him@hmgpath.allscriptsdirect.net","N","DM address","","DIRECT","Direct","","CSV","CSV","","105 W Stone Dr","Ste 3A","Kingsport","TN","US","376603256" -"1093718389","DIRECT","Direct Messaging Address","krmcmedicalrecords@krhdirect.org","Y","","Kalispell Regional Medical Center Inc","","","","","","","350 Heritage Way","Suite 2100","Kalispell","MT","US","59901" -"1699778977","DIRECT","Direct Messaging Address","gina.delsaviomd.p1@direct.crystalrun.nextgenshare.com","N","","","DIRECT","Direct","","","","","219 Blooming Grove Tpke","","New Windsor","NY","US","125537769" -"1366445645","DIRECT","Direct Messaging Address","EdwardWade@eyectrtx.direct.eyemdemr.com","N","","","DIRECT","Direct","","","","","6565 West Loop S","SUITE 650","Bellaire","TX","US","774013500" -"1962405233","DIRECT","Direct Messaging Address","john.uhorchakmd.p1@direct.crystalrun.nextgenshare.com","N","","","DIRECT","Direct","","","","","219 Blooming Grove Tpke","","New Windsor","NY","US","12553" -"1669475927","DIRECT","Direct Messaging Address","jnesbitt29877@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372320028" -"1902809262","DIRECT","Direct Messaging Address","dmetrikin@swretina.intellechartdirect.com","N","","","","","","","","","1700 Curie Dr","Ste 3800","El Paso","TX","US","799022985" -"1801899158","DIRECT","Direct Messaging Address","aali46267@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","812 Gorman Ave","","Elkins","WV","US","262413181" -"1902809247","DIRECT","Direct Messaging Address","jculbertson@swretina.intellechartdirect.net","N","","","","","","","","","1700 Curie Dr","Ste 3800","El Paso","TX","US","799022985" -"1801899141","DIRECT","Direct Messaging Address","ralphsilverman@crsshsi.allscriptsdirect.net","N","","","","","","","","","12345 West Bend Dr.","Suite 303","St. Louis","MO","US","63128" -"1760485007","DIRECT","Direct Messaging Address","olatunji.akintilo.1@15486.direct.athenahealth.com","N","Use with Watseka location","","DIRECT","Direct","","","","","200 E Fairman Ave","","Watseka","IL","US","609701644" -"1003819335","DIRECT","Direct Messaging Address","charles.metzger.1@1928.direct.athenahealth.com","N","AMR Direct Address","","","","","","","","4351 E Lohman Ave","Suite301","Las Cruces","NM","US","880118259" -"1154323467","DIRECT","Direct Messaging Address","enelson26865@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","800 West Ave S","","LA Crosse","WI","US","54601" -"1497757769","DIRECT","Direct Messaging Address","sbialkin189903@samhealth.direct-ci.com","N","","","","","","","","","3615 NW Samaritan Dr Ste 203","","Corvallis","OR","US","973303771" -"1457353716","DIRECT","Direct Messaging Address","soxentenko139089@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","559050001" -"1326040569","DIRECT","Direct Messaging Address","cpipan27810@soc.inova.org","Y","Health Information Exchange","Inova Physician Partners, Inc.","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","24801 Pinebrook Rd Ste 202","","Chantilly","VA","US","201524113" -"1619979838","DIRECT","Direct Messaging Address","direct@direct.bronsonhg.org","Y","Bronson Healthcare Group Direct address","Bronson Healthcare Group","DIRECT","Direct","","OTHER","Other","Continuity of Care Document","601 John St","","Kalamazoo","MI","US","490075341" -"1033111232","REST","RESTful URL","smaraboyina1802@direct.premierhealth.com","N","","","","","","","","","1530 Needmore Rd","Ste 300","Dayton","OH","US","454143969" -"1538161732","DIRECT","Direct Messaging Address","psabra6329@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 North Main Street","Suite 306","Fall River","MA","US","027202972" -"1497757678","DIRECT","Direct Messaging Address","pcurran5702@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1030 President Ave","Suite 3001","Fall River","MA","US","027205923" -"1932103272","DIRECT","Direct Messaging Address","jluy@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","44035 Riverside Pkwy","Ste 400","Leesburg","VA","US","201768260" -"1750385092","DIRECT","Direct Messaging Address","kpiva6217@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 N Main St","Suite 306","Fall River","MA","US","027202972" -"1285638528","DIRECT","Direct Messaging Address","ssheifer@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","3580 Joseph Siewick Dr Ste 305","","Fairfax","VA","US","220331764" -"1427050723","DIRECT","Direct Messaging Address","terchinger132595@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","1000 East Mountain Blvd.","","Wilkes-Barre","PA","US","187113762" -"1922000181","DIRECT","Direct Messaging Address","pnayak@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","130 Park St SE","Ste 100","Vienna","VA","US","221804626" -"1538161781","DIRECT","Direct Messaging Address","kzuzarte6510@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 North Main Street","Suite 306","Fall River","MA","US","027202972" -"1447252697","DIRECT","Direct Messaging Address","amela270467@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","10990 State Route 61","","Mount Carmel","PA","US","178512575" -"1700888955","DIRECT","Direct Messaging Address","rbawa301909@eCommunityDirect.com","Y","","REID HOSPITAL & HEALTH CARE SERVICES, INC","","","","","","","1434 Chester Blvd","","Richmond","IN","US","473741947" -"1609878859","DIRECT","Direct Messaging Address","mbrillantes5581@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 North Main Street","Suite 306","Fall River","MA","US","027202972" -"1215939467","DIRECT","Direct Messaging Address","djetmore301072@eCommunityDirect.com","Y","","REID HOSPITAL & HEALTH CARE SERVICES, INC","","","","","","","1434 Chester Blvd.","","Richmond","IN","US","473741919" -"1275537516","DIRECT","Direct Messaging Address","tholder@supportcaretulsa.com","N","Secure electronic mail","","HIE","Health Information Exchange (HIE)","","OTHER","Other","text","6950 S Utica Ave","","Tulsa","OK","US","741363903" -"1386646420","DIRECT","Direct Messaging Address","rshor@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","1850 Town Center Pkwy","Ste 550","Reston","VA","US","201903219" -"1114929247","DIRECT","Direct Messaging Address","mtanenbaum@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","4660 Kenmore Ave Ste 1200","","Alexandria","VA","US","223041311" -"1457353583","DIRECT","Direct Messaging Address","ktrivedi@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","3580 Joseph Siewick Dr Ste 305","","Fairfax","VA","US","220331764" -"1720082076","OTHERS","Other URL","K.Statum@inspiremedical.com","Y","","INSPIRE MEDICAL GROUP INC","HIE","Health Information Exchange (HIE)","","OTHER","Other","I don’t know","1500 Lakeland Hills Blvd Ste 1","","Lakeland","FL","US","338053257" -"1972505246","DIRECT","Direct Messaging Address","skratz92076@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","301 2nd St NE","","New Prague","MN","US","560711709" -"1104828441","DIRECT","Direct Messaging Address","request@endocrinemd.net","N","email","","HIE","Health Information Exchange (HIE)","","","","","6430 Rockledge Dr Ste 300","","Bethesda","MD","US","208171847" -"1538161773","DIRECT","Direct Messaging Address","tphillips27033@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","700 West Ave S","","LA Crosse","WI","US","546014783" -"1336141571","DIRECT","Direct Messaging Address","schindler.james@covenanthealth.cernerdirect.com","N","","","","","","","","","1721 Main St","","White Pine","TN","US","378903303" -"1396747523","DIRECT","Direct Messaging Address","jeffrey.bezier@direct.laurel.nextgenshare.com","N","NextGen Share","","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCD's","50 Waterford Pike","","Brookville","PA","US","158252518" -"1013919232","DIRECT","Direct Messaging Address","fundador.adajar.1@1610.direct.athenahealth.com","N","AMR Direct Access","","","","","","","","2890 N Wilshire Blvd","","Roswell","NM","US","882016514" -"1568464782","DIRECT","Direct Messaging Address","wlee27470@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372322845" -"1699777813","DIRECT","Direct Messaging Address","kmaliekel82010@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","kmaliekel82010@direct-ehr-ssmhc.com","1475 Kisker Rd Ste 180","","Saint Charles","MO","US","633048786" -"1699777813","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","1475 Kisker Rd Ste 180","","Saint Charles","MO","US","633048786" -"1043212269","DIRECT","Direct Messaging Address","markmostovych@cvsapa.allscriptsdirect.net","N","","","DIRECT","Direct","","","","","1824 King St","Ste 200","Jacksonville","FL","US","322044735" -"1841292091","DIRECT","Direct Messaging Address","lrubin@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","4660 Kenmore Ave","Ste 1200","Alexandria","VA","US","223041311" -"1467454611","DIRECT","Direct Messaging Address","ssundar6415@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1030 President Ave","Suite 1001","Fall River","MA","US","027205923" -"1497759724","DIRECT","Direct Messaging Address","asafko@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","205 Hirst Rd Ste 101","","Purcellville","VA","US","201326199" -"1275535486","DIRECT","Direct Messaging Address","mgabry5830@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 North Main Street","Suite 306","Fall River","MA","US","027202972" -"1417959610","DIRECT","Direct Messaging Address","mbaig5509@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 North Main Street","Suite 306","Fall River","MA","US","027202972" -"1235131434","DIRECT","Direct Messaging Address","michelle.lemberger@digichart.direct-ci.com","N","","","","","","","","","19550 E 39th St S","Ste 300","Independence","MO","US","640572303" -"1932101128","DIRECT","Direct Messaging Address","bproctor88529@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","701 Hewitt Blvd","","Red Wing","MN","US","550662848" -"1295737484","DIRECT","Direct Messaging Address","orthopedicsnurse@mcclinic.direct-ci.net","N","Mason City Clinic Direct Email Address","","DIRECT","Direct","","OTHER","Other","CCDA","250 S Crescent Dr","","Mason City","IA","US","504012926" -"1518969708","DIRECT","Direct Messaging Address","jlambert5973@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 North Main Street","Suite 306","Fall River","MA","US","027202972" -"1205838471","DIRECT","Direct Messaging Address","cmarder@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","130 Park St SE","Ste 100","Vienna","VA","US","221804626" -"1366444523","DIRECT","Direct Messaging Address","aparente@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","1005 N Glebe Rd","#750","Arlington","VA","US","222015718" -"1841292927","DIRECT","Direct Messaging Address","Publichealth@broomfield.org","N","email address for organization","","","","","","","","100 Spader Way","","Broomfield","CO","US","800202441" -"1720080807","CONNECT","CONNECT URL","www.horizoninfusions.com","N","","","","","","","","","4260 Glendale Milford Rd Ste 1007","","Blue Ash","OH","US","452423763" -"1588668842","CONNECT","CONNECT URL","https://urldefense.proofpoint.com/v2/url?u=https-3A__cobiusconnect.cobius.com-3A8291_Gateway_Documen","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1750385019","DIRECT","Direct Messaging Address","skatyal121620@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Park","","Wheeling","WV","US","260036379" -"1750385019","DIRECT","Direct Messaging Address","skatyal121620@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Park","","Wheeling","WV","US","260036379" -"1730183096","DIRECT","Direct Messaging Address","jcasler67201@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","4500 San Pablo Rd S","","Jacksonville","FL","US","322241865" -"1528060589","DIRECT","Direct Messaging Address","mspearman10497@direct.ahn.org","N","","","","","","","","","4800 Friendship Ave","","Pittsburgh","PA","US","152241722" -"1841292943","DIRECT","Direct Messaging Address","rrostock63568@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","1000 E Mountain Blvd","","Wilkes Barre","PA","US","187110027" -"1093717191","DIRECT","Direct Messaging Address","RMC@nthe.ecldirect.net","N","","","HIE","Health Information Exchange (HIE)","","","","","127 Park Pl","","Alpena","MI","US","497072827" -"1497759773","DIRECT","Direct Messaging Address","cofer.kenneth@covenanthealth.cernerdirect.com","N","","","","","","","","","1915 White Ave","","Knoxville","TN","US","379162300" -"1740282706","DIRECT","Direct Messaging Address","dhampton40058@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","208 Mill Rd","","Fairhaven","MA","US","027195208" -"1982608956","DIRECT","Direct Messaging Address","mmeuth6110@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1565 North Main Street","Suite 306","Fall River","MA","US","027202972" -"1952305922","DIRECT","Direct Messaging Address","Direct@ProfessionalEyeAssociatesDaltonGA.CompulinkDirect.com","N","Dalton location","","DIRECT","Direct","","OTHER","Other","Dalton","1111 Professional Blvd","","Dalton","GA","US","307202588" -"1336143395","DIRECT","Direct Messaging Address","personalcare@independencefirst.org","N","direct email address","","DIRECT","Direct","","CSV","CSV","","540 S 1st St","","Milwaukee","WI","US","532041605" -"1679577639","DIRECT","Direct Messaging Address","luis.dibos.1@4692.direct.athenahealth.com","N","AMR Direct Address","","","","","","","","2380 Harbor Blvd","","Port Charlotte","FL","US","339525024" -"1013911031","DIRECT","Direct Messaging Address","donald.maddack.1@direct.athenahealth.com","N","AMR direct address","","","","","","","","3125 Willowcreek Rd","","Portage","IN","US","463684423" -"1447254461","DIRECT","Direct Messaging Address","Marshall.Kalinsky@rsfpp.eclinicaldirectplus.com","N","Document and CCD Exchange","","DIRECT","Direct","","OTHER","Other","Patient Care Documents","319 Folly Rd","","Charleston","SC","US","294122518" -"1083618003","DIRECT","Direct Messaging Address","kkassabian36918@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","kkassabian36918@direct-ehr-ssmhc.com","608 NW 9th St","Suite 2200","Oklahoma City","OK","US","731021068" -"1083618003","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","608 NW 9th St","Suite 2200","Oklahoma City","OK","US","731021068" -"1154325173","DIRECT","Direct Messaging Address","kimberlyaho@mklt.allscriptsdirect.net","N","Mankato Clinic Direct ID, Allscripts Community Direct Messaging","","DIRECT","Direct","","CSV","CSV","","1230 E Main St","","Mankato","MN","US","560015066" -"1922002997","DIRECT","Direct Messaging Address","rwalters@crhn.cernerdirect.com","Y","crhs","Columbus Regional Healthcare System","DIRECT","Direct","","OTHER","Other","Summary of Care","500 Jefferson St","","Whiteville","NC","US","284723634" -"1649274622","DIRECT","Direct Messaging Address","ncossa@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","2901 Telestar Ct","#200","Falls Church","VA","US","220421260" -"1487658464","DIRECT","Direct Messaging Address","skulangara@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","130 Park St SE Ste 100","","Vienna","VA","US","221804626" -"1194729087","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1396749362","DIRECT","Direct Messaging Address","lmiller@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","4660 Kenmore Ave","Ste 1200","Alexandria","VA","US","223041311" -"1285638213","CONNECT","CONNECT URL","egoldman@retinacenter.intellechartdirect.net","Y","","Edward J. Goldman, M.D.,P.A.","OTHER","Other","CMS esMD eMDR","","","","25 Crossroads Dr","Ste 412","Owings Mills","MD","US","211175439" -"1184628125","DIRECT","Direct Messaging Address","jlinfert12226@direct.lexmed.com","N","","","","","","","","","233 Longtown Rd","","Columbia","SC","US","292298550" -"1427052406","DIRECT","Direct Messaging Address","jkiernan@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","2901 Telestar Ct","#200","Falls Church","VA","US","220421260" -"1881698868","DIRECT","Direct Messaging Address","dgreco@crhn.cernerdirect.com","Y","crhs","Columbus Regional Healthcare System","DIRECT","Direct","","OTHER","Other","Summary of Care","500 Jefferson St","","Whiteville","NC","US","284723634" -"1518961507","DIRECT","Direct Messaging Address","awatanabe7594@edirect.crh.org","N","direct address","","DIRECT","Direct","","OTHER","Other","direct address","4050 Central Avenue","","Columbus","IN","US","47203" -"1679577662","CONNECT","CONNECT URL","redmana@ohit.sharear.net","N","","","","","","","","","1801 W 40th Ave","Ste 6A","Pine Bluff","AR","US","716036963" -"1700880606","DIRECT","Direct Messaging Address","ddarcyloescher7660@edirect.crh.org","N","direct address","","DIRECT","Direct","","OTHER","Other","direct address","4050 Central Avenue","","Columbus","IN","US","47203" -"1548264450","DIRECT","Direct Messaging Address","aspen.ralph@nwhc.cernerdirect.com","N","AMR Direct Address","","","","","","","","6060 N Fountain Plaza Dr Ste 270","","Tucson","AZ","US","857047873" -"1063416972","DIRECT","Direct Messaging Address","direct@direct.bronsonhg.org","Y","Bronson Healthcare Group Direct address","Bronson Healthcare Group","DIRECT","Direct","","OTHER","Other","Continuity of Care Document","601 John St","","Kalamazoo","MI","US","490075341" -"1245234210","DIRECT","Direct Messaging Address","depstein10483@direct.ahn.org","N","","","","","","","","","320 E North Ave","","Pittsburgh","PA","US","152124756" -"1386648244","DIRECT","Direct Messaging Address","direct@direct.bronsonhg.org","Y","Bronson Healthcare Group Direct address","Bronson Healthcare Group","DIRECT","Direct","","OTHER","Other","Continuity of Care Document","601 John St","","Kalamazoo","MI","US","490075341" -"1134123193","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1710981774","DIRECT","Direct Messaging Address","swagerty@medstar911.org","N","swagerty@medstar911.org","","DIRECT","Direct","","CSV","CSV","","2900 Alta Mere Dr","","Fort Worth","TX","US","76116" -"1174527139","DIRECT","Direct Messaging Address","daniellanda@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","2240 N Harbor Blvd Ste 200","","Fullerton","CA","US","928352635" -"1639173438","DIRECT","Direct Messaging Address","tbrogan173365@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","3611 S Reed Rd","STE 213","Kokomo","IN","US","469023806" -"1548264401","DIRECT","Direct Messaging Address","robert.caffrey@digichart.direct-ci.com","N","","","","","","","","","19550 E 39th St S","Ste 300","Independence","MO","US","640572303" -"1558365411","DIRECT","Direct Messaging Address","eric.kanter.p1@direct.rvc-nj.nextgenshare.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","349 E Northfield Rd","Ste 100","Livingston","NJ","US","070394802" -"1821092792","DIRECT","Direct Messaging Address","adiamond115024@direct.wvuhsdirect.com","N","DIRECT ADDRESS","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Center Dr","","Morgantown","WV","US","265061200" -"1598769465","DIRECT","Direct Messaging Address","jpincavitch48610@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Center Dr","","Morgantown","WV","US","265061200" -"1598769465","DIRECT","Direct Messaging Address","jpincavitch48610@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Center Dr","","Morgantown","WV","US","265061200" -"1134123003","DIRECT","Direct Messaging Address","mborst305572@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","mborst305572@direct-ehr-ssmhc.com","700 S Park St","","Madison","WI","US","537151830" -"1134123003","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","700 S Park St","","Madison","WI","US","537151830" -"1487658357","DIRECT","Direct Messaging Address","mnotarianni@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","1005 N Glebe Rd","#750","Arlington","VA","US","222015718" -"1891799771","DIRECT","Direct Messaging Address","njvision@optimum.net","N","Practice E-mail Address","","DIRECT","Direct","","CSV","CSV","","124 Gregory Ave","Ste 104","Passaic","NJ","US","070554856" -"1639173420","OTHERS","Other URL","james.meredith@jtmmd.eclinicaldirectplus.com","Y","clinic direct email address","James T. Meredith Jr MD PA","DIRECT","Direct","","CSV","CSV","","921 Holiday Dr","","Forrest City","AR","US","723359183" -"1821092669","DIRECT","Direct Messaging Address","marc.dean.1@1498.direct.athenahealth.com","N","","","","","","","","","330 Turner McCall Blvd SW","","Rome","GA","US","301655630" -"1972507721","CONNECT","CONNECT URL","Notapplicable","N","","","","","","","","","180 Ferrum Mountain Rd","","Ferrum","VA","US","240882939" -"1518961374","DIRECT","Direct Messaging Address","scherukuri169606@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","1000 East Mountain Blvd","","Wilkes Barre","PA","US","18711" -"1245234061","DIRECT","Direct Messaging Address","williamsn@ohit.sharear.net","N","","","","","","","","","1801 W 40th Ave","Ste 6A","Pine Bluff","AR","US","716036963" -"1699779546","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1417951369","DIRECT","Direct Messaging Address","oidowu17907@directwellstar.org","N","","","","","","","","","3950 Austell Rd","Box 22","Austell","GA","US","301061121" -"1114921061","DIRECT","Direct Messaging Address","tim.hall@digichart.direct-ci.com","N","","","","","","","","","19550 E 39th St S","Ste 300","Independence","MO","US","640572303" -"1811991763","DIRECT","Direct Messaging Address","dwickel162668@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","502 Cabela Dr","","Triadelphia","WV","US","260591044" -"1346244159","DIRECT","Direct Messaging Address","grauscher@directaddress.net","N","direct message","","HIE","Health Information Exchange (HIE)","","OTHER","Other","XML","20 Prospect Ave","Ste 600","Hackensack","NJ","US","076011962" -"1053315879","DIRECT","Direct Messaging Address","jstarke1183391@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","901 Montgomery St","","Decorah","IA","US","521012325" -"1477557148","DIRECT","Direct Messaging Address","dmann@southeasteye.gwaydirect.com","N","Greenway PrimeSuite","","DIRECT","Direct","","OTHER","Other","CCDA","7268 Jarnigan Rd","Suite 200","Chattanooga","TN","US","374213097" -"1285638957","DIRECT","Direct Messaging Address","michael.tornwall@hvmg.org","N","Hocking Valley Medical Group, Inc","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","819 State Route 664 N Ste B","","Logan","OH","US","431388540" -"1831193515","DIRECT","Direct Messaging Address","jbierly@southeasteye.gwaydirect.com","N","Greenway PrimeSuite","","DIRECT","Direct","","OTHER","Other","CCDA","7268 Jarnigan Rd","Suite 200","Chattanooga","TN","US","374213097" -"1528062304","DIRECT","Direct Messaging Address","mfrankis29503@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","346 Deep South Farm Rd Ste B","","Blairsville","GA","US","305122218" -"1467456285","DIRECT","Direct Messaging Address","ciorio7779@edirect.crh.org","N","","","HIE","Health Information Exchange (HIE)","","","","","4050 Central Avenue","","Columbus","IN","US","47203" -"1043214877","DIRECT","Direct Messaging Address","andrew.carroll@225779326058500.direct.elationemr.com","N","","","DIRECT","Direct","","","","","333 N Dobson Rd","Suite 15","Chandler","AZ","US","85224" -"1841294659","DIRECT","Direct Messaging Address","bhubbuch53498@direct.nortonhealthcare.org","N","","","","","","","","","3924 S DuPont Sq","Suite A","Louisville","KY","US","402075912" -"1649274523","DIRECT","Direct Messaging Address","adam.sarbin.p1@direct.physicianstochildren.nextgenshare.com","N","","","","","","","","","21 Highland Ave SE","Ste 100","Roanoke","VA","US","240132218" -"1578567350","DIRECT","Direct Messaging Address","adrake@hhsnj.org","N","Next Gen EMR Direct Address","","DIRECT","Direct","","","","","6 Sand Hill Rd","Ste 201","Flemington","NJ","US","088224946" -"1386648160","DIRECT","Direct Messaging Address","stephen.dreskin.1@590.direct.athenahealth.com","N","direct messaging","","DIRECT","Direct","","CSV","CSV","","6130 Shallowford Rd","Suite 101","Chattanooga","TN","US","374217222" -"1619971314","DIRECT","Direct Messaging Address","cabadi5459@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","676 Aquidneck Ave","","Middletown","RI","US","028425795" -"1154325827","DIRECT","Direct Messaging Address","rschwengel6347@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","676 Aquidneck Ave","","Middletown","RI","US","028425795" -"1962406637","DIRECT","Direct Messaging Address","BILLWEBB@psmedicalcenter.cernerdirect.com","N","","","","","","","","","95 S Pagosa Blvd","","Pagosa Springs","CO","US","811478329" -"1699779371","DIRECT","Direct Messaging Address","hrichie35873@directpatientrecord.com","N","","","HIE","Health Information Exchange (HIE)","","","","","1101 S 28th Ave Ste A","","Hattiesburg","MS","US","394022610" -"1215931928","DIRECT","Direct Messaging Address","mbrantley19111@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 Tvc","","Nashville","TN","US","372320001" -"1043214828","DIRECT","Direct Messaging Address","richard-walsh@drrichardwalsh.e-mdsdirect.com","N","","","DIRECT","Direct","","","","","960 W Wooster St Ste 105","","Bowling Green","OH","US","434022646" -"1679577480","DIRECT","Direct Messaging Address","stannerbertrand361730@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","55905" -"1144224973","DIRECT","Direct Messaging Address","candyceluciando@npa.allscriptsdirect.net","N","Allscripts Community Direct Messaging","","DIRECT","Direct","","OTHER","Other","CCD","8508 State Highway 285","","Conneaut Lake","PA","US","163161120" -"1144224973","DIRECT","Direct Messaging Address","peterplessmd@npa.allscriptsdirect.net","N","Allscripts Community Direct Messaging","","DIRECT","Direct","","OTHER","Other","CCD","505 Poplar St Ste 306","","Meadville","PA","US","163353083" -"1144224973","DIRECT","Direct Messaging Address","deanspencermd@npa.allscriptsdirect.net","Y","Allscripts Community Direct Messaging-Pro EHR","Northwest Physicians Associates PC","DIRECT","Direct","","OTHER","Other","CCD","1012 Water St.","","Meadville","PA","US","16335" -"1144224973","DIRECT","Direct Messaging Address","glennbollard@npa.allscriptsdirect.net","N","Allscripts Community Direct Messaging","","DIRECT","Direct","","OTHER","Other","CCD","104 E Adams St","","Cochranton","PA","US","163148604" -"1144224973","DIRECT","Direct Messaging Address","heathermckeel@npa.allscriptsdirect.net","N","Allscripts Community Direct Messaging","","DIRECT","Direct","","OTHER","Other","CCD","1263 Elk St","","Franklin","PA","US","163231312" -"1144224973","DIRECT","Direct Messaging Address","mariannesuprysmd@npa.allscriptsdirect.net","N","Allscripts Community Direct Messaging","","DIRECT","Direct","","OTHER","Other","CCD","210 N Mercer St","","Linesville","PA","US","164249232" -"1821092685","DIRECT","Direct Messaging Address","beth@caringcardiology.com","N","Secure office email address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","23521 Paseo De Valencia Ste 303","","Laguna Hills","CA","US","926533102" -"1548264302","DIRECT","Direct Messaging Address","Direct@PFFranckeMGNunleyMDsCharlestonWV.CompulinkDirect.com","N","","","","","","","","","1220 Lee St E Ste 203","","Charleston","WV","US","253011864" -"1679577324","DIRECT","Direct Messaging Address","epeterson@southeasteye.gwaydirect.com","N","Greenway PrimeSuite","","DIRECT","Direct","","OTHER","Other","CCDA","7268 Jarnigan Rd","Suite 200","Chattanooga","TN","US","374213097" -"1881698504","DIRECT","Direct Messaging Address","karoline.munson.od@direct.have2020.nextgenshare.com","N","Provider Direct Email Address","","DIRECT","Direct","","OTHER","Other","Provider Direct Email Address","302 W 14th St","","Jeffersonville","IN","US","471303751" -"1922002674","DIRECT","Direct Messaging Address","summaryofcare@direct.bmcf.com","N","Direct Email Address","","DIRECT","Direct","","","","","5601 Warren Pkwy","","Frisco","TX","US","750344069" -"1922002674","DIRECT","Direct Messaging Address","summaryofcare@direct.bmcf.com","N","Direct Email Address","","DIRECT","Direct","","","","","5601 Warren Pkwy","","Frisco","TX","US","750344069" -"1306840988","DIRECT","Direct Messaging Address","rsallaway592630@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","700 West Ave S","","LA Crosse","WI","US","54601" -"1427052182","DIRECT","Direct Messaging Address","tboulden25586@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","325 Butts Ave","","Tomah","WI","US","546601412" -"1225032980","DIRECT","Direct Messaging Address","darlawrage@mklt.allscriptsdirect.net","N","Mankato Clinic Direct ID, Allscripts Community","","DIRECT","Direct","","CSV","CSV","","1421 Premier Dr","","Mankato","MN","US","560016076" -"1518961176","DIRECT","Direct Messaging Address","southeasteye@southeasteye.gwaydirect.com","N","Greenway PrimeSuite","","DIRECT","Direct","","OTHER","Other","CCDA","7268 Jarnigan Rd","Suite 200","Chattanooga","TN","US","374213097" -"1902800592","DIRECT","Direct Messaging Address","thomasandolinaod@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","325 West St","","Canandaigua","NY","US","144241723" -"1902800592","DIRECT","Direct Messaging Address","thomasandolinaod@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","784 Pre Emption Rd","","Geneva","NY","US","144562092" -"1902800592","DIRECT","Direct Messaging Address","thomasandolinaod@theeyecarecenter.medentdirect.com","N","EMR e-mail address for secure sharing of patient information","","DIRECT","Direct","","CSV","CSV","","1210 Driving Park Ave","","Newark","NY","US","145131057" -"1710981345","DIRECT","Direct Messaging Address","sheri.marshall.2@1498.direct.athenahealth.com","N","","","","","","","","","150 Gentilly Blvd","","Cartersville","GA","US","301208522" -"1164426896","CONNECT","CONNECT URL","uconnect.upmc.com","Y","2.16.840.1.113883.3.552.100.2.1","UPMC","OTHER","Other","CMS esMD eMDR","","","","600 Grant St","","Pittsburgh","PA","US","152192702" -"1164426896","DIRECT","Direct Messaging Address","CHP@upmcdirect.com","N","secure direct address for this UPMC Hospital","","HIE","Health Information Exchange (HIE)","","","","","4401 Penn Ave","","Pittsburgh","PA","US","15224" -"1336143908","DIRECT","Direct Messaging Address","salim.ghorra@thg.eclinicaldirectplus.com","N","","","DIRECT","Direct","","","","","4040 Highway 17 Unit 202","","Murrells Inlet","SC","US","295765098" -"1659375269","DIRECT","Direct Messaging Address","gsmith171955@direct.nortonhealthcare.org","N","","","","","","","","","2412 Ring Rd","Ste 200","Elizabethtown","KY","US","427015913" -"1659375269","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","2412 Ring Rd","Ste 200","Elizabethtown","KY","US","427015913" -"1750385365","DIRECT","Direct Messaging Address","soglesbee3265@directpatientrecord.com","N","","","HIE","Health Information Exchange (HIE)","","","","","415 S 28th Ave","","Hattiesburg","MS","US","394017246" -"1427052075","DIRECT","Direct Messaging Address","gbingle2712@eCommunityDirect.com","Y","","Community Hospitals of Indiana, INC","","","","","","","7910 E Washington St Ste 110","","Indianapolis","IN","US","462195563" -"1730183377","DIRECT","Direct Messaging Address","VIJAYNATH@GEORGIAKID.ALLSCRIPTSDIRECT.NET","N","","","","","","","","","55 Whitcher St NE","Ste 460","Marietta","GA","US","300601171" -"1891799433","DIRECT","Direct Messaging Address","JGALBREATH16090@DIRECT.NOVANTHEALTH.ORG","N","","","","","","","","","1381 Westgate Center Dr","","Winston Salem","NC","US","271032934" -"1619971264","DIRECT","Direct Messaging Address","sbazaz@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","44035 Riverside Pkwy","Ste 400","Leesburg","VA","US","201768260" -"1699779249","DIRECT","Direct Messaging Address","apatel@direct.okheart.com","N","Direct Address","","DIRECT","Direct","","CSV","CSV","","2017 W I 35 Frontage Rd Ste 240","","Edmond","OK","US","730138550" -"1417951062","DIRECT","Direct Messaging Address","achang@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","2901 Telestar Ct Ste 200","","Falls Church","VA","US","220421262" -"1225032964","DIRECT","Direct Messaging Address","direct@direct.bronsonhg.org","Y","Bronson Healthcare Group Direct address","Bronson Healthcare Group","DIRECT","Direct","","OTHER","Other","Continuity of Care Document","601 John St","","Kalamazoo","MI","US","490075341" -"1700880440","DIRECT","Direct Messaging Address","jcsikos762159@direct.novanthealth.org","N","","","","","","","","","3333 Silas Creek Pkwy","","Winston Salem","NC","US","271033013" -"1639173248","DIRECT","Direct Messaging Address","EDWARDHIMOT@GEORGIAKIDN.ALLSCRIPTSDIRECT.NET","N","","","","","","","","","55 Whitcher St NE","Ste 460","Marietta","GA","US","300601171" -"1225032873","DIRECT","Direct Messaging Address","dmateer132471@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","51 Business Campus Way","Suite 200","Duncannon","PA","US","170209596" -"1235133869","DIRECT","Direct Messaging Address","INDIRACHERVU@GEORGIAKID.ALLSCRIPTSDIRECT.NET","N","","","","","","","","","55 Whitcher St NE","Ste 460","Marietta","GA","US","300601171" -"1225032857","DIRECT","Direct Messaging Address","csousou27348@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","800 West Avenue South","","La Crosse","WI","US","546018806" -"1679577209","DIRECT","Direct Messaging Address","AKINOGUNDIPE@GEORGIAKID.ALLSCRIPTSDIRECT.NET","N","","","","","","","","","55 Whitcher St NE","Ste 460","Marietta","GA","US","300601171" -"1700880259","DIRECT","Direct Messaging Address","dpollock@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","44035 Riverside Pkwy","Ste 400","Leesburg","VA","US","201768260" -"1982608436","DIRECT","Direct Messaging Address","james.turk.1@2340.direct.athenahealth.com","N","AMR direct address","","","","","","","","2802 Leonard Dr","","Valparaiso","IN","US","463837136" -"1851395305","DIRECT","Direct Messaging Address","NJHealth@njc.allscriptsdirect.net","N","","","","","","","","","499 E Hampden Ave","Ste 300","Englewood","CO","US","801132793" -"1508860016","DIRECT","Direct Messaging Address","davidgonzalez@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","26732 Crown Valley Pkwy Ste 151","","Mission Viejo","CA","US","926916337" -"1891799300","DIRECT","Direct Messaging Address","william.pitts.p1@direct.wacocardiology.nextgenshare.com","N","API for Waco Cardiology Associates","","HIE","Health Information Exchange (HIE)","","OTHER","Other","wacocardiology@direct.wacocardiology.nextgenshare.com","7125 New Sanger Avenue","","Waco","TX","US","767124054" -"1891799300","DIRECT","Direct Messaging Address","william.pitts.p1@direct.wacocardiology.nextgenshare.com","N","","","","","","","","","7125 New Sanger Ave Ste A","","Waco","TX","US","767124054" -"1134123649","DIRECT","Direct Messaging Address","nfulkerson153940@direct.nortonhealthcare.org","N","","","","","","","","","2360 Stony Brook Dr","","Louisville","KY","US","402204018" -"1134123649","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","4240 Shelbyville Rd","","Louisville","KY","US","402073956" -"1902800493","DIRECT","Direct Messaging Address","rmoorthy@avruc.intellechartdirect.net","N","EHR","","DIRECT","Direct","","OTHER","Other","direct message","10585 N Meridian St Ste 100","","Carmel","IN","US","462901066" -"1811991300","DIRECT","Direct Messaging Address","timothy.harrison.p1@direct.eyeone.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","62 Hill Top Ln","","Lexington","VA","US","244505726" -"1619971116","DIRECT","Direct Messaging Address","agrant83953@direct.beaumont.edu","N","","","","","","","","","30575 Woodward Ave","","Royal Oak","MI","US","480730980" -"1780688283","DIRECT","Direct Messaging Address","pfortin83998@direct.beaumont.edu","N","","","","","","","","","30575 Woodward Ave","","Royal Oak","MI","US","480730980" -"1407850902","DIRECT","Direct Messaging Address","TGODFREY@REHABVISIONS.COM","N","EMAIL","","DIRECT","Direct","","","","","819 Oregon St","","Hiawatha","KS","US","664342205" -"1639173131","DIRECT","Direct Messaging Address","rmoorthy@avruc.intellechartdirect.net","N","secure direct message","","DIRECT","Direct","","OTHER","Other","EHR","10585 N Meridian St Ste 100","","Carmel","IN","US","462901066" -"1710981212","DIRECT","Direct Messaging Address","jsettecerri25729@direct.beaumont.edu","N","","","","","","","","","30575 Woodward Ave","","Royal Oak","MI","US","480730980" -"1740284256","DIRECT","Direct Messaging Address","newmedico@att.net","N","outpatient","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","210 W Sunshine St Ste F","","Springfield","MO","US","658072655" -"1871597393","DIRECT","Direct Messaging Address","hhaddad6716@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","12995 Brighton Ave","","Carmel","IN","US","460328642" -"1316941834","DIRECT","Direct Messaging Address","dnelson108234@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","1000 1st Dr NW","","Austin","MN","US","559122941" -"1033113485","DIRECT","Direct Messaging Address","vkiluk8530@direct.tgh.org","N","","","","","","","","","2 Tampa General Cir","STC 5TH FLOOR","Tampa","FL","US","336063603" -"1396749826","DIRECT","Direct Messaging Address","tfarrell@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","1005 N Glebe Rd","#750","Arlington","VA","US","222015718" -"1093719536","DIRECT","Direct Messaging Address","sassanhassassian@nspc.medalliesdirect.net","N","","","","","","","","","8644 Sudley Rd","Ste 117","Manassas","VA","US","201104417" -"1417951856","DIRECT","Direct Messaging Address","kcowan25773@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","815 S. 10th Street","","La Crosse","WI","US","546014700" -"1942204383","DIRECT","Direct Messaging Address","bdougan133109@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","559050001" -"1598769945","DIRECT","Direct Messaging Address","david.maher@trinityhealthia.medicity.net","N","Regional Health Services of Howard County Direct Email Address","","DIRECT","Direct","","OTHER","Other","CCDA","321 8th Ave W","","Cresco","IA","US","521361064" -"1598769945","DIRECT","Direct Messaging Address","david.maher@trinityhealthia.medicity.net","N","Regional Health Services of Howard County Direct Email address","","DIRECT","Direct","","OTHER","Other","CCDA","321 8th Ave W","","Cresco","IA","US","521361064" -"1396749750","DIRECT","Direct Messaging Address","dcrowder343948@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372321109" -"1366446783","DIRECT","Direct Messaging Address","cstarsiak130554@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","3660 Guion Rd","STE 310","Indianapolis","IN","US","462221697" -"1619971181","DIRECT","Direct Messaging Address","dduke34779@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","4440 Red Bank Rd","Suite 110","Cincinnati","OH","US","452272176" -"1427052802","DIRECT","Direct Messaging Address","warrenjohnston@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","1140 W La Veta Ave Ste 430","","Orange","CA","US","928684226" -"1346244779","DIRECT","Direct Messaging Address","jbm@mnp1999.integrityemrdirect.com","N","","","","","","","","","1265 E Primrose St","","Springfield","MO","US","658044278" -"1568466936","DIRECT","Direct Messaging Address","pprzywojski27065@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","700 West Ave S","","LA Crosse","WI","US","546014783" -"1730183104","DIRECT","Direct Messaging Address","wremington32440@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","901 Montgomery St","","Decorah","IA","US","521012325" -"1730183104","DIRECT","Direct Messaging Address","wremington32440@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","901 Montgomery St","","Decorah","IA","US","521012325" -"1669476057","DIRECT","Direct Messaging Address","stephanie.hamilton.1@2276.direct.athenahealth.com","N","Direct Address","","DIRECT","Direct","","","","","102 Brookshire Ln","","Beckley","WV","US","258016761" -"1255335659","DIRECT","Direct Messaging Address","donaldmahon@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","1140 W La Veta Ave Ste 430","","Orange","CA","US","928684226" -"1518961911","DIRECT","Direct Messaging Address","robertmccoy@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","1950 Sunnycrest Dr","Ste 2600","Fullerton","CA","US","928353638" -"1760486187","DIRECT","Direct Messaging Address","heather.wolfe@lutheranhealthnetwork.cernerdirect.com","N","AMR direct address","","","","","","","","7950 W Jefferson Blvd","Suite 212","Fort Wayne","IN","US","468044140" -"1215932645","CONNECT","CONNECT URL","kchristman@summitcancercare.com","N","","","","","","","","","100 Buckwalter Place Blvd Ste 120","","Bluffton","SC","US","299105023" -"1467457804","DIRECT","Direct Messaging Address","tbrowning@tneyecare.intellechartdirect.net","Y","TEC","Eye Care Centers PLLC","","","","","","","1798 Roane State Highway","","Harriman","TN","US","377488666" -"1467457804","DIRECT","Direct Messaging Address","TBROWNING@TNECS.INTELLECHARTDIRECT.NET","Y","","Tennessee Eye Care Specialists, PLLC","","","","","","","902 W Madison Ave","","Athens","TN","US","373033432" -"1376548727","DIRECT","Direct Messaging Address","jbledsoefrazee18759@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372323949" -"1932104205","DIRECT","Direct Messaging Address","mwallace390338@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","13400 E Shea Blvd","","Scottsdale","AZ","US","85259" -"1417952896","DIRECT","Direct Messaging Address","dmiller26782@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","800 West Ave S","","LA Crosse","WI","US","546018806" -"1396740775","DIRECT","Direct Messaging Address","eslaymaker11423@direct.ahn.org","N","","","","","","","","","1000 W View Park Dr Ste 1","","Pittsburgh","PA","US","152291785" -"1710982194","DIRECT","Direct Messaging Address","sknox@rockcountyhospital.com","N","","","","","","","","","102 E South St","","Bassett","NE","US","687145512" -"1417952805","DIRECT","Direct Messaging Address","jtheis151417@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","559050001" -"1922003334","DIRECT","Direct Messaging Address","halexandre5470@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","49 State Road","Pequot Bldg","North Dartmouth","MA","US","02747" -"1508861923","DIRECT","Direct Messaging Address","nkrystoff191811@direct.ahn.org","N","","","DIRECT","Direct","","","","","2508 Myrtle St Ste 200","","Erie","PA","US","165022700" -"1720083090","DIRECT","Direct Messaging Address","GBaum@directaddress.net","N","direct message","","HIE","Health Information Exchange (HIE)","","OTHER","Other","XML","5898 Bridge St","","East Syracuse","NY","US","130572941" -"1225033590","DIRECT","Direct Messaging Address","jcook@cook.ecldirect.net","N","","","HIE","Health Information Exchange (HIE)","","","","","2024 15th St","Ste 5D","Meridian","MS","US","393014130" -"1811992258","DIRECT","Direct Messaging Address","ezagula148686@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","255 N 4th St","","Oakland","MD","US","215501340" -"1811992258","DIRECT","Direct Messaging Address","ezagula148686@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","255 N 4th St","","Oakland","MD","US","215501340" -"1417952854","DIRECT","Direct Messaging Address","mguy3702@direct.ahn.org","N","","","","","","","","","1307 Federal St Ste 301","","Pittsburgh","PA","US","152124769" -"1801891254","DIRECT","Direct Messaging Address","ccrawford258996@direct.ahn.org","N","","","","","","","","","320 E North Ave","","Pittsburgh","PA","US","152124756" -"1437154887","DIRECT","Direct Messaging Address","kmayes950707@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","4500 San Pablo Rd S","","Jacksonville","FL","US","32224" -"1417952870","DIRECT","Direct Messaging Address","mwolfe122111@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","550 N 12th St","","Lemoyne","PA","US","17043" -"1841295219","OTHERS","Other URL","burke.org","N","","","","","","","","","785 Mamaroneck Ave","","White Plains","NY","US","106052523" -"1619972957","DIRECT","Direct Messaging Address","dchestnut20283@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","Vanderbilt University Medical Ctr","1211 Medical Center Drive, VUH 4202","Nashville","TN","US","372327580" -"1275538670","DIRECT","Direct Messaging Address","msalata985271@oc.providencedirect.org","N","","","","","","","","","4805 NE Glisan St Ste Bg05","","Portland","OR","US","972132933" -"1104821420","DIRECT","Direct Messaging Address","eva.giro@mmhs.medicity.net","N","","","","","","","","","320 E 8th St Ste 141","","Marietta","OH","US","457503382" -"1457356776","DIRECT","Direct Messaging Address","jdelzotto108836@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Garfield Ave","","Parkersburg","WV","US","261015376" -"1114922440","DIRECT","Direct Messaging Address","emergency.providers@mmhs.medicity.net","N","","","","","","","","","401 Matthew St","Emergency Dept","Marietta","OH","US","457501635" -"1114922440","DIRECT","Direct Messaging Address","emergency.providers@mmhs.medicity.net","N","","","","","","","","","799 Farson ST","Emergency Dept","Belpre","OH","US","457141044" -"1891790127","OTHERS","Other URL","https://www.dropbox.com/request/aQzioorcReW8RbgOWY0q","Y","Dropbox link","North Scottsdale Health, PLLC","HIE","Health Information Exchange (HIE)","","OTHER","Other","Direct dropbox link","10310 E Rising Sun Dr","","Scottsdale","AZ","US","852623073" -"1306841648","DIRECT","Direct Messaging Address","laila.muderspach@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1516 San Pablo St","","Los Angeles","CA","US","900335313" -"1003811373","DIRECT","Direct Messaging Address","kjamison102177@oc.providencedirect.org","N","","","","","","","","","1510 Division St Ste 180","","Oregon City","OR","US","970452551" -"1003811373","DIRECT","Direct Messaging Address","kjamison102177@oc.providencedirect.org","N","","","","","","","","","5050 NE Hoyt St Ste 315","","Portland","OR","US","972132982" -"1912902289","DIRECT","Direct Messaging Address","tgrayson301002@eCommunityDirect.com","Y","","REID HOSPITAL & HEALTH CARE SERVICES, INC","","","","","","","1050 Reid Pkwy","Suite 120","Richmond","IN","US","473741155" -"1467457739","DIRECT","Direct Messaging Address","lurban265611@direct.healthsystem.virginia.edu","N","","","DIRECT","Direct","","","","","545 Ray C Hunt Dr Ste 316","","Charlottesville","VA","US","229032981" -"1003811316","DIRECT","Direct Messaging Address","asanchez626034@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","55905" -"1508861899","DIRECT","Direct Messaging Address","cynthia.martinsen@mmhs.medicity.net","N","","","","","","","","","1006 Washington Blvd Ste G","","Belpre","OH","US","457144005" -"1508861899","DIRECT","Direct Messaging Address","cynthia.martinsen@mmhs.medicity.net","N","","","","","","","","","800 Pike St Ste 2","","Marietta","OH","US","457503507" -"1962407254","DIRECT","Direct Messaging Address","jseidler5386@direct.novanthealth.org","N","","","","","","","","","865 W Lake Dr","","Mount Airy","NC","US","270302157" -"1174528392","DIRECT","Direct Messaging Address","kendall.hansen@direct.ips.nextgenshare.com","N","provider direct address into our our EHR system, Nextgen","","DIRECT","Direct","","CSV","CSV","","340 Thomas More Pkwy.","Ste. 260","Crestview Hills","KY","US","410175117" -"1598760720","DIRECT","Direct Messaging Address","msantman5671@direct.sw.org","N","","","DIRECT","Direct","","","","","302 University Blvd","","Round Rock","TX","US","786651032" -"1336144575","DIRECT","Direct Messaging Address","kfindlay@retinavitreous.intellechartdirect.net","N","Nextech secure email","","HIE","Health Information Exchange (HIE)","","","","","2705 W Saint Isabel St","","Tampa","FL","US","336076319" -"1326043571","DIRECT","Direct Messaging Address","gary.frick@lutheranhealthnetwork.cernerdirect.com","N","AMR direct address","","","","","","","","1123 N Western Ave","","Marion","IN","US","469522501" -"1366447518","DIRECT","Direct Messaging Address","pweisskopf395870@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","13400 E Shea Blvd","","Scottsdale","AZ","US","85259" -"1306841580","DIRECT","Direct Messaging Address","astoebner10900@direct.sw.org","N","","","DIRECT","Direct","","","","","300 University Blvd Bldg A","","Round Rock","TX","US","786651032" -"1104821313","DIRECT","Direct Messaging Address","MckinleyMedicalClinic.LawrenceCurry@121356.advancedmd-direct.com","N","Send reports and TOC","","DIRECT","Direct","","","","","524 E McKinley Ave","","Mishawaka","IN","US","465456285" -"1104821313","DIRECT","Direct Messaging Address","MckinleyMedicalClinic.LawrenceCurry@121356.advancedmd-direct.com","Y","Reports, TOC","Lawrence R Curry","DIRECT","Direct","","","","","915 N Van Buren St","","Shipshewana","IN","US","465658702" -"1104821313","DIRECT","Direct Messaging Address","MckinleyMedicalClinic.LawrenceCurry@121356.advancedmd-direct.com","N","Reports, TOC","","DIRECT","Direct","","","","","524 E McKinley Ave","","Mishawaka","IN","US","465456285" -"1104821313","DIRECT","Direct Messaging Address","MckinleyMedicalClinic.LawrenceCurry@121356.advancedmd-direct.com","N","Reports, TOC","","","","","","","","524 E McKinley Ave","","Mishawaka","IN","US","465456285" -"1770588063","DIRECT","Direct Messaging Address","robertpiston@sopc.allscriptsdirect.net","N","Allscripts EHR","","DIRECT","Direct","","","","","3120 Highland Rd","","Hermitage","PA","US","161484512" -"1053316356","DIRECT","Direct Messaging Address","dadelberg6892@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","300A Faunce Corner Rd","","N Dartmouth","MA","US","027471280" -"1801891114","DIRECT","Direct Messaging Address","digestivespecialists@directaddress.net","N","","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","4340 Clyo Rd Ste 200","","Dayton","OH","US","454597000" -"1942205166","DIRECT","Direct Messaging Address","claibornemedicalcenter@yourcarecommunity.org","N","","","","","","","","","1850 Old Knoxville Rd","","Tazewell","TN","US","378793625" -"1518962703","DIRECT","Direct Messaging Address","hsacks22374@directwellstar.org","N","","","","","","","","","148 Bill Carruth Pkwy Ste 4200","","Hiram","GA","US","301413754" -"1831194935","DIRECT","Direct Messaging Address","hberry10098@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","hberry10098@direct-ehr-ssmhc.com","1031 Bellevue Ave Ste 310","","Saint Louis","MO","US","631171857" -"1831194935","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","1031 Bellevue Ave Ste 310","","Saint Louis","MO","US","631171857" -"1073518239","DIRECT","Direct Messaging Address","jsg9818@outlook.com","N","email","","DIRECT","Direct","","OTHER","Other","medical","2201 S 19th St","Ste 205","Tacoma","WA","US","984052961" -"1821093089","DIRECT","Direct Messaging Address","amorris122073@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","875 Poplar Church Rd","Suite 400","Camp Hill","PA","US","170112203" -"1114922366","DIRECT","Direct Messaging Address","spautler@retinavitreous.intellechartdirect.net","N","Nextech MDI Secure email","","HIE","Health Information Exchange (HIE)","","","","","12903 N 56th St","","Temple Terrace","FL","US","336171225" -"1285639443","DIRECT","Direct Messaging Address","ronda.fleck.2@1739.direct.athenahealth.com","N","","","","","","","","","2428 W Pierce St","","Carlsbad","NM","US","882203512" -"1740285931","DIRECT","Direct Messaging Address","jason.beaver.1@3326.direct.athenahealth.com","N","Athena EMR","","","","","","","","4300 W Main St Ste 21","","Dothan","AL","US","363051058" -"1669477782","DIRECT","Direct Messaging Address","jennifer.israel@direct.usc.edu","N","","","DIRECT","Direct","","CSV","CSV","","1516 San Pablo St","","Los Angeles","CA","US","900335313" -"1669477782","DIRECT","Direct Messaging Address","jennifer.israel@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1516 San Pablo St","","Los Angeles","CA","US","900335313" -"1669477592","DIRECT","Direct Messaging Address","jforster451661@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","2321 Stout Rd","","Menomonie","WI","US","547517003" -"1194720011","DIRECT","Direct Messaging Address","kwebb@directaddress.net","N","","","","","","","","","2424 Harrodsburg Rd","Suite 200","Lexington","KY","US","405032106" -"1417952342","DIRECT","Direct Messaging Address","david.miller@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1300 N Vermont Ave Ste 301","","Los Angeles","CA","US","900276061" -"1033114137","DIRECT","Direct Messaging Address","preston.reilly@crawfordmh.cernerdirect.com","N","","","DIRECT","Direct","","","","","1000 N Allen St","","Robinson","IL","US","624541114" -"1063417186","OTHERS","Other URL","ghn4you.com","N","Website","","DIRECT","Direct","","OTHER","Other","Clinic Website","204 E 25th St","","Vancouver","WA","US","986633219" -"1770588808","DIRECT","Direct Messaging Address","mmayer30151@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","7240 Shadeland Station","Suite 300","Indianapolis","IN","US","462563944" -"1366447203","DIRECT","Direct Messaging Address","Charles.Adams.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","2 Dudley St","Ste 470","Providence","RI","US","029053236" -"1134124084","DIRECT","Direct Messaging Address","ruth.busch@direct.arck.nextgenshare.com","N","","","DIRECT","Direct","","OTHER","Other","ehr messaging","1921 N Webb Rd","","Wichita","KS","US","672063405" -"1851396717","DIRECT","Direct Messaging Address","elizabeth.taylor-albert@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1520 San Pablo St Ste 1000","","Los Angeles","CA","US","90033" -"1831194794","DIRECT","Direct Messaging Address","familymed@mcclinic.direct-ci.net","N","Mason City Clinic Direct Email Address","","DIRECT","Direct","","OTHER","Other","CCDA","2580 Bridge Ave","","Albert Lea","MN","US","560072073" -"1518962513","DIRECT","Direct Messaging Address","giuliana.songster@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1400 S Grand Ave","Ste 805","Los Angeles","CA","US","900153011" -"1679578603","DIRECT","Direct Messaging Address","pcarson10677@direct.ahn.org","N","","","","","","","","","320 E North Ave","","Pittsburgh","PA","US","152124756" -"1659376663","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1215932231","DIRECT","Direct Messaging Address","rbulgarelli147765@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","503 N 21st St","","Camp Hill","PA","US","170112204" -"1336144401","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","601 S Floyd St","Ste 602","Louisville","KY","US","402021845" -"1336144401","DIRECT","Direct Messaging Address","cjohnsrude45666@direct.nortonhealthcare.org","N","","","","","","","","","601 S Floyd St","Ste 602","Louisville","KY","US","402021845" -"1598760431","DIRECT","Direct Messaging Address","mgallagher121346@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","211 E 3rd St","","Lewistown","PA","US","170441712" -"1144225186","DIRECT","Direct Messaging Address","smcclain28599@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372328710" -"1154326205","DIRECT","Direct Messaging Address","charles.williams@mmhs.medicity.net","N","","","","","","","","","799 Farson St","Emergency Dept","Belpre","OH","US","457141044" -"1154326205","DIRECT","Direct Messaging Address","charles.williams@mmhs.medicity.net","N","","","","","","","","","1106 Colegate Dr","Emergency Dept","Marietta","OH","US","457501232" -"1154326205","DIRECT","Direct Messaging Address","charles.williams@mmhs.medicity.net","N","","","","","","","","","1106 Colegate Dr","Emergency Dept","Marietta","OH","US","457501232" -"1184629214","DIRECT","Direct Messaging Address","efrenaganon@glhs.allscriptsdirect.net","N","","","","","","","","","1010 Hager St","","Saint Marys","OH","US","458852421" -"1184629214","DIRECT","Direct Messaging Address","efrenaganon@glhs.allscriptsdirect.net","N","","","","","","","","","4 Eagle Dr Ste A","","Minster","OH","US","458659714" -"1881699924","DIRECT","Direct Messaging Address","brooks.george@covenanthealth.cernerdirect.com","N","","","","","","","","","8707 Asheville Hwy","","Knoxville","TN","US","379244502" -"1265437305","DIRECT","Direct Messaging Address","richard.pinon.3@1610.direct.athenahealth.com","N","AMR Direct Address","","","","","","","","300 W Country Club Rd Ste 230","","Roswell","NM","US","882015240" -"1447255500","DIRECT","Direct Messaging Address","rellis25918@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","700 West Ave S","","LA Crosse","WI","US","54601" -"1063417129","DIRECT","Direct Messaging Address","jchick67997@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","7545 Beechmont Ave Ste C","","Cincinnati","OH","US","452554238" -"1770588725","DIRECT","Direct Messaging Address","cheaton307075@direct.novanthealth.org","N","","","","","","","","","8700 Sudley Rd","","Manassas","VA","US","201104418" -"1457356545","DIRECT","Direct Messaging Address","rhonda.guy.2@1572.direct.athenahealth.com","N","direct","","DIRECT","Direct","","","","","230 George St Ste 2","","Beckley","WV","US","258012620" -"1720083892","DIRECT","Direct Messaging Address","mmasiello23242@UmassMemorial.direct-ci.com","N","","","","","","","","","60 Hospital Rd","","Leominster","MA","US","014532205" -"1720083892","FHIR","FHIR URL","https://epicproxy.et0978.epichosted.com/FHIRProxy/api/FHIR/DSTU2/","N","","","","","","","","","60 Hospital Rd","","Leominster","MA","US","014532205" -"1730184813","DIRECT","Direct Messaging Address","michael.nemeth.1@2340.direct.athenahealth.com","N","AMR direct address","","","","","","","","85 E US Highway 6 Ste 240","","Valparaiso","IN","US","46383" -"1285639369","DIRECT","Direct Messaging Address","underwood.tricia@covenanthealth.cernerdirect.com","N","","","","","","","","","9330 Park West Blvd Ste 402","","Knoxville","TN","US","379234312" -"1538164595","DIRECT","Direct Messaging Address","martagryniuk@fcmhms.allscriptsdirect.net","N","","","","","","","","","1510 Columbus Ave","Suite 230","Washington Court House","OH","US","431601899" -"1194720177","DIRECT","Direct Messaging Address","jstauffer84319@direct.owensborohealth.org","N","","","","","","","","","1301 Pleasant Valley Rd Ste 401","","Owensboro","KY","US","423039774" -"1992700900","DIRECT","Direct Messaging Address","rpurcell63932@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","10 Choate Cir","","Montoursville","PA","US","177549791" -"1891790788","DIRECT","Direct Messaging Address","johnokeefe@slnai.allscriptsdirect.net","N","","","","","","","","","12818 Tesson Ferry Rd Ste 102","","Saint Louis","MO","US","631282945" -"1518962539","DIRECT","Direct Messaging Address","Beth@caringcardiology.com","N","Secure office e-mail address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","23521 Paseo De Valencia Ste 303","","Laguna Hills","CA","US","926533102" -"1295730257","DIRECT","Direct Messaging Address","afaller25945@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","1303 Main Street S.","","Holmen","WI","US","546369337" -"1770588758","DIRECT","Direct Messaging Address","rcannata@directaddress.net","N","Direct Message","","HIE","Health Information Exchange (HIE)","","OTHER","Other","XML","5898 Bridge St","","EAST SYRACUSE","NY","US","13057" -"1295730174","DIRECT","Direct Messaging Address","iapoltan100410@direct.novanthealth.org","N","","","","","","","","","180 Parkwood Medical Dr.","Hospitalist Department","Elkin","NC","US","286210560" -"1043215924","DIRECT","Direct Messaging Address","kristin.deutsch.p26@direct.archbold.nextgenshare.com","N","","","","","","","","","112 Mimosa Dr","","Thomasville","GA","US","317926605" -"1689679581","DIRECT","Direct Messaging Address","direct@direct.ahn.org","N","","","","","","","","","1301 Carlisle Street","","Natrona Heights","PA","US","150651152" -"1356346258","DIRECT","Direct Messaging Address","leonardo.que@direct.magruderhospital.com","N","H.B. Magruder Hospital Direct Email Address","","DIRECT","Direct","","OTHER","Other","CCDA","611 Fulton St","SUITE E","Port Clinton","OH","US","434522008" -"1447255476","DIRECT","Direct Messaging Address","rbarke@keywhitman.imwdirect.com","N","EMR","","DIRECT","Direct","","CSV","CSV","","910 N Davis DrIve","Ste 100","Arlington","TX","US","760123200" -"1891790705","DIRECT","Direct Messaging Address","marc.incerpi@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","191 S Buena Vista St Ste 435","","Burbank","CA","US","915054551" -"1851396808","DIRECT","Direct Messaging Address","jgraff15273@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","4900 Babson Pl","Suite 600","Cincinnati","OH","US","452272693" -"1063417020","DIRECT","Direct Messaging Address","dfahey25943@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","800 West Ave S","","La Crosse","WI","US","546018806" -"1356346027","DIRECT","Direct Messaging Address","roland.thomas.1@2340.direct.athenahealth.com","N","AMR direct address","","","","","","","","85 E US Highway 6 Ste 240","","Valparaiso","IN","US","46383" -"1528063336","DIRECT","Direct Messaging Address","sabinehesse@sfa.allscriptsdirect.net","Y","","South Florida ENT Associates, Inc.","","","","","","","4700 Sheridan St Ste K","","Hollywood","FL","US","330213416" -"1225033905","DIRECT","Direct Messaging Address","lcha27336@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","180 Maple Ave W","","Vienna","VA","US","221805727" -"1619972304","DIRECT","Direct Messaging Address","cameron.nixon@trhs.cernerdirect.com","N","","","","","","","","","2225 US Hwy 41 N","","Tifton","GA","US","31794" -"1891790515","DIRECT","Direct Messaging Address","rgo72085@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","559050001" -"1760487425","DIRECT","Direct Messaging Address","jac.cooper.1@2340.direct.athenahealth.com","N","AMR direct address","","","","","","","","85 E US Highway 6 Ste 240","","Valparaiso","IN","US","46383" -"1124023809","CONNECT","CONNECT URL","COMPULINK","N","SECURE SOFTWARE","","HIE","Health Information Exchange (HIE)","","OTHER","Other","ELECTRONIC HEALTH RECORDS","3810 S Highway 27","Suite 1","Somerset","KY","US","425013073" -"1992700736","DIRECT","Direct Messaging Address","ttrone34906@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","1215 21st Ave S","Suite 7209","Nashville","TN","US","372328605" -"1396740064","DIRECT","Direct Messaging Address","john.wolcott.1@16432.direct.athenahealth.com","N","direct address","","","","","","","","5174 Fm 1252 W","","Kilgore","TX","US","756621961" -"1992700678","DIRECT","Direct Messaging Address","smccarty152972@direct.nortonhealthcare.org","N","","","DIRECT","Direct","","","","","7926 Preston Hwy Ste 106","","Louisville","KY","US","402193848" -"1992700678","DIRECT","Direct Messaging Address","smccarty152972@direct.nortonhealthcare.org","N","","","","","","","","","7926 Preston Hwy Ste 106","","Louisville","KY","US","402193848" -"1992700678","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","7926 Preston Hwy Ste 106","","Louisville","KY","US","402193848" -"1033114749","DIRECT","Direct Messaging Address","ccline134707@direct.ahn.org","N","","","","","","","","","1200 Brooks Lane","170","Jefferson Hills","PA","US","150253749" -"1447255153","DIRECT","Direct Messaging Address","wphc@wphospital-direct.org","N","","","DIRECT","Direct","","OTHER","Other","CCD","41 E Post Road","","White Plains","NY","US","106014615" -"1447255153","REST","RESTful URL","https://mtrestapis-live-wphc-psmsite.com","N","API","","OTHER","Other","API","OTHER","Other","API","41 E Post Road","","White Plains","NY","US","106014615" -"1265437974","DIRECT","Direct Messaging Address","mgannon134709@direct.ahn.org","N","","","","","","","","","1200 Brooks Lane","170","Jefferson Hills","PA","US","150253749" -"1134124910","DIRECT","Direct Messaging Address","deagle98256@direct.novanthealth.org","N","","","","","","","","","170 medical park road","Suite 101","Mooresville","NC","US","28117" -"1639174337","DIRECT","Direct Messaging Address","rodney.brown.p1@direct.wacocardiology.nextgenshare.com","N","API for Waco Cardiology Associates","","HIE","Health Information Exchange (HIE)","","OTHER","Other","wacocardiology@direct.wacocardiology.nextgenshare.com","7125 New Sanger Avenue","","Waco","TX","US","76710" -"1639174337","DIRECT","Direct Messaging Address","rodney.brown.p1@direct.wacocardiology.nextgenshare.com","N","","","","","","","","","7125 New Sanger Ave Ste A","","Waco","TX","US","767124054" -"1578568358","DIRECT","Direct Messaging Address","njacquet22318@directwellstar.org","N","","","","","","","","","55 Whitcher St NE","Ste 350","Marietta","GA","US","300601155" -"1619972494","DIRECT","Direct Messaging Address","enrique.sanzmd.p1@direct.crystalrun.nextgenshare.com","N","","","DIRECT","Direct","","","","","219 Blooming Grove Tpke","","New Windsor","NY","US","12553" -"1396740197","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1629073317","DIRECT","Direct Messaging Address","jwalter108282@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","1100 Spruce St","","Kulpmont","PA","US","178341234" -"1518962240","DIRECT","Direct Messaging Address","mdahuja17982@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","mdahuja17982@direct-ehr-ssmhc.com","1603 Wentzville Pkwy","","Wentzville","MO","US","633853826" -"1518962240","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","1603 Wentzville Pkwy","","Wentzville","MO","US","633853826" -"1780689513","DIRECT","Direct Messaging Address","aacheson109722@oc.providencedirect.org","N","","","","","","","","","9135 SW Barnes Rd","STE 261","Portland","OR","US","972256601" -"1811992563","DIRECT","Direct Messaging Address","jhershey@rvcow.intellechartdirect.net","N","This is the direct email on our EMR system","","DIRECT","Direct","","OTHER","Other","Protected PHI","2600 N Mayfair Rd Ste 901","","Milwaukee","WI","US","532261307" -"1164427712","DIRECT","Direct Messaging Address","sfetcho409435@direct.healthsystem.virginia.edu","N","","","DIRECT","Direct","","","","","650 Peter Jefferson Pkwy Ste 290","","Charlottesville","VA","US","229118848" -"1629073200","OTHERS","Other URL","CITRIX/VARIAN","N","","","","","","","","","3080 Harbor Blvd","","Port Charlotte","FL","US","339526720" -"1982609558","DIRECT","Direct Messaging Address","TCMC_INBOX@DIRECT.USPI.COM","N","DIRECT ADDRESS","","DIRECT","Direct","","","","","2850 E State Highway 114","","Trophy Club","TX","US","76262" -"1679578272","DIRECT","Direct Messaging Address","louis.miceli.1@2340.direct.athenahealth.com","N","AMR direct address","","","","","","","","3125 Willowcreek Rd","","Portage","IN","US","463684423" -"1013912658","DIRECT","Direct Messaging Address","cbaird18994@direct.watsonclinicad.com","Y","Direct Messaging Address","Watson Clinic LLP","","","","","","","1430 Lakeland Hills Blvd","","Lakeland","FL","US","338053202" -"1871598425","DIRECT","Direct Messaging Address","brandon.westpac.p1@direct.gacancer.nextgenshare.com","N","Direct Address","","DIRECT","Direct","","OTHER","Other","Direct Edge","1668 Mulkey Rd Ste 164","","Austell","GA","US","301061242" -"1487659074","DIRECT","Direct Messaging Address","richard.foellner.p5@direct.gapho.nextgenshare.com","N","","","DIRECT","Direct","","","","","227 N Market St","","Paxton","IL","US","609571123" -"1023013620","DIRECT","Direct Messaging Address","rhalbur100972@samhealth.direct-ci.com","N","","","","","","","","","191 N Main St","","Lebanon","OR","US","973552870" -"1215932843","DIRECT","Direct Messaging Address","rbaldwin@erieretinal.intellechartdirect.net","N","","","","","","","","","300 State St","Ste 201","Erie","PA","US","165071429" -"1912902453","DIRECT","Direct Messaging Address","wbarksdale@hardtnermedical.securechart.com","N","Hardtner Medical Center Direct Secure Email","","DIRECT","Direct","","","","","1102 N Pine Rd","","Olla","LA","US","714654804" -"1144225764","DIRECT","Direct Messaging Address","emason67377@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","32021 County 24 Blvd","","Cannon Falls","MN","US","550095003" -"1053316521","DIRECT","Direct Messaging Address","louis.lee.p26@direct.archbold.nextgenshare.com","N","","","","","","","","","112 Mimosa Dr","","Thomasville","GA","US","317926605" -"1033114608","DIRECT","Direct Messaging Address","SGSH_INBOX@DIRECT.USPI.COM","N","DIRECT EMAIL ADDRESS","","DIRECT","Direct","","","","","16906 Southwest Fwy","","Sugar Land","TX","US","774792350" -"1902801517","DIRECT","Direct Messaging Address","jeffrey.norris.1@3326.direct.athenahealth.com","N","Athena EMR","","","","","","","","4300 W Main St Ste 405","","Dothan","AL","US","363051086" -"1720083330","CONNECT","CONNECT URL","mcarim@cer.ecldirect.net","N","Direct Messaging","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","2630 Westview Dr","","Wyomissing","PA","US","196101130" -"1720083330","CONNECT","CONNECT URL","mcarim@cer.ecldirect.net","N","Direct Messaging","","OTHER","Other","CMS esMD eMDR","","","","2630 Westview Dr","","Wyomissing","PA","US","196101130" -"1346245966","DIRECT","Direct Messaging Address","david.woodham.1@3326.direct.athenahealth.com","N","Athena AMR","","","","","","","","4300 W Main St Ste 405","","Dothan","AL","US","363051086" -"1497750012","DIRECT","Direct Messaging Address","nicholas.voss.1@3326.direct.athenahealth.com","N","Athena EMR","","","","","","","","4300 W Main St Ste 405","","Dothan","AL","US","363051086" -"1194720714","DIRECT","Direct Messaging Address","jpdailey@erieretinal.intellechartdirect.net","N","","","","","","","","","300 State St","Ste 201","Erie","PA","US","165071429" -"1588669030","DIRECT","Direct Messaging Address","drotenstein84341@direct.ahn.org","N","","","","","","","","","1350 Locust St","Ste 306","Pittsburgh","PA","US","152194738" -"1861497331","DIRECT","Direct Messaging Address","rlatif28953@directwellstar.org","N","","","","","","","","","3747 Roswell Rd Ste 206","","Marietta","GA","US","300626227" -"1437154036","DIRECT","Direct Messaging Address","jeffrey.tauth.1@21572.direct.athenahealth.com","N","","","HIE","Health Information Exchange (HIE)","","","","","110 Cracker Box Ln","","Hot Springs National Park","AR","US","719135418" -"1225033772","DIRECT","Direct Messaging Address","tdennen70639@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","1100 Spruce St","","Kulpmont","PA","US","178341234" -"1912902487","DIRECT","Direct Messaging Address","nhonickman@brandoneyeassociates.intellichartdirect.net","N","","","","","","","","","540 Medical Oaks Ave Ste 103","","Brandon","FL","US","335115995" -"1801891379","DIRECT","Direct Messaging Address","christian-chung@cfcdd-net.e-mdsdirect.com","N","","","","","","","","","1880 Quiet Cv","","Fayetteville","NC","US","283043857" -"1790780278","DIRECT","Direct Messaging Address","iorija123243@directwellstar.org","N","","","","","","","","","285 Boulevard NE","Ste 525","Atlanta","GA","US","303124205" -"1205831781","DIRECT","Direct Messaging Address","frankw@myprimaryhealthsolutions.org","N","","","","","","","","","903 NW Washington Blvd Ste A","","Hamilton","OH","US","450136367" -"1578568051","DIRECT","Direct Messaging Address","bhickey26230@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","310 W Main St","","Sparta","WI","US","546562170" -"1902801483","DIRECT","Direct Messaging Address","bryan-uslick@cfcdd-net.e-mdsdirect.com","N","","","DIRECT","Direct","","","","","1880 Quiet Cv","","Fayetteville","NC","US","283043857" -"1336144823","DIRECT","Direct Messaging Address","sanjeev-slehria@cfcdd-net.e-mdsdirect.com","N","","","DIRECT","Direct","","","","","1880 Quiet Cv","","Fayetteville","NC","US","283043857" -"1235134727","DIRECT","Direct Messaging Address","Direct@BradAnstadtMDMelroseParkIL.compulinkdirect.com","N","","","DIRECT","Direct","","CSV","CSV","","675 W North Ave","Ste 107","Melrose Park","IL","US","601601622" -"1376548867","DIRECT","Direct Messaging Address","geoffrey.m.schnirman.ctr@mail.mil","N","Email address","","DIRECT","Direct","","OTHER","Other","Text and file attachments","NBHC Groton, TBI Clinic","1 Wahoo Ave, Bldg 449","Groton","CT","US","063495600" -"1356346852","DIRECT","Direct Messaging Address","scott.sims.1@11015.direct.athenahealth.com","N","","","","","","","","","273 Winton M Blount Loop","","Montgomery","AL","US","361173507" -"1124024658","DIRECT","Direct Messaging Address","alcv@195.direct.myezyaccess.com","N","AMR direct address","","","","","","","","3686 Grandview Pkwy","Suite 720","Birmingham","AL","US","352433407" -"1336145804","DIRECT","Direct Messaging Address","timothy.shaver@direct.arck.nextgenshare.com","N","","","DIRECT","Direct","","OTHER","Other","EHR messaging","1921 N Webb Rd","","Wichita","KS","US","672063405" -"1154327625","DIRECT","Direct Messaging Address","wdavies113266@oc.providencedirect.org","N","","","","","","","","","1510 Division St Ste 100","","Oregon City","OR","US","970451572" -"1275539736","CONNECT","CONNECT URL","COMPULINK","N","SECURE SOFTWARE","","HIE","Health Information Exchange (HIE)","","OTHER","Other","ELECTRONIC HEALTH RECORDS","16605 Alberta St","","Oneida","TN","US","378416283" -"1912903451","DIRECT","Direct Messaging Address","rweisman134684@direct.ahn.org","N","","","","","","","","","5750 Centre Ave","Ste 100","Pittsburgh","PA","US","152063761" -"1700882248","DIRECT","Direct Messaging Address","jtalbott134679@direct.ahn.org","N","","","","","","","","","5750 Centre Ave","Ste 100","Pittsburgh","PA","US","152063761" -"1205832755","DIRECT","Direct Messaging Address","jshymansky@pmapa.allscriptsdirect.net","N","","","DIRECT","Direct","","","","","6321 Route 30 Ste 200","","Greensburg","PA","US","156019704" -"1366448813","DIRECT","Direct Messaging Address","yzhao24049@UmassMemorial.direct-ci.com","N","","","","","","","","","55 Lake Ave N","","Worcester","MA","US","016550002" -"1366448813","FHIR","FHIR URL","https://epicproxy.et0978.epichosted.com/FHIRProxy/api/FHIR/DSTU2/","N","","","","","","","","","55 Lake Ave N","","Worcester","MA","US","016550002" -"1689670150","DIRECT","Direct Messaging Address","sspears85043@excellian.direct.allina.com","N","","","DIRECT","Direct","","OTHER","Other","CDA/PDF/TXT","407 W 66th St","","Richfield","MN","US","554232304" -"1093711566","DIRECT","Direct Messaging Address","dsnow1212083@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","1000 1st Dr NW","","Austin","MN","US","559122941" -"1629074190","DIRECT","Direct Messaging Address","paul.jacobson@hsnmi.eclinicalworksdirectplus.com","N","","","","","","","","","701 W Front St","Suite 100","Traverse City","MI","US","496842236" -"1992701460","DIRECT","Direct Messaging Address","mark.leslie@hsnmi.eclinicalworksdirectplus.com","N","","","","","","","","","701 W Front St","Suite 100","Traverse City","MI","US","496842287" -"1619973195","DIRECT","Direct Messaging Address","carmstrong87718@excellian.direct.allina.com","N","","","DIRECT","Direct","","OTHER","Other","other","3400 W 66th St","Ste 385","Edina","MN","US","554352197" -"1154327633","DIRECT","Direct Messaging Address","mackerman5416@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","7250 Clearvista Dr Ste 355","","Indianapolis","IN","US","462565609" -"1427054949","CONNECT","CONNECT URL","COMPULINK","N","SECURE SOFTWARE","","HIE","Health Information Exchange (HIE)","","OTHER","Other","ELECTRONIC HEALTH RECORDS","207 Main St","","Williamsburg","KY","US","407691121" -"1063418580","OTHERS","Other URL","svpappachen@gmail.com","N","","","","","","","","","1241 Vista Hills Dr","","Lakeland","FL","US","338135642" -"1073519559","DIRECT","Direct Messaging Address","kathleenpollock@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","26800 Crown Valley Pkwy","Suite 525","Mission Viejo","CA","US","926916384" -"1982600474","DIRECT","Direct Messaging Address","robert.brumbelow@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","2 Financial Plz","Ste 801","Huntsville","TX","US","773403500" -"1972509461","DIRECT","Direct Messaging Address","karl.ermis@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","2012 W Loop St","","El Campo","TX","US","774378030" -"1043216534","DIRECT","Direct Messaging Address","brent.mcqueen@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","22741 Professional Drive","","Kingwood","TX","US","773396005" -"1487650974","DIRECT","Direct Messaging Address","syed-zaidi@renalphysicians.e-mdsdirect.com","N","Health data to be securely sent to physician","","DIRECT","Direct","","","","","200 River Pointe Dr","Ste 100","Conroe","TX","US","773042828" -"1487650974","DIRECT","Direct Messaging Address","Darshan-tolat@renalphysicians.e-mdsdirect.com","N","Health data to be securely sent to physician","","DIRECT","Direct","","","","","200 River Pointe Dr","Ste 100","Conroe","TX","US","773042828" -"1487650974","DIRECT","Direct Messaging Address","roohi-khan@renalphysicians.e-mdsdirect.com","N","Health data to be securely sent to physician","","DIRECT","Direct","","","","","200 River Pointe Dr","Ste 100","Conroe","TX","US","773042828" -"1093711582","DIRECT","Direct Messaging Address","david.beeler@direct.berkeleyeye.com","Y","","Berkeley Eye Liberty, LP","","","","","","","306 N Main St","Suite A","Dayton","TX","US","775352635" -"1467458984","OTHERS","Other URL","Naples","N","","","DIRECT","Direct","","CSV","CSV","","801 Anchor Rode Dr","Ste 100","Naples","FL","US","341032742" -"1548266067","DIRECT","Direct Messaging Address","smyrniotis@subent.gwaydirect.com","N","","","","","","","","","880 W Central Rd","Ste 7200","Arlington Heights","IL","US","600052382" -"1346246766","DIRECT","Direct Messaging Address","jtrovatovass43200@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","502 Cabela Dr","","Triadelphia","WV","US","260591044" -"1306841820","DIRECT","Direct Messaging Address","tgoedde10254@ecommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","7430 N Shadeland Ave","Suite 230","Indianapolis","IN","US","462502036" -"1386649804","DIRECT","Direct Messaging Address","direct@direct.toc.pbmchealth.org","N","Peconic Bay Medical Center Cerner Direct Address","","HIE","Health Information Exchange (HIE)","","","","","1300 Roanoke Ave","","Riverhead","NY","US","119012031" -"1386649804","FHIR","FHIR URL","https://fhir-myrecord.cerner.com/dstu2","N","Peconic Bay Medical Center FHIR API","","HIE","Health Information Exchange (HIE)","","","","","1300 Roanoke Ave","","Riverhead","NY","US","119012031" -"1588669014","DIRECT","Direct Messaging Address","melinda.gunn.od@direct.have2020.nextgenshare.com","N","Provider Direct Email Address","","DIRECT","Direct","","OTHER","Other","Provider Direct Email Address","302 W 14th St","Ste 100","Jeffersonville","IN","US","471303751" -"1477559904","DIRECT","Direct Messaging Address","curtis.jordan.md@direct.have2020.nextgenshare.com","N","Provider Direct Email Address","","DIRECT","Direct","","OTHER","Other","Provider Direct Email Address","302 W 14th St","Ste 100","Jeffersonville","IN","US","471303751" -"1649276171","DIRECT","Direct Messaging Address","jlister11081@direct.ahn.org","N","","","","","","","","","4815 Liberty Ave Ste 322","","Pittsburgh","PA","US","152242156" -"1326044843","DIRECT","Direct Messaging Address","schwartz@subent.gwaydirect.com","N","","","","","","","","","880 W Central Rd","Ste 7200","Arlington Heights","IL","US","600052382" -"1700882149","DIRECT","Direct Messaging Address","kjohnston85148@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","700 West Ave S","","LA Crosse","WI","US","546014783" -"1558367987","DIRECT","Direct Messaging Address","Jorge.Albina.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","593 Eddy St","NAB 2","Providence","RI","US","029034923" -"1770589137","OTHERS","Other URL","http://www.restorationclinics.com/","N","","","","","","","","","6925 Shallowford Rd Ste 308","","Chattanooga","TN","US","374211789" -"1689670044","DIRECT","Direct Messaging Address","Elizabeth.Altenhein.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","100 Highland Ave","Ste 308","Providence","RI","US","029062740" -"1750387270","DIRECT","Direct Messaging Address","clark@subent.gwaydirect.com","N","","","","","","","","","880 W Central Rd","Ste 7200","Arlington Heights","IL","US","600052382" -"1033115464","DIRECT","Direct Messaging Address","psymes148957@direct.ahn.org","N","","","DIRECT","Direct","","","","","2508 Myrtle St Ste 200","","Erie","PA","US","165022700" -"1801892237","DIRECT","Direct Messaging Address","3740.0001@direct.mankatoeyedoctors.nextgenshare.com","N","","","","","","","","","1630 Adams St","","Mankato","MN","US","56001" -"1689670010","DIRECT","Direct Messaging Address","lawrence.elliott.1@4692.direct.athenahealth.com","N","AMR direct address","","","","","","","","901 Venetia Bay Blvd Ste 300","","Venice","FL","US","342858044" -"1679579015","DIRECT","Direct Messaging Address","william.woolverton.1@4692.direct.athenahealth.com","N","AMR direct address","","","","","","","","901 Venetia Bay Blvd.","STE 300","Venice","FL","US","34285" -"1104822543","DIRECT","Direct Messaging Address","cstachelek148951@direct.ahn.org","N","","","","","","","","","2508 Myrtle Street","Suite 100","Erie","PA","US","165052700" -"1356347736","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","","","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1255337630","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","","","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1922004258","DIRECT","Direct Messaging Address","carolyn.hall.od@direct.have2020.nextgenshare.com","N","Provider Direct Email Address","","DIRECT","Direct","","OTHER","Other","Provider Direct Email Address","302 W 14th St","Ste 100","Jeffersonville","IN","US","471303751" -"1033115365","DIRECT","Direct Messaging Address","robert.reid@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","5419 FM 1960 RD W","Suite C","Houston","TX","US","770694305" -"1942206271","DIRECT","Direct Messaging Address","russell.bond@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","14030 FM 2920","Suite E","Tomball","TX","US","77377" -"1194721423","DIRECT","Direct Messaging Address","david.garza@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","3100 Weslayan St","Ste 400","Houston","TX","US","770275752" -"1821094236","DIRECT","Direct Messaging Address","alcv@195.direct.myezaccess.com","N","AMR direct address","","","","","","","","5890 Valley Rd","Ste 200","Birmingham","AL","US","352358668" -"1427054832","DIRECT","Direct Messaging Address","rkath26389@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","700 West Ave S","","LA Crosse","WI","US","546014783" -"1417953829","DIRECT","Direct Messaging Address","sraja@rvcow.intellechartdirect.net","N","This is the direct mail on our EMR system","","DIRECT","Direct","","OTHER","Other","Protected PHI","2600 N Mayfair Rd","Ste 901","Milwaukee","WI","US","532261307" -"1871599183","DIRECT","Direct Messaging Address","BSFW_INBOX@DIRECT.USPI.COM","N","DIRECT EMAIL ADDRESS","","DIRECT","Direct","","","","","1800 Park Place Ave","","Fort Worth","TX","US","761101302" -"1255337572","DIRECT","Direct Messaging Address","jzurasky102776@oc.providencedirect.org","N","","","","","","","","","4805 NE Glisan St Ste 6N50","","Portland","OR","US","972132933" -"1255337572","DIRECT","Direct Messaging Address","jzurasky102776@oc.providencedirect.org","N","","","","","","","","","9135 SW Barnes Rd Ste 461","","Portland","OR","US","972256643" -"1982600201","DIRECT","Direct Messaging Address","dbeard761256@direct.novanthealth.org","N","","","","","","","","","100 Medical Park Dr","Suite 210","Concord","NC","US","280252948" -"1699771931","DIRECT","Direct Messaging Address","rfunderburk@southeasteye.gwaydirect.com","N","Greenway PrimeSuite","","DIRECT","Direct","","OTHER","Other","CCDA","7268 Jarnigan Rd","Suite 200","Chattanooga","TN","US","374213097" -"1851397194","DIRECT","Direct Messaging Address","MPOTTS246144@DIRECT.NOVANTHEALTH.ORG","N","","","","","","","","","8420 University Exec Park Dr Ste 850","","Charlotte","NC","US","282621308" -"1750387015","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1154327534","DIRECT","Direct Messaging Address","kenneth.smith@direct.signature.nextgenshare.com","N","","","","","","","","","12122 Tesson Ferry Rd","Suite 101","Saint Louis","MO","US","631281772" -"1073519237","DIRECT","Direct Messaging Address","gbrown123238@directwellstar.org","N","","","","","","","","","1000 Corporate Center Dr","Ste 200","Morrow","GA","US","302604129" -"1649276833","DIRECT","Direct Messaging Address","Direct@BradAnstadtMDMelroseParkIL.compulinkdirect.com","N","","","DIRECT","Direct","","CSV","CSV","","675 W North Ave","Ste 107","Melrose Park","IL","US","601601622" -"1881690147","DIRECT","Direct Messaging Address","efreiberger39184@direct.lexmed.com","N","","","","","","","","","2720 Sunset Blvd","","West Columbia","SC","US","291694810" -"1730185968","DIRECT","Direct Messaging Address","hsaul18981@directvirtua.org","N","","","","","","","","","805 Cooper Rd Ste 2","","Voorhees","NJ","US","080433814" -"1104822345","DIRECT","Direct Messaging Address","wantonucci10555@direct.ahn.org","N","","","","","","","","","320 E North Ave","","Pittsburgh","PA","US","152124756" -"1417953670","DIRECT","Direct Messaging Address","jnixon7142@eCommunityDirect.com","Y","","Community Health Network, Inc","","","","","","","6950 Hillsdale Ct","","Indianapolis","IN","US","462502040" -"1043216336","CONNECT","CONNECT URL","daphene.roorda@veinkc.com","N","","","","","","","","","4400 W 109th St Ste 150","","Overland Park","KS","US","662111319" -"1043216336","OTHERS","Other URL","veinsofkc@yahoo.com","N","","","","","","","","","4400 W 109th St Ste 150","","Overland Park","KS","US","662111319" -"1245236496","CONNECT","CONNECT URL","COMPULINK","N","SECURE SOFTWARE","","HIE","Health Information Exchange (HIE)","","OTHER","Other","ELECTRONIC HEALTH RECORDS","467 Sunset Trl","","Jellico","TN","US","377622709" -"1013913326","DIRECT","Direct Messaging Address","michael.dankovich.od@direct.have2020.nextgenshare.com","N","Provider Direct Email Address","","DIRECT","Direct","","OTHER","Other","Provider Direct Email Address","302 W 14th St","Ste 100","Jeffersonville","IN","US","471303751" -"1194721571","DIRECT","Direct Messaging Address","cynthiamarschner@sfc.allscriptsdirect.net","N","","","","","","","","","250 W Kenwood Ave","","Decatur","IL","US","625264371" -"1124024427","DIRECT","Direct Messaging Address","ckratz28042@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","700 West Avenue S.","","La Crosse","WI","US","546014783" -"1982600193","DIRECT","Direct Messaging Address","jellis44410@direct.sw.org","N","","","DIRECT","Direct","","","","","140 Hillcrest Medical Blvd Ste 2","","Waco","TX","US","767128897" -"1699771873","DIRECT","Direct Messaging Address","ltaylor@brandoneyeassociates.intellichartdirect.net","N","","","","","","","","","540 Medical Oaks Ave","Suite 103","Brandon","FL","US","335115995" -"1225034549","DIRECT","Direct Messaging Address","michael.caplan@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","3100 Weslayan St","Ste 400","Houston","TX","US","770275752" -"1215933544","DIRECT","Direct Messaging Address","susan.rasmussen.1@2622.direct.athenahealth.com","N","AMR direct address","","","","","","","","1501 Union Ave","Suite A","Moberly","MO","US","652709469" -"1679579981","DIRECT","Direct Messaging Address","christopher.george@coha.ikm.direct-ci.com","N","","","DIRECT","Direct","","OTHER","Other","CCDA","810 Jasonway Ave","Ste A","Columbus","OH","US","432144359" -"1407852734","DIRECT","Direct Messaging Address","cahilla@ohit.sharear.net","N","","","","","","","","","1609 W 40th Ave","Ste 204","Pine Bluff","AR","US","716036367" -"1730185018","DIRECT","Direct Messaging Address","ofolaranmi167775@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","503 Norhty 21st Street","","Camp Hill","PA","US","170112204" -"1134125305","DIRECT","Direct Messaging Address","bsueoka79524@direct.sw.org","N","","","DIRECT","Direct","","","","","700 Scott and White Dr","","College Station","TX","US","778456441" -"1669478830","DIRECT","Direct Messaging Address","kenneth.sobelmd.p2@direct.gmg.nextgenshare.com","N","Direct Address","","DIRECT","Direct","","OTHER","Other","Direct Edge","575 Professional Dr","Ste 510","Lawrenceville","GA","US","300453336" -"1598761975","DIRECT","Direct Messaging Address","michael.smith@direct.signature.nextgenshare.com","N","","","","","","","","","12122 Tesson Ferry Rd","Ste 101","Saint Louis","MO","US","631281772" -"1972509065","DIRECT","Direct Messaging Address","gastrospec@directaddress.net","N","","","","","","","","","2726 Fulton Dr NW","","Canton","OH","US","447183506" -"1710983002","DIRECT","Direct Messaging Address","joseph.hofmeister@coha.ikm.direct-ci.com","Y","","Columbus Oncology Associates Inc","DIRECT","Direct","","CSV","CSV","","810 Jasonway Ave","Suite A","Columbus","OH","US","432144359" -"1427054519","DIRECT","Direct Messaging Address","smartini@suzanneemartinimd.praxisemr.phimailbox.com","N","","","","","","","","","122 Nieman Street","","Sunman","IN","US","47041" -"1043216146","DIRECT","Direct Messaging Address","benyart@triadeye.intellechartdirect.net","N","","","","","","","","","6140 S Memorial Dr","","Tulsa","OK","US","741331933" -"1619973724","DIRECT","Direct Messaging Address","abae199912@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","3300 Gallows Rd Fl 1","","Falls Church","VA","US","220423307" -"1922004027","DIRECT","Direct Messaging Address","rkaplan21207@direct.ahn.org","N","","","","","","","","","4815 Liberty Ave Ste 322","","Pittsburgh","PA","US","152242156" -"1306842414","DIRECT","Direct Messaging Address","lrichter62655@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","3750 Guion Rd","STE 185","Indianapolis","IN","US","462227602" -"1104822238","DIRECT","Direct Messaging Address","mlandry27835@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","1400 Bellinger St","","Eau Claire","WI","US","54703" -"1558367680","DIRECT","Direct Messaging Address","akellyjones36904@direct.novanthealth.org","N","","","","","","","","","6324 Fairview Rd Ste 440","","Charlotte","NC","US","282104278" -"1588660625","DIRECT","Direct Messaging Address","cdanner36905@direct.novanthealth.org","N","","","","","","","","","1918 Randolph Rd","Ste. 300","Charlotte","NC","US","282071100" -"1245236249","DIRECT","Direct Messaging Address","lware698149@direct.novanthealth.org","N","","","","","","","","","305 W Catawba Ave","","MT Holly","NC","US","281201613" -"1700882701","DIRECT","Direct Messaging Address","ggreer184500@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","2401 Columbus Blvd","","Kokomo","IN","US","469016455" -"1568468569","DIRECT","Direct Messaging Address","katherinelongsdorf@uhps.allscriptsdirect.net","N","","","","","","","","","2111 Claremont Ave","","Ashland","OH","US","448053547" -"1568468569","DIRECT","Direct Messaging Address","katherinelongsdorf@uhps.allscriptsdirect.net","N","","","","","","","","","1033 Ashland Rd Ste 205","","Mansfield","OH","US","449052156" -"1174529234","DIRECT","Direct Messaging Address","scohen@retinavitreous.intellechartdirect.net","N","Nextech MDI secure email","","HIE","Health Information Exchange (HIE)","","","","","579 S Duncan Ave","","Clearwater","FL","US","337566256" -"1124024245","DIRECT","Direct Messaging Address","awoodcome@rcri.intellechartdirect.net","N","","","DIRECT","Direct","","CSV","CSV","","101 Plain St Ste 101","","Providence","RI","US","029034828" -"1619973732","DIRECT","Direct Messaging Address","lrogers36903@direct.novanthealth.org","N","","","","","","","","","1918 Randolph Rd","Ste 300","Charlotte","NC","US","282071100" -"1194721126","DIRECT","Direct Messaging Address","wdavis476648@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372322513" -"1255337382","DIRECT","Direct Messaging Address","snath175976@direct.musc.edu","N","","","DIRECT","Direct","","","","","171 Ashley Ave","","Charleston","SC","US","294258908" -"1942206016","DIRECT","Direct Messaging Address","dhagler134587@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","559050001" -"1396741476","DIRECT","Direct Messaging Address","medreview@reverehealth.com","Y","","Central Utah Clinic, P.C.","","","","","","","1055 N 500 W Bldg A","","Provo","UT","US","846043305" -"1457357436","DIRECT","Direct Messaging Address","bartd@palmettoeye.emadirect.md","Y","","SUNGATE MEDICAL GROUP LLC","HIE","Health Information Exchange (HIE)","","CSV","CSV","","10 William Pope Drive","","Bluffton","SC","US","299097459" -"1972509966","DIRECT","Direct Messaging Address","UPMCAsburyHeights@upmcdirect.com","N","Secure direct Address for UPMC Skilled Nursing Facility","","HIE","Health Information Exchange (HIE)","","","","","700 Bower Hill Rd","","Pittsburgh","PA","US","152432040" -"1821094889","CONNECT","CONNECT URL","Anchorage","N","","","","","","","","","4100 Lake Otis Pkwy","","Anchorage","AK","US","995085222" -"1528064581","DIRECT","Direct Messaging Address","roger.hiser.1@1498.direct.athenahealth.com","N","","","","","","","","","150 Gentilly Blvd","","Cartersville","GA","US","301208522" -"1477559243","DIRECT","Direct Messaging Address","c.franklinmd.p1@direct.arthritispa.nextgenshare.com","Y","","RHEUMATIC DISEASE ASSOCIATES,LTD","HIE","Health Information Exchange (HIE)","","","","","2360 Maryland Rd","","Willow Grove","PA","US","19090" -"1881690857","DIRECT","Direct Messaging Address","hlee22356@directwellstar.org","N","","","","","","","","","55 Whitcher St NE","Suite 350","Marietta","GA","US","300601155" -"1790781763","DIRECT","Direct Messaging Address","vumc@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 The Vanderbilt Clinic","","Nashville","TN","US","372320001" -"1851397723","DIRECT","Direct Messaging Address","michael.bell.1@1928.direct.athenahealth.com","N","AMR Direct Address","","","","","","","","4371 E Lohman Ave Fl 2","","Las Cruces","NM","US","880118255" -"1568468437","DIRECT","Direct Messaging Address","rgraves26520@direct.martinhealth.org","N","","","","","","","","","509 SE Riverside Dr","SUITE 203","Stuart","FL","US","349942579" -"1083610950","DIRECT","Direct Messaging Address","acomerota579566@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","2921 Telestar Ct","","Falls Church","VA","US","220421205" -"1407852379","DIRECT","Direct Messaging Address","mark.lopatinmd.p1@direct.arthritispa.nextgenshare.com","Y","","RHEUMATIC DISEASE ASSOCIATES,LTD","HIE","Health Information Exchange (HIE)","","","","","2360 Maryland Rd","","Willow Grove","PA","US","19090" -"1215933197","DIRECT","Direct Messaging Address","bchang@corneaconsultants.intellechartdirect.net","N","secure email","","","","","","","","2400 Patterson St","Suite 201","Nashville","TN","US","372031562" -"1720084601","DIRECT","Direct Messaging Address","egroos@corneaconsultants.intellechartdirect.net","N","secure email","","","","","","","","2400 Patterson St","Suite 201","Nashville","TN","US","372031562" -"1316943244","DIRECT","Direct Messaging Address","smaurernp@direct.practicefusion.com","Y","","Phoenix Housecall Associates of South Jersey","HIE","Health Information Exchange (HIE)","","OTHER","Other","Health information exchange","4510 Church Rd","","Mount Laurel","NJ","US","080542210" -"1740286699","DIRECT","Direct Messaging Address","pmcallister330373@direct.ahn.org","N","","","","","","","","","2315 Myrtle St Ste L90","","Erie","PA","US","165024607" -"1225034002","DIRECT","Direct Messaging Address","ahovagim394752@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","13400 E Shea Blvd","","Scottsdale","AZ","US","852595452" -"1831195890","DIRECT","Direct Messaging Address","charles.hollas@direct.berkeleyeye.com","Y","","Berkeley Eye Institute, PA","","","","","","","18040 Saturn Ln","","Houston","TX","US","770584500" -"1396741369","DIRECT","Direct Messaging Address","jwilliams130553@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","1011 Main St","Ste 110","Indianapolis","IN","US","462246977" -"1952307910","DIRECT","Direct Messaging Address","lwright45609@direct.nortonhealthcare.org","N","","","","","","","","","601 S Floyd St","Ste 602","Louisville","KY","US","402021845" -"1952307910","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","601 S Floyd St","Ste 602","Louisville","KY","US","402021845" -"1154327039","DIRECT","Direct Messaging Address","sbiel23758@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","sbiel23758@direct-ehr-ssmhc.com","12266 De Paul Dr Ste 205","","Bridgeton","MO","US","630442514" -"1154327039","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","12266 De Paul Dr Ste 205","","Bridgeton","MO","US","630442514" -"1881690766","DIRECT","Direct Messaging Address","ishivitz@corneaconsultants.intellechartdirect.net","N","secure email","","","","","","","","2400 Patterson St","Suite 201","Nashville","TN","US","372031562" -"1538165493","DIRECT","Direct Messaging Address","dlesseski282239@direct.ahn.org","N","","","","","","","","","145 W 23rd St Ste 202","","Erie","PA","US","165022858" -"1891791695","DIRECT","Direct Messaging Address","andrew.day.p1@direct.wacocardiology.nextgenshare.com","N","API for Waco Cardiology Associates","","HIE","Health Information Exchange (HIE)","","OTHER","Other","wacocardiology@direct.wacocardiology.nextgenshare.com","7125 New Sanger Ave Ste A","","Waco","TX","US","767124054" -"1891791695","DIRECT","Direct Messaging Address","andrew.day.p1@direct.wacocardiology.nextgenshare.com","N","","","","","","","","","7125 New Sanger Ave Ste A","","Waco","TX","US","767124054" -"1952307746","DIRECT","Direct Messaging Address","jmoola122072@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","503 N 21st St","","Camp Hill","PA","US","170112204" -"1710983523","DIRECT","Direct Messaging Address","rex.appenfeller.1@10.direct.athenahealth.com","N","","","","","","","","","1 Commerce St Ste 200","","Lincoln","RI","US","028651186" -"1902802697","DIRECT","Direct Messaging Address","ttufamilymedicine@direct.myteamcare.com","N","TTU Family Medicine","","DIRECT","Direct","","CSV","CSV","","3601 4th St Stop 8143","","Lubbock","TX","US","794308143" -"1982600615","DIRECT","Direct Messaging Address","csmith5843@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","csmith5843@direct-ehr-ssmhc.com","722 N State Highway 47","","Warrenton","MO","US","633831108" -"1982600615","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","CCD","722 N State Highway 47","","Warrenton","MO","US","633831108" -"1376549071","DIRECT","Direct Messaging Address","ssmoak@southeasteye.gwaydirect.com","N","Greenway PrimeSuite","","DIRECT","Direct","","OTHER","Other","CCDA","7268 Jarnigan Rd","Suite 200","Chattanooga","TN","US","374213097" -"1801892518","DIRECT","Direct Messaging Address","wgalek29938@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","743 Spring St NE","","Gainesville","GA","US","305013715" -"1306842042","DIRECT","Direct Messaging Address","mblades1793@direct.thechristhospital.com","Y","","The Christ Hospital Medical Associates, LLC","DIRECT","Direct","","","","","5885 Harrison Ave","Suite 3500","Cincinnati","OH","US","452481651" -"1497751044","DIRECT","Direct Messaging Address","lklein100474@direct.nortonhealthcare.org","N","","","","","","","","","411 E Chestnut St","","Louisville","KY","US","402021713" -"1497751044","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","411 E Chestnut St","","Louisville","KY","US","402021713" -"1841296498","DIRECT","Direct Messaging Address","DuaneNelson@direct-address.net","N","","","","","","","","","1055 N 300 W","Ste 204","Provo","UT","US","846043374" -"1568468114","DIRECT","Direct Messaging Address","lsteber395701@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","5777 E Mayo Blvd","","Phoenix","AZ","US","850544502" -"1619973302","DIRECT","Direct Messaging Address","jzhao81541@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","16 Woodbine Ln","","Danville","PA","US","178218029" -"1982600789","DIRECT","Direct Messaging Address","rclark@directaddress.net","N","","","","","","CSV","CSV","","200 Wellesley Trade Ln","","Cary","NC","US","275195576" -"1982600789","DIRECT","Direct Messaging Address","rclark@directaddress.net","N","","","","","","","","","5 Regional Cir Ste B&c","","Pinehurst","NC","US","283749863" -"1528064292","FHIR","FHIR URL","fhir.virginiaurology.com","N","","","","","","","","","9101 Stony Point Dr","","Richmond","VA","US","232351979" -"1033115712","DIRECT","Direct Messaging Address","robert.cohen.1@10.direct.athenahealth.com","N","","","","","","","","","1 Commerce St","Internal Medicine","Lincoln","RI","US","028651168" -"1811993652","DIRECT","Direct Messaging Address","lburke@minnitioncoemrdirect.com","N","direct domain address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","174 Democrat Rd","","Mickleton","NJ","US","080561236" -"1932105624","DIRECT","Direct Messaging Address","benedict.fernando.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1265438923","DIRECT","Direct Messaging Address","diane.siedlecki.1@10.direct.athenahealth.com","N","","","","","","","","","180 Corliss St Ste B","","Providence","RI","US","029042602" -"1972509636","DIRECT","Direct Messaging Address","caroline.troise.1@10.direct.athenahealth.com","N","","","","","","","","","180 Corliss St Ste B","","Providence","RI","US","029042602" -"1568468239","DIRECT","Direct Messaging Address","anuruddha.walaliyadda.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1063418762","DIRECT","Direct Messaging Address","rruiz26083@soc.inova.org","Y","Health Information Exchange","Inova Physician Partners, Inc.","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","6201 Centreville Rd","Ste 100","Centreville","VA","US","201212626" -"1699771394","DIRECT","Direct Messaging Address","jbrown24859@soc.inova.org","Y","Health Information Exchange","Inova Physician Partners, Inc.","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","6201 Centreville Rd","100","Centreville","VA","US","201212446" -"1306842026","DIRECT","Direct Messaging Address","apatel30562@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","1402 E County Line Rd","","Indianapolis","IN","US","46227" -"1154327997","DIRECT","Direct Messaging Address","rdworkin186906@oc.providencedirect.org","N","","","","","","","","","5050 NE Hoyt St","Ste 540","Portland","OR","US","972132985" -"1497751291","DIRECT","Direct Messaging Address","mbasso620537@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","559050001" -"1780680496","DIRECT","Direct Messaging Address","charles.shoultz.p1@direct.wacocardiology.nextgenshare.com","N","API for Waco Cardiology Associates","","HIE","Health Information Exchange (HIE)","","OTHER","Other","wacocardiology@direct.wacocardiology.nextgenshare.com","7125 New Sanger Ave Ste A","","Waco","TX","US","767124054" -"1780680496","DIRECT","Direct Messaging Address","charles.shoultz.p1@direct.wacocardiology.nextgenshare.com","N","","","","","","","","","7125 New Sanger Ave Ste A","","Waco","TX","US","767124054" -"1447256110","DIRECT","Direct Messaging Address","donald.cross.p1@direct.wacocardiology.nextgenshare.com","N","API for Waco Cardiology Associates","","HIE","Health Information Exchange (HIE)","","OTHER","Other","wacocardiology@direct.wacocardiology.nextgenshare.com","7125 New Sanger Avenue","Ste A","Waco","TX","US","767124054" -"1447256110","DIRECT","Direct Messaging Address","donald.cross.p1@direct.wacocardiology.nextgenshare.com","N","","","","","","","","","7125 New Sanger Ave Ste A","","Waco","TX","US","767124054" -"1861498685","DIRECT","Direct Messaging Address","adedayo.adetola.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","1453 Whalley Ave","","New Haven","CT","US","065151153" -"1639175482","DIRECT","Direct Messaging Address","heidi.dorris.1@10.direct.athenahealth.com","N","","","","","","","","","180 Corliss St Ste B","","Providence","RI","US","029042602" -"1225034077","DIRECT","Direct Messaging Address","joan.goddard.1@10.direct.athenahealth.com","N","","","","","","","","","180 Corliss St Ste B","","Providence","RI","US","029042602" -"1659377315","DIRECT","Direct Messaging Address","robert.mathieu.1@10.direct.athenahealth.com","N","","","","","","","","","180 Corliss St Ste B","","Providence","RI","US","029042602" -"1558367284","DIRECT","Direct Messaging Address","heartcenternurse@mcclinic.direct-ci.net","N","Mason City Clinic Direct Email Address","","DIRECT","Direct","","OTHER","Other","CCDA","250 S Crescent Dr","Suite 200","Mason City","IA","US","504012911" -"1700882511","DIRECT","Direct Messaging Address","mcarranza14056@direct.sw.org","N","","","","","","","","","2401 S 31st St","","Temple","TX","US","765080001" -"1558367359","DIRECT","Direct Messaging Address","lynne.hillis.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","1453 Whalley Ave","","New Haven","CT","US","065151153" -"1790781508","DIRECT","Direct Messaging Address","direct@direct.bronsonhg.org","Y","Bronson Healthcare Group Direct address","Bronson Healthcare Group","DIRECT","Direct","","OTHER","Other","Continuity of Care Document","601 John St","","Kalamazoo","MI","US","490075341" -"1932105749","DIRECT","Direct Messaging Address","isavelloni621434@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","8503 Arlington Blvd Ste 200","","Fairfax","VA","US","220314629" -"1487650297","DIRECT","Direct Messaging Address","jdellarosa95266@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","190 Welles St","Ste 114","Forty Fort","PA","US","187044969" -"1487650222","DIRECT","Direct Messaging Address","joseph.balsamo.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1598761264","DIRECT","Direct Messaging Address","judith.blazar.westrick.1@10.direct.athenahealth.com","N","","","","","","","","","1 Commerce St","Pediatrics","Lincoln","RI","US","028651168" -"1528064268","DIRECT","Direct Messaging Address","aspergel68434@direct.ahn.org","N","","","","","","","","","1163 Country Club Rd Ste 101","","Monongahela","PA","US","150631013" -"1790781474","DIRECT","Direct Messaging Address","joverholtzer25908@soc.inova.org","Y","","Inova Physician Partners, Inc.","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","6201 Centreville Rd","Ste 100","Centreville","VA","US","201212626" -"1245236926","DIRECT","Direct Messaging Address","lday25025@soc.inova.org","Y","Health Information Exchange","Inova Physician Partners, Inc.","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","6201 Centreville Rd","Ste 100","Centreville","VA","US","201212626" -"1174529861","DIRECT","Direct Messaging Address","farzanatausif@hotmail.com","N","","","","","","","","","","","","","","" -"1538165220","DIRECT","Direct Messaging Address","credentialing@fhclouisville.org","N","Employer","","DIRECT","Direct","","CSV","CSV","","2215 Portland Ave","","Louisville","KY","US","402121033" -"1538165220","DIRECT","Direct Messaging Address","credentialing@fhclouisville.org","N","","","","","","","","","2215 Portland Ave","","Louisville","KY","US","402121033" -"1346246063","DIRECT","Direct Messaging Address","emolinary7497@directwellstar.org","N","","","","","","","","","55 Whitcher St NE","Suite 160","Marietta","GA","US","300601155" -"1952307670","DIRECT","Direct Messaging Address","jroark30017@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","1856 Thompson Bridge Rd Ste 14","","Gainesville","GA","US","305011620" -"1700882446","DIRECT","Direct Messaging Address","lbritt29948@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","2510 Limestone Pkwy","","Gainesville","GA","US","305012089" -"1679579221","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","411 E Chestnut St # 5A","","Louisville","KY","US","402021713" -"1679579221","DIRECT","Direct Messaging Address","wsobczyk45652@direct.nortonhealthcare.org","N","","","","","","","","","411 E Chestnut St # 5A","","Louisville","KY","US","402021713" -"1598761140","DIRECT","Direct Messaging Address","pringelman@directaddress.net","N","Paul R Ringelman, MD","","DIRECT","Direct","","","","","7505 Osler Dr","Ste 403","Baltimore","MD","US","212047736" -"1376549956","DIRECT","Direct Messaging Address","aprasad39594@direct.novanthealth.org","N","","","","","","","","","4205 Ben Franklin Blvd","","Durham","NC","US","277042143" -"1720084320","DIRECT","Direct Messaging Address","horatiu.balas.p4@direct.pact.nextgenshare.com","N","","","HIE","Health Information Exchange (HIE)","","","","","687 Campbell Ave","","West Haven","CT","US","065163774" -"1851397467","DIRECT","Direct Messaging Address","sday@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","4660 Kenmore Ave.","Ste 1200","Alexandria","VA","US","223041311" -"1023014651","DIRECT","Direct Messaging Address","rstcyr1043325@wm.providencedirect.org","N","","","DIRECT","Direct","","","","","945 Hildebrand Ln NE","Suite 100","Bainbridge Island","WA","US","981102877" -"1487650065","CONNECT","CONNECT URL","https://hie.healtheconnections.org/#/healthe-login","N","Health Information Exchange","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","4 Fuller St","","Alexandria Bay","NY","US","136071316" -"1013913631","DIRECT","Direct Messaging Address","wfowler39553@direct.novanthealth.org","N","","","","","","","","","4205 Ben Franklin Blvd","","Durham","NC","US","277042143" -"1962408526","DIRECT","Direct Messaging Address","arafael17845@secure.stcharleshealthcare.org","N","","","","","","","","","2500 NE Neff Rd","","Bend","OR","US","977016015" -"1417953084","DIRECT","Direct Messaging Address","scoutras1053@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Center Dr","","Morgantown","WV","US","265061200" -"1417953084","DIRECT","Direct Messaging Address","scoutras1053@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Center Dr","","Morgantown","WV","US","265061200" -"1548266117","DIRECT","Direct Messaging Address","jwaldman26411@soc.inova.org","Y","Health Informatin Exchange","Inova Physician Partners, Inc.","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","6201 Centreville Rd","# 100","Centreville","VA","US","201212446" -"1871599472","DIRECT","Direct Messaging Address","mmueller@centerforsight.intellechartdirect.net","Y","","Center For Sight, PL","","","","","","","2601 S Tamiami Trl","","Sarasota","FL","US","342394504" -"1932105541","DIRECT","Direct Messaging Address","thomas.avellamd.p1@direct.crystalrun.nextgenshare.com","N","","","DIRECT","Direct","","","","","6 Liberty Square Mall","","Stony Point","NY","US","109802400" -"1366449902","DIRECT","Direct Messaging Address","ahenry426382@direct.healthsystem.virginia.edu","N","","","DIRECT","Direct","","","","","9 Pinnacle Dr Ste A03","","Fishersville","VA","US","229392367" -"1578560140","DIRECT","Direct Messaging Address","tsturgill@rcar0003.direct.chirotouch.MD","N","","","DIRECT","Direct","","","","","1111 Hillcrest Dr","","Woodward","OK","US","738013027" -"1801893474","DIRECT","Direct Messaging Address","rzachary@i35cpg.com","N","","","DIRECT","Direct","","CSV","CSV","","220 N Ridgeway Dr","","Cleburne","TX","US","760334115" -"1710984398","DIRECT","Direct Messaging Address","clewisjr9554@direct.garnethealth.org","Y","","Garnet Health Doctors PC","","","","","","","707 E Main St","","Middletown","NY","US","109402650" -"1760489314","DIRECT","Direct Messaging Address","shelman5330@direct.novanthealth.org","N","","","","","","","","","4136 Clemmons Rd","","Clemmons","NC","US","270127520" -"1003813650","DIRECT","Direct Messaging Address","rtoborg5396@direct.novanthealth.org","N","","","","","","","","","3333 Brookview Hills Blvd","Ste 204","Winston-Salem","NC","US","271035661" -"1841297421","DIRECT","Direct Messaging Address","JORGE.SIFUENTES@JASM.ECLINICALDIRECT.COM","N","P2P ADDRESS","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","713 Deahl St","","Borger","TX","US","790073522" -"1326045915","OTHERS","Other URL","CINCINNATI","N","","","","","","","","","10506 Montgomery Rd Ste 402","","Cincinnati","OH","US","452424489" -"1588661177","DIRECT","Direct Messaging Address","wkirsch791116@DirectC.mercy.net","N","","","DIRECT","Direct","","","","","18051 River Rd Ste 200","","Noblesville","IN","US","460627092" -"1578560165","DIRECT","Direct Messaging Address","FranklinEdmunds@direct-address.net","N","","","","","","","","","1055 N 300 W","Ste 204","Provo","UT","US","846043374" -"1104823798","DIRECT","Direct Messaging Address","rhale106016@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","100 N Academy Ave","","Danville","PA","US","178226706" -"1730186297","DIRECT","Direct Messaging Address","elinfors39593@direct.novanthealth.org","N","","","","","","","","","4205 Ben Franklin Blvd","","Durham","NC","US","277042143" -"1447257092","DIRECT","Direct Messaging Address","lgandhi5434@direct.novanthealth.org","N","","","","","","","","","3333 Brookview Hills Blvd","Ste 204","Winston Salem","NC","US","271035661" -"1407853013","DIRECT","Direct Messaging Address","kmatteson@swhealth.direct-ci.net","N","","","DIRECT","Direct","","","","","1311A N Mildred Rd","Ste A","Cortez","CO","US","813212231" -"1578560181","DIRECT","Direct Messaging Address","awest@directaddress.net","N","","","","","","","","","2811 KLEMPNER WAY","","Louisville","KY","US","40205" -"1457358079","DIRECT","Direct Messaging Address","LAURA.SULLIVAN1@VA.GOV","N","VA EMAIL","","HIE","Health Information Exchange (HIE)","","","","","DEPT OF VET AFFAIRS WIREGRASS HBPC","301 ANDREWS AVENUE","FORT RUCKER","AL","US","36362" -"1174520795","DIRECT","Direct Messaging Address","wlevy@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","1005 N Glebe Rd","#750","Arlington","VA","US","222015718" -"1598762114","DIRECT","Direct Messaging Address","kreschly681494@direct.novanthealth.org","N","","","","","","","","","240 Hospital Dr NE","","Bolivia","NC","US","284228346" -"1790782225","DIRECT","Direct Messaging Address","William.Cioffi.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","2 Dudley St","Suite 470","Providence","RI","US","029053236" -"1164429627","DIRECT","Direct Messaging Address","jtcobb@teg.emadirect.md","N","Direct Messaging","","DIRECT","Direct","","OTHER","Other","Direct Edge","5995 Barfield Rd","","Sandy Springs","GA","US","303284411" -"1205833647","DIRECT","Direct Messaging Address","bwinslow39596@direct.novanthealth.org","N","","","","","","","","","4205 Ben Franklin Blvd","","Durham","NC","US","277042143" -"1801893375","DIRECT","Direct Messaging Address","ToddCook@direct-address.net","N","","","","","","","","","1055 N 300 W","Ste 204","Provo","UT","US","846043374" -"1497752968","DIRECT","Direct Messaging Address","ltackman736377@direct.novanthealth.org","N","","","","","","","","","97 Cornerstone Dr","","Cary","NC","US","275198403" -"1568469039","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1063419497","DIRECT","Direct Messaging Address","rvaripapa14791@bayhealth.direct-ci.net","N","care document sharing in EPIC","","DIRECT","Direct","","OTHER","Other","direct email","1074 S STATE ST","","DOVER","DE","US","199016925" -"1417954843","DIRECT","Direct Messaging Address","ftalip81184@direct.novanthealth.org","N","","","","","","","","","146 E. Hospital DR.","Suite 550","WEST COLUMBIA","SC","US","29036" -"1386641728","DIRECT","Direct Messaging Address","smishra769113@direct.novanthealth.org","N","","","","","","","","","4815 Berewick Town Center Dr Ste C&d","","Charlotte","NC","US","282786733" -"1518964964","DIRECT","Direct Messaging Address","jpavlik7288@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","8040 Clearvista Pkwy","#240","Indianapolis","IN","US","462565630" -"1881691236","DIRECT","Direct Messaging Address","spenny14815@bayhealth.direct-ci.net","N","care document sharing in EPIC","","DIRECT","Direct","","OTHER","Other","direct email","1074 S State St","","Dover","DE","US","199016925" -"1124025663","DIRECT","Direct Messaging Address","Theresa.Graves.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","2 Dudley St","Suite 470","Providence","RI","US","029053236" -"1558368092","DIRECT","Direct Messaging Address","David.Harrington.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","2 Dudley St","Suite 470","Providence","RI","US","029053236" -"1073510483","DIRECT","Direct Messaging Address","calftine309460@oc.providencedirect.org","N","","","","","","","","","3225 Hillcrest Park Drive","","Medford","OR","US","97504" -"1073510483","DIRECT","Direct Messaging Address","calftine309460@oc.providencedirect.org","N","","","","","","","","","70 Bower Dr","","Medford","OR","US","975013689" -"1588661995","DIRECT","Direct Messaging Address","kueckerbezdicek81952@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","800 Medical Center Dr","","Fairmont","MN","US","56031" -"1497752844","DIRECT","Direct Messaging Address","jjansen7069@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","8040 Clearvista Pkwy","#240","Indianapolis","IN","US","462565630" -"1184621534","DIRECT","Direct Messaging Address","sduncanbutler252630@direct.novanthealth.org","N","","","","","","","","","3614 Providence Rd S Ste 101","","Waxhaw","NC","US","281736309" -"1124025580","DIRECT","Direct Messaging Address","gpeard301079@oc.providencedirect.org","N","","","","","","","","","70 Bower Dr","","Medford","OR","US","975013689" -"1124025580","DIRECT","Direct Messaging Address","gpeard301079@oc.providencedirect.org","N","","","","","","","","","3225 Hillcrest Park Drive","","Medford","OR","US","97504" -"1649277005","DIRECT","Direct Messaging Address","jfreid14645@bayhealth.direct-ci.net","N","care document sharing in EPIC","","DIRECT","Direct","","OTHER","Other","direct email","111 Neurology Way","","Milford","DE","US","199635368" -"1871590372","DIRECT","Direct Messaging Address","fcarlos63178@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","190 Welles St","","Kingston","PA","US","187044968" -"1205833787","DIRECT","Direct Messaging Address","nakhtar50902@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","4200 Hospital Rd.","","Coal Township","PA","US","17866" -"1487651964","DIRECT","Direct Messaging Address","laura.yard@lindnercenter.org","N","email address","","","","","","","","4483 US Route 42","","Mason","OH","US","45040" -"1487651964","CONNECT","CONNECT URL","laura.yard@lindercenter.org","N","business email","","","","","","","","4483 US Route 42","","Mason","OH","US","45040" -"1467459941","DIRECT","Direct Messaging Address","jparameswaran35898@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","672 Aquidneck Ave","","Middletown","RI","US","028425795" -"1457358939","OTHERS","Other URL","Epic","N","","","","","","","","","2356 Sutter St","","San Francisco","CA","US","941153006" -"1457358939","CONNECT","CONNECT URL","EPIC","N","","","","","","","","","2356 Sutter St","","San Francisco","CA","US","941153006" -"1679570097","DIRECT","Direct Messaging Address","rbaughman2618@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","8040 Clearvista Pkwy","#240","Indianapolis","IN","US","462565630" -"1831196260","DIRECT","Direct Messaging Address","atalip81149@direct.novanthealth.org","N","","","","","","","","","132 Sunset Ct","","West Columbia","SC","US","291692429" -"1184621559","DIRECT","Direct Messaging Address","twinter285693@oc.providencedirect.org","N","","","","","","","","","965 Ellendale Dr","","Medford","OR","US","975048215" -"1184621559","DIRECT","Direct Messaging Address","twinter285693@oc.providencedirect.org","N","","","","","","","","","70 Bower Dr","","Medford","OR","US","975013689" -"1093712481","DIRECT","Direct Messaging Address","eengelstein8636@ce-direct.presencehealth.org","N","","","","","","","","","7447 W Talcott Ave Ste 222","","Chicago","IL","US","606313713" -"1356348759","DIRECT","Direct Messaging Address","wnewton29387@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","950A S. Enota Drive","","Gainesville","GA","US","305012439" -"1508863978","DIRECT","Direct Messaging Address","JoeHaggard@direct-address.net","N","","","","","","","","","1055 N 300 W","Ste 204","Provo","UT","US","846043374" -"1275530669","OTHERS","Other URL","http://www.drvufamilymed.com","N","","","","","","","","","401 S 7th St Ste 4","","Akron","PA","US","175011490" -"1255338653","DIRECT","Direct Messaging Address","sjnewman@teg.emadirect.md","N","Direct Messaging","","DIRECT","Direct","","OTHER","Other","Direct Edge","11690 Alpharetta Hwy","","Roswell","GA","US","300763805" -"1770580144","DIRECT","Direct Messaging Address","pcoveleski14896@bayhealth.direct-ci.net","N","care document sharing in EPIC","","DIRECT","Direct","","OTHER","Other","direct email","111 Neurology Way","","Milford","DE","US","19963" -"1952308256","DIRECT","Direct Messaging Address","painmgmtnurse@mcclinic.direct-ci.net","N","Mason City Clinic Direct Email Address","","DIRECT","Direct","","OTHER","Other","CCDA","250 S Crescent Dr","","Mason City","IA","US","504012926" -"1609873942","DIRECT","Direct Messaging Address","rbrady@southeasteye.gwaydirect.com","N","Greenway PrimeSuite","","DIRECT","Direct","","OTHER","Other","CCDA","7268 Jarnigan Rd","Suite 200","Chattanooga","TN","US","374213097" -"1760489017","DIRECT","Direct Messaging Address","rlilly330711@direct-ehr-ssmhc.com","N","","","DIRECT","Direct","","OTHER","Other","rlilly330711@direct-ehr-ssmhc.com","420 E Division St","","Fond Du Lac","WI","US","549354560" -"1760489017","FHIR","FHIR URL","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","N","","","OTHER","Other","FHIR API","OTHER","Other","https://fhir.ssmhc.com/fhir/api/FHIR/DSTU2/","420 E Division St","","Fond Du Lac","WI","US","549354560" -"1992702229","DIRECT","Direct Messaging Address","direct@direct.bronsonhg.org","Y","Bronson Healthcare Group Direct address","Bronson Healthcare Group","DIRECT","Direct","","OTHER","Other","Continuity of Care Document","601 John St","","Kalamazoo","MI","US","490075341" -"1992702229","DIRECT","Direct Messaging Address","direct@direct.bronsonhg.org","Y","Bronson Healthcare Group Direct address","Bronson Healthcare Group","DIRECT","Direct","","OTHER","Other","Continuity of Care Document","601 John St","","Kalamazoo","MI","US","490075341" -"1922005164","DIRECT","Direct Messaging Address","mchung14422@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","235 Hanover St","","Fall River","MA","US","027205246" -"1265439582","DIRECT","Direct Messaging Address","jcoll14640@bayhealth.direct-ci.net","N","care document sharing in EPIC","","DIRECT","Direct","","OTHER","Other","direct email","1074 S State St","","Dover","DE","US","199016925" -"1851398093","DIRECT","Direct Messaging Address","priscilla.fowler.p1@direct.uabmc.nextgenshare.com","N","","","","","","","","","700 18th St S","Suite 601","Birmingham","AL","US","352331856" -"1689671836","CONNECT","CONNECT URL","Mcallen","N","","","HIE","Health Information Exchange (HIE)","","","","","2509 Buddy Owens Ave","","McAllen","TX","US","785045427" -"1174520456","DIRECT","Direct Messaging Address","suman.sawhneymd.p1@direct.crystalrun.nextgenshare.com","N","","","DIRECT","Direct","","","","","6 Liberty Square Mall","","Stony Point","NY","US","109802400" -"1144227471","DIRECT","Direct Messaging Address","jcole30710@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","1550 E County Line Rd","Suite 200","Indianapolis","IN","US","462271000" -"1194722462","DIRECT","Direct Messaging Address","achanankhan67249@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","4500 San Pablo Rd S","","Jacksonville","FL","US","322241865" -"1710984000","DIRECT","Direct Messaging Address","awhitsel28598@direct.ahn.org","N","","","","","","","","","4815 Liberty Avenue","Suite GR59","Pittsburgh","PA","US","152242156" -"1841297132","DIRECT","Direct Messaging Address","jbarneson23290@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","733 W Clairemont Ave","","Eau Claire","WI","US","547016101" -"1497752604","DIRECT","Direct Messaging Address","stang95204@direct.novanthealth.org","N","","","","","","","","","8180 Stonewall Shops Sq","","Gainesville","VA","US","201553891" -"1457358665","DIRECT","Direct Messaging Address","scooley1821@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","5680 Bridgetown Rd","","Cincinnati","OH","US","45248" -"1356348544","DIRECT","Direct Messaging Address","ballen6681@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","4460 Red Bank Rd Ste 220","","Cincinnati","OH","US","452272173" -"1487651675","DIRECT","Direct Messaging Address","nlevin108282@directvirtua.org","N","","","","","","","","","239 Hurffville Crosskeys Rd Ste 350A","","Sewell","NJ","US","08080" -"1710984927","DIRECT","Direct Messaging Address","jchapman508134@direct.novanthealth.org","N","","","","","","","","","865 W Lake Dr","","Mount Airy","NC","US","270302157" -"1356348569","DIRECT","Direct Messaging Address","mjennings1797@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","2123 Auburn Ave Ste 334","","Cincinnati","OH","US","452192906" -"1013914233","DIRECT","Direct Messaging Address","nslattery1800@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","5885 Harrison Ave Ste 2500","","Cincinnati","OH","US","452481726" -"1073510293","DIRECT","Direct Messaging Address","terrenceobringer@pmapa.allscriptsdirect.net","N","","","DIRECT","Direct","","","","","4815 Liberty Ave Ste M23","","Pittsburgh","PA","US","152242156" -"1609873827","DIRECT","Direct Messaging Address","tyuellig1825@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","5885 Harrison Ave","Suite 3500","Cincinnati","OH","US","452481651" -"1487651618","DIRECT","Direct Messaging Address","jminiutti6116@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1800 Main Rd","","Tiverton","RI","US","028784625" -"1093712226","DIRECT","Direct Messaging Address","skeigwin5946@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","1800 Main Rd","","Tiverton","RI","US","028784625" -"1336146570","DIRECT","Direct Messaging Address","gchannan1693@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","4631 Ridge Ave","Ste. B","Cincinnati","OH","US","452091028" -"1699772830","DIRECT","Direct Messaging Address","ibullard1804@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","7685 Beechmont Ave","","Cincinnati","OH","US","452554216" -"1699772830","DIRECT","Direct Messaging Address","ibullard1804@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","7545 Beechmont Ave Ste N","","Cincinnati","OH","US","452554231" -"1649277898","DIRECT","Direct Messaging Address","ruben-almanza@rjalmanza.e-mdsdirect.com","N","direct messaging address","","DIRECT","Direct","","CSV","CSV","","5446 Lipes Blvd Ste 101","","Corpus Christi","TX","US","784132509" -"1366449522","DIRECT","Direct Messaging Address","jduc@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","2901 Telestar Ct # 150","","Falls Church","VA","US","220421260" -"1184621344","DIRECT","Direct Messaging Address","srosenfeld@virginiaheart.direct.gemmsnet.com","N","","","","","","","","","4660 Kenmore Ave","#1200","Alexandria","VA","US","223041313" -"1699772863","DIRECT","Direct Messaging Address","MARK.LITTLE@WELLNESSPOINTE.ORG","N","MARK.LITTLE@WELLNESSPOINTE.ORG","","","","","","","","1107 E Marshall Ave","","Longview","TX","US","756015602" -"1639176746","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1629075734","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1871590901","DIRECT","Direct Messaging Address","sjohnrosman38238@direct.beaumont.edu","N","","","","","","","","","18303 E 10 Mile Rd","","Roseville","MI","US","480664988" -"1689671711","DIRECT","Direct Messaging Address","doppenheim140560@direct.ahn.org","N","","","","","","","","","320 E North Ave","","Pittsburgh","PA","US","152124756" -"1194722108","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1346247350","DIRECT","Direct Messaging Address","seormc@seormc.medicity.net","N","","","","","","","","","1341 Clark St","","Cambridge","OH","US","437259614" -"1437156452","DIRECT","Direct Messaging Address","kpaape97187@direct.owensborohealth.org","Y","","Owensboro Health Medical Group, Inc","","","","","","","1301 Pleasant Valley Rd","Suite 201","Owensboro","KY","US","423039774" -"1073510095","DIRECT","Direct Messaging Address","peter.szymoniak@srmcfl.com","N","AMR direct address","","","","","","","","6007 Berryhill Rd","","Milton","FL","US","325704008" -"1477550556","DIRECT","Direct Messaging Address","djanssen25911@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","2200 Childrens Way","","Nashville","TN","US","372320005" -"1063419166","DIRECT","Direct Messaging Address","daniel.abraha@lutheranhealthnetwork.cernerdirect.com","N","AMR direct address","","","","","","","","7950 W Jefferson Blvd","Suite 210","Fort Wayne","IN","US","468044140" -"1407853518","DIRECT","Direct Messaging Address","howard.monsour.1@1293.direct.athenahealth.com","N","AMR direct address","","","","","","","","1308E Paluxy Rd Ste 300","","Granbury","TX","US","760485655" -"1841297942","DIRECT","Direct Messaging Address","luis.casanova.1@4692.direct.athenahealth.com","N","AMR Direct Address","","","","","","","","3508 Tamiami Trl","suite c","Port Charlotte","FL","US","339528160" -"1447257548","DIRECT","Direct Messaging Address","ena.casanova.1@4692.direct.athenahealth.com","N","AMR Direct address","","","","","","","","3508 Tamiami Trl","suite c","Port Charlotte","FL","US","339528160" -"1013914134","DIRECT","Direct Messaging Address","anthony.ignatovich@henrycountyhospital.medicity.net","N","","","","","","","","","1600 E Riverview Ave","","Napoleon","OH","US","435459805" -"1184621211","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1225035298","DIRECT","Direct Messaging Address","dcasada165513@direct.nortonhealthcare.org","N","","","DIRECT","Direct","","","","","2355 Poplar Level Rd Ste G1-11","","Louisville","KY","US","402171367" -"1225035298","DIRECT","Direct Messaging Address","dcasada165513@direct.nortonhealthcare.org","N","","","","","","","","","2355 Poplar Level Rd Ste G1-11","","Louisville","KY","US","402171367" -"1225035298","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","2355 Poplar Level Rd Ste G1-11","","Louisville","KY","US","402171367" -"1265439251","DIRECT","Direct Messaging Address","glenn.genovese.1@16432.direct.athenahealth.com","N","direct address","","","","","","","","709 Hollybrook Dr Ste 3400","","Longview","TX","US","756052412" -"1174520167","DIRECT","Direct Messaging Address","mleffler108237@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","200 1st St SW","","Rochester","MN","US","559050001" -"1366449449","DIRECT","Direct Messaging Address","jerome.decker.p63@direct.hunterdon.nextgenshare.com","N","NextGen EMR Direct Address","","DIRECT","Direct","","","","","8100 Wescott Drive","","Flemington","NJ","US","088224671" -"1881691947","DIRECT","Direct Messaging Address","leonard.ostrowski.1@2340.direct.athenahealth.com","N","AMR direct address","","","","","","","","3125 Willowcreek Rd","","Portage","IN","US","463684423" -"1184621260","DIRECT","Direct Messaging Address","jburns18347@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","10 Choate Cir","","Montoursville","PA","US","177549791" -"1821095803","DIRECT","Direct Messaging Address","cmadaffari391409@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","4500 San Pablo Rd S","","Jacksonville","FL","US","322241865" -"1164429288","DIRECT","Direct Messaging Address","peter.krone.1@1293.direct.athenahealth.com","N","AMR direct address","","","","","","","","1208 Medical Plaza Ct","","Granbury","TX","US","760485653" -"1366449431","DIRECT","Direct Messaging Address","efrancis10835@direct.ahn.org","N","","","","","","","","","317 1st Ave","","Tarentum","PA","US","150841816" -"1811994999","DIRECT","Direct Messaging Address","mkatin153192@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Garfield Ave","","Parkersburg","WV","US","261015376" -"1811994999","DIRECT","Direct Messaging Address","mkatin153192@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","800 Garfield Ave","","Parkersburg","WV","US","261015376" -"1356348411","DIRECT","Direct Messaging Address","saleh.shahid.1@4694.direct.athenahealth.com","N","AMR direct address","","","","","","","","7009 Kingston Pike","","Knoxville","TN","US","379195706" -"1124025127","DIRECT","Direct Messaging Address","mfallat40019@direct.nortonhealthcare.org","N","","","","","","","","","234 E Gray St","Ste 766","Louisville","KY","US","402021901" -"1124025127","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","234 E Gray St","Ste 766","Louisville","KY","US","402021901" -"1063419059","DIRECT","Direct Messaging Address","fprice6318@direct.ahn.org","N","","","","","","","","","320 E North Ave","","Pittsburgh","PA","US","15212" -"1699772699","DIRECT","Direct Messaging Address","sbond40855@direct.nortonhealthcare.org","N","","","","","","","","","234 E Gray St","Ste 766","Louisville","KY","US","402021901" -"1699772699","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","234 E Gray St","Ste 766","Louisville","KY","US","402021901" -"1134126139","DIRECT","Direct Messaging Address","ryan.may@mmhs.medicity.net","N","","","","","","","","","400 Matthew St Ste 200","","Marietta","OH","US","457501633" -"1699772608","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1629075635","DIRECT","Direct Messaging Address","john.oghalai@direct.usc.edu","Y","","USC CARE MEDICAL GROUP, INC","DIRECT","Direct","","CSV","CSV","","1450 San Pablo St Ste 5100","","Los Angeles","CA","US","900334500" -"1205833225","DIRECT","Direct Messaging Address","Direct@OphthalmologyAssociatesElginIL.CompulinkDirect.com","N","","","DIRECT","Direct","","","","","1670 Capital St Ste 100","","Elgin","IL","US","601247837" -"1205833225","DIRECT","Direct Messaging Address","Direct@OphthalmologyAssociatesElginIL.CompulinkDirect.com","N","","","DIRECT","Direct","","","","","1670 Capital St Ste 100","","Elgin","IL","US","601247837" -"1033116074","DIRECT","Direct Messaging Address","jwelch@inebraska.intellechartdirect.net","N","Retina Center of Nebraska","","DIRECT","Direct","","","","","2115 N Kansas Ave","Ste 104","Hastings","NE","US","689012615" -"1720085772","DIRECT","Direct Messaging Address","sswartz565465@ehrdirect.mayoclinicmsg.org","N","","","","","","","","","1221 Whipple St","","Eau Claire","WI","US","54703" -"1932106960","DIRECT","Direct Messaging Address","abaratz8003@direct.ahn.org","N","","","","","","","","","12311 Perry Hwy","","Wexford","PA","US","150908344" -"1932106960","DIRECT","Direct Messaging Address","abaratz8003@direct.ahn.org","N","","","","","","","","","118 Nature Park Rd","","Greensburg","PA","US","156016960" -"1578560504","DIRECT","Direct Messaging Address","direct@direct.ahn.org","N","","","","","","","","","565 Coal Valley Rd","","Clairton","PA","US","150253703" -"1427055474","DIRECT","Direct Messaging Address","curtis.white@mmhs.mmhs.medicity.net","N","","","","","","","","","807 Farson St","Suite 202","Belpre","OH","US","457141068" -"1205833258","DIRECT","Direct Messaging Address","braybuck44771@direct.wvuhsdirect.com","N","Direct Address","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","1 Medical Center Dr","","Morgantown","WV","US","265061200" -"1215934278","DIRECT","Direct Messaging Address","hsherber26182@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","8081 Innovation Park Dr # 700","","Fairfax","VA","US","220314867" -"1922005883","DIRECT","Direct Messaging Address","cmunger@floridaeye.intellechartdirect.net","N","","","","","","","","","403 Vonderburg Dr","","Brandon","FL","US","335115982" -"1659378511","DIRECT","Direct Messaging Address","mfuller288575@direct.ahn.org","N","","","","","","","","","1307 Federal St Ste 301","","Pittsburgh","PA","US","152124769" -"1629075585","DIRECT","Direct Messaging Address","strufant5376@direct.novanthealth.org","N","","","","","","","","","7752 Gateway Ln","Suite 100","Concord","NC","US","280274414" -"1548267347","DIRECT","Direct Messaging Address","krmcmedicalrecords@krhdirect.org","Y","","Kalispell Regional Medical Center Inc","","","","","","","350 Heritage Way Ste 2100","","Kalispell","MT","US","59901" -"1336146158","DIRECT","Direct Messaging Address","dfoley43406@direct.nortonhealthcare.org","N","","","","","","","","","234 E Gray St","Ste 766","Louisville","KY","US","402021901" -"1336146158","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","234 E Gray St","Ste 766","Louisville","KY","US","402021901" -"1851398598","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1992702799","DIRECT","Direct Messaging Address","lkwdpcpdsm@img.directbygreenway.com","N","","","DIRECT","Direct","","","","","11505 Rangeland Pkwy","","Bradenton","FL","US","342119504" -"1316944127","DIRECT","Direct Messaging Address","Arlet.Kurkchubasche.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","2 Dudley Street","Suite 190","Providence","RI","US","02905" -"1124025937","DIRECT","Direct Messaging Address","Francois.Luks.usasurg@direct-address.net","N","Direct","","DIRECT","Direct","","CSV","CSV","","2 Dudley St","Suite 190","Providence","RI","US","029053236" -"1760489561","DIRECT","Direct Messaging Address","vbyrd2@direct.mhc.net","N","","","DIRECT","Direct","","","","","1100 E Michigan Ave","","Grayling","MI","US","497381312" -"1730186537","DIRECT","Direct Messaging Address","aedwards111421@direct.beaumont.edu","N","","","","","","","","","18100 Oakwood Blvd Ste 213","","Dearborn","MI","US","481244085" -"1306843040","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","","","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1700884418","DIRECT","Direct Messaging Address","heidi.sandersfeld@pciowa.eclinicaldirectplus.com","N","","","DIRECT","Direct","","","","","202 10th Street SE","","Cedar Rapids","IA","US","524032404" -"1437157146","DIRECT","Direct Messaging Address","dkudalkar9324@direct.thechristhospital.com","N","","","DIRECT","Direct","","","","","2355 Norwood Ave","Suite 1","Cincinnati","OH","US","452122750" -"1447257266","DIRECT","Direct Messaging Address","dharrison@river.integrityemrdirect.com","N","","","","","","","","","475 Bradley Blvd.","","Richland","WA","US","993524419" -"1851398549","CONNECT","CONNECT URL","sloporchio@sjloporchio.intellechartdirect.net","N","Secure email address","","OTHER","Other","CMS esMD eMDR","OTHER","Other","Cranston","35 Sockanosset Cross Rd","","Cranston","RI","US","029205535" -"1285631028","DIRECT","Direct Messaging Address","lkwdpcpdsm@img.directbygreenway.com","N","","","DIRECT","Direct","","","","","11505 Rangeland Pkwy","","Bradenton","FL","US","342114041" -"1174520902","DIRECT","Direct Messaging Address","dprins127072@samhealth.direct-ci.com","N","","","","","","","","","825 NW Highway 101 Ste A","","Lincoln City","OR","US","973673241" -"1467459115","DIRECT","Direct Messaging Address","Christine.Eady.1@1570.direct.athenahealth.com","N","direct address added","","","","","","","","500 West Whitestone Blvd","Suite 100","Cedar Park","TX","US","786132271" -"1134126899","DIRECT","Direct Messaging Address","gle17954@direct.watsonclinicad.com","Y","Direct Messaging Address","Watson Clinic LLP","","","","","","","1430 Lakeland Hills Blvd","","Lakeland","FL","US","338053202" -"1417954181","DIRECT","Direct Messaging Address","tgraul@esane.intellechartdirect.net","N","","","","","","","","","1710 S 70th St","","Lincoln","NE","US","685061676" -"1801893573","DIRECT","Direct Messaging Address","jdarrell150230@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","1000 E Mountain Blvd","","Wilkes Barre","PA","US","187110027" -"1538166210","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1225035975","DIRECT","Direct Messaging Address","clasek15657@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","100 N Academy Ave","","Danville","PA","US","178222775" -"1386641074","DIRECT","Direct Messaging Address","lwright8425@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","2040 N Shadeland Ave","Suite 310","Indianapolis","IN","US","462191711" -"1467459172","DIRECT","Direct Messaging Address","ejustus62547@eCommunityDirect.com","Y","","Community Physicians of Indiana Inc","","","","","","","533 E County Line Rd Ste 101","","Greenwood","IN","US","461431074" -"1598763229","DIRECT","Direct Messaging Address","esnell11434@direct.ahn.org","N","","","","","","","","","1307 Federal St Ste 2","","Pittsburgh","PA","US","152124769" -"1356348122","DIRECT","Direct Messaging Address","jscherer@directaddress.net","N","XLM","","HIE","Health Information Exchange (HIE)","","","","","360 Plaza Dr Ste C","","Columbus","IN","US","472012960" -"1861499550","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1710984646","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1770580672","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1033116934","DIRECT","Direct Messaging Address","apatni29472@nghs.gadirect.net","N","","","DIRECT","Direct","","","","","4445 S Lee St","Suite 100","Buford","GA","US","305188804" -"1871590778","DIRECT","Direct Messaging Address","kjackman@esane.intellechartdirect.net","N","","","","","","","","","1710 S 70th St","","Lincoln","NE","US","685061676" -"1134126030","DIRECT","Direct Messaging Address","vsutton@esane.intellechartdirect.net","N","","","","","","","","","1710 S 70th St","","Lincoln","NE","US","685061676" -"1487652186","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1548268287","DIRECT","Direct Messaging Address","shahramsolhpour@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","2141 N Harbor Blvd","Suite 35000","Fullerton","CA","US","928353827" -"1982602629","DIRECT","Direct Messaging Address","mbangayan277082@direct.northshore.org","N","","","","","","","","","5145 N California Ave","","Chicago","IL","US","606253661" -"1558369207","DIRECT","Direct Messaging Address","mwimmer201163@direct.novanthealth.org","N","","","","","","","","","631 Mocksville Ave Ste 1020","","Salisbury","NC","US","281442731" -"1740288430","DIRECT","Direct Messaging Address","jeffrey.sewell@wellnesspointe.org","N","email","","DIRECT","Direct","","CSV","CSV","","2131 S Mobberly Ave","","Longview","TX","US","756023563" -"1427056134","DIRECT","Direct Messaging Address","sgarg@midatlret.intellechartdirect.net","N","Direct Messaging Address","","DIRECT","Direct","","","","","4060 Butler Pike","Suite 200","Plymouth Meeting","PA","US","194621560" -"1053319764","DIRECT","Direct Messaging Address","DDEHART387899@WM.PROVIDENCEDIRECT.ORG","N","","","","","","","","","30 Mt Highway 91 S","","Dillon","MT","US","597253535" -"1043218753","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1427055227","DIRECT","Direct Messaging Address","ghenderson@floridaeye.intellechartdirect.net","N","","","","","","","","","403 Vonderburg Dr","STE 101","Brandon","FL","US","335115982" -"1598762395","DIRECT","Direct Messaging Address","lalonzo@floridaeye.intellechartdirect.net","N","","","","","","","","","403 Vonderburg Dr","STE 101","Brandon","FL","US","335115982" -"1508863499","DIRECT","Direct Messaging Address","edwardjlee@sjhhandhmg.allscriptsdirect.net","N","","","","","","","","","100 E Valencia Mesa Dr","","Fullerton","CA","US","928353813" -"1891792602","DIRECT","Direct Messaging Address","cgarrard23272@direct.vumc.org","N","","","DIRECT","Direct","","OTHER","Other","Health Information Service Provider","3601 Tvc","","Nashville","TN","US","372320001" -"1154328961","DIRECT","Direct Messaging Address","dkann148309@direct.geisinger.edu","N","","","DIRECT","Direct","","","","","1211 Forge Rd","","Carlisle","PA","US","170133183" -"1922005792","DIRECT","Direct Messaging Address","credentialing@nephdocs.com","N","","","DIRECT","Direct","","","","","120 W 22nd St Ste 200","","Oak Brook","IL","US","605231563" -"1376540138","CONNECT","CONNECT URL","https://urldefense.proofpoint.com/v2/url?u=https-3A__cobiusconnect.cobius.com-3A8291_Gateway_Documen","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1922005628","DIRECT","Direct Messaging Address","rcovatto21716@direct.ahn.org","N","","","","","","","","","301 Ohio River Blvd Ste 301","","Sewickley","PA","US","151431300" -"1831196542","DIRECT","Direct Messaging Address","scott.killmer.3@1572.direct.athenahealth.com","N","direct","","DIRECT","Direct","","","","","102 Brookshire Ln","","Beckley","WV","US","258016761" -"1205834942","DIRECT","Direct Messaging Address","jgarrett@brmc.com","N","email","","OTHER","Other","delegated official","OTHER","Other","email","116 Interstate Pkwy Ste 32","","Bradford","PA","US","167011036" -"1750389490","DIRECT","Direct Messaging Address","nkanter277035@direct.northshore.org","N","","","","","","","","","4640 N Marine Dr","","Chicago","IL","US","606405719" -"1750389425","DIRECT","Direct Messaging Address","donald.howser.1@1293.direct.athenahealth.com","N","AMR direct address","","","","","","","","1212 Medical Plaza Ct","","Granbury","TX","US","76048" -"1861499618","DIRECT","Direct Messaging Address","SCENT@allmedsdirectmail.com","N","","","","","","","","","15 Exchange Dr","","Lugoff","SC","US","290789198" -"1043218795","DIRECT","Direct Messaging Address","alee35423@direct.garnethealth.org","Y","","Garnet Health Doctors PC","","","","","","","707 E Main St","","Middletown","NY","US","109402650" -"1285632950","DIRECT","Direct Messaging Address","drthomasylee@direct.practicefusion.com","N","direct messaging address","","DIRECT","Direct","","OTHER","Other","text","4510 Church Rd","","Mount Laurel","NJ","US","080542210" -"1184622854","DIRECT","Direct Messaging Address","dlowry6701@direct.watsonclinicad.com","Y","Direct Messaging Address","Watson Clinic LLP","","","","","","","1430 Lakeland Hills Blvd","","Lakeland","FL","US","338053202" -"1386641207","CONNECT","CONNECT URL","https://cobiusconnect.cobius.com:8291/Gateway/DocumentSubmission/2_0/NhinService/XDRRequest_Service","Y","2.16.840.1.113883.3.1068.1","Cobius Healthcare Solutions","OTHER","Other","CMS esMD eMDR","","","","2720 Dundee Rd # 302","","Northbrook","IL","US","600622609" -"1861490518","DIRECT","Direct Messaging Address","wbrinkley200600@direct.novanthealth.org","N","","","","","","","","","631 Mocksville Ave Ste 1020","","Salisbury","NC","US","281442731" -"1568460210","DIRECT","Direct Messaging Address","wcoppula97184@direct.ahn.org","N","","","","","","","","","9795 Perry Hwy Ste 100","","Wexford","PA","US","150909700" -"1972501625","DIRECT","Direct Messaging Address","lsoloshatz97124@direct.ahn.org","N","","","","","","","","","9795 Perry Hwy","","Wexford","PA","US","150909700" -"1043218704","DIRECT","Direct Messaging Address","pclair97150@direct.ahn.org","N","","","","","","","","","9795 Perry Hwy Ste 100","","Wexford","PA","US","150909700" -"1275531733","DIRECT","Direct Messaging Address","cgraham85951@direct.nortonhealthcare.org","N","","","","","","","","","231 E Chestnut St","","Louisville","KY","US","402021821" -"1013915586","DIRECT","Direct Messaging Address","michael.pickfordmd.p2@direct.gmg.nextgenshare.com","N","Direct Address","","DIRECT","Direct","","OTHER","Other","Direct Edge","3855 Pleasant Hill Rd","Suite 280","Duluth","GA","US","300961407" -"1346248036","DIRECT","Direct Messaging Address","jclan45626@direct.nortonhealthcare.org","N","","","","","","","","","5211 Commerce Crossings Dr","","Louisville","KY","US","402292183" -"1346248036","FHIR","FHIR URL","https://epicsoap.nortonhealthcare.org/FHIRPRD/api/FHIR/DSTU2/","N","","","","","","","","","5211 Commerce Crossings Dr","","Louisville","KY","US","402292183" -"1003814641","CONNECT","CONNECT URL","https://hie.healtheconnections.org/#/healthe-login","N","Health Information Exchange","","HIE","Health Information Exchange (HIE)","","CSV","CSV","","4 Fuller St","","Alexandria Bay","NY","US","136071316" -"1659378412","DIRECT","Direct Messaging Address","dderrer98115@directwellstar.org","N","","","","","","","","","4550 Cobb Parkway North NW Ste 101","","Acworth","GA","US","301014181" -"1477550234","DIRECT","Direct Messaging Address","crooney6312@direct.southcoast.org","N","Southcoast Health Epic Direct Address","","","","","","","","101 Page St","","New Bedford","MA","US","027403464" -"1447257209","DIRECT","Direct Messaging Address","jdort28136@soc.inova.org","Y","Health Information Exchange","Inova Health Care Services","HIE","Health Information Exchange (HIE)","","OTHER","Other","CCDA","3300 Gallows Rd","","Falls Church","VA","US","220423300" -"1144227935","DIRECT","Direct Messaging Address","cvigil@riverlandmedical.com","N","","","","","","","","","1700 N E E Wallace Blvd","","Ferriday","LA","US","713342820" diff --git a/resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json b/resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json new file mode 100644 index 000000000..d33980300 --- /dev/null +++ b/resources/dev_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json @@ -0,0 +1,58 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.healthtogo.me/oauth/imed.assa", + "OrganizationName": "Advanced Southern Surgical ASSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.bourque", + "OrganizationName": "Daniel R. Bourque, M.D., APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.efm", + "OrganizationName": "Edwards Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.fammedpc", + "OrganizationName": "Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.lhc", + "OrganizationName": "Louisiana Heart Center ** LHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.noim", + "OrganizationName": "North Oaks Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.degeyter", + "OrganizationName": "Roland J. Degeyter, M.D., APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.welshfamily", + "OrganizationName": "The Clinic of Welsh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.vsc", + "OrganizationName": "Vascular Specialty C VSC", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/npidata_pfile.csv b/resources/dev_resources/npidata_pfile.csv index 532359b4b..e69de29bb 100644 --- a/resources/dev_resources/npidata_pfile.csv +++ b/resources/dev_resources/npidata_pfile.csv @@ -1,999 +0,0 @@ -"NPI","Entity Type Code","Replacement NPI","Employer Identification Number (EIN)","Provider Organization Name (Legal Business Name)","Provider Last Name (Legal Name)","Provider First Name","Provider Middle Name","Provider Name Prefix Text","Provider Name Suffix Text","Provider Credential Text","Provider Other Organization Name","Provider Other Organization Name Type Code","Provider Other Last Name","Provider Other First Name","Provider Other Middle Name","Provider Other Name Prefix Text","Provider Other Name Suffix Text","Provider Other Credential Text","Provider Other Last Name Type Code","Provider First Line Business Mailing Address","Provider Second Line Business Mailing Address","Provider Business Mailing Address City Name","Provider Business Mailing Address State Name","Provider Business Mailing Address Postal Code","Provider Business Mailing Address Country Code (If outside U.S.)","Provider Business Mailing Address Telephone Number","Provider Business Mailing Address Fax Number","Provider First Line Business Practice Location Address","Provider Second Line Business Practice Location Address","Provider Business Practice Location Address City Name","Provider Business Practice Location Address State Name","Provider Business Practice Location Address Postal Code","Provider Business Practice Location Address Country Code (If outside U.S.)","Provider Business Practice Location Address Telephone Number","Provider Business Practice Location Address Fax Number","Provider Enumeration Date","Last Update Date","NPI Deactivation Reason Code","NPI Deactivation Date","NPI Reactivation Date","Provider Gender Code","Authorized Official Last Name","Authorized Official First Name","Authorized Official Middle Name","Authorized Official Title or Position","Authorized Official Telephone Number","Healthcare Provider Taxonomy Code_1","Provider License Number_1","Provider License Number State Code_1","Healthcare Provider Primary Taxonomy Switch_1","Healthcare Provider Taxonomy Code_2","Provider License Number_2","Provider License Number State Code_2","Healthcare Provider Primary Taxonomy Switch_2","Healthcare Provider Taxonomy Code_3","Provider License Number_3","Provider License Number State Code_3","Healthcare Provider Primary Taxonomy Switch_3","Healthcare Provider Taxonomy Code_4","Provider License Number_4","Provider License Number State Code_4","Healthcare Provider Primary Taxonomy Switch_4","Healthcare Provider Taxonomy Code_5","Provider License Number_5","Provider License Number State Code_5","Healthcare Provider Primary Taxonomy Switch_5","Healthcare Provider Taxonomy Code_6","Provider License Number_6","Provider License Number State Code_6","Healthcare Provider Primary Taxonomy Switch_6","Healthcare Provider Taxonomy Code_7","Provider License Number_7","Provider License Number State Code_7","Healthcare Provider Primary Taxonomy Switch_7","Healthcare Provider Taxonomy Code_8","Provider License Number_8","Provider License Number State Code_8","Healthcare Provider Primary Taxonomy Switch_8","Healthcare Provider Taxonomy Code_9","Provider License Number_9","Provider License Number State Code_9","Healthcare Provider Primary Taxonomy Switch_9","Healthcare Provider Taxonomy Code_10","Provider License Number_10","Provider License Number State Code_10","Healthcare Provider Primary Taxonomy Switch_10","Healthcare Provider Taxonomy Code_11","Provider License Number_11","Provider License Number State Code_11","Healthcare Provider Primary Taxonomy Switch_11","Healthcare Provider Taxonomy Code_12","Provider License Number_12","Provider License Number State Code_12","Healthcare Provider Primary Taxonomy Switch_12","Healthcare Provider Taxonomy Code_13","Provider License Number_13","Provider License Number State Code_13","Healthcare Provider Primary Taxonomy Switch_13","Healthcare Provider Taxonomy Code_14","Provider License Number_14","Provider License Number State Code_14","Healthcare Provider Primary Taxonomy Switch_14","Healthcare Provider Taxonomy Code_15","Provider License Number_15","Provider License Number State Code_15","Healthcare Provider Primary Taxonomy Switch_15","Other Provider Identifier_1","Other Provider Identifier Type Code_1","Other Provider Identifier State_1","Other Provider Identifier Issuer_1","Other Provider Identifier_2","Other Provider Identifier Type Code_2","Other Provider Identifier State_2","Other Provider Identifier Issuer_2","Other Provider Identifier_3","Other Provider Identifier Type Code_3","Other Provider Identifier State_3","Other Provider Identifier Issuer_3","Other Provider Identifier_4","Other Provider Identifier Type Code_4","Other Provider Identifier State_4","Other Provider Identifier Issuer_4","Other Provider Identifier_5","Other Provider Identifier Type Code_5","Other Provider Identifier State_5","Other Provider Identifier Issuer_5","Other Provider Identifier_6","Other Provider Identifier Type Code_6","Other Provider Identifier State_6","Other Provider Identifier Issuer_6","Other Provider Identifier_7","Other Provider Identifier Type Code_7","Other Provider Identifier State_7","Other Provider Identifier Issuer_7","Other Provider Identifier_8","Other Provider Identifier Type Code_8","Other Provider Identifier State_8","Other Provider Identifier Issuer_8","Other Provider Identifier_9","Other Provider Identifier Type Code_9","Other Provider Identifier State_9","Other Provider Identifier Issuer_9","Other Provider Identifier_10","Other Provider Identifier Type Code_10","Other Provider Identifier State_10","Other Provider Identifier Issuer_10","Other Provider Identifier_11","Other Provider Identifier Type Code_11","Other Provider Identifier State_11","Other Provider Identifier Issuer_11","Other Provider Identifier_12","Other Provider Identifier Type Code_12","Other Provider Identifier State_12","Other Provider Identifier Issuer_12","Other Provider Identifier_13","Other Provider Identifier Type Code_13","Other Provider Identifier State_13","Other Provider Identifier Issuer_13","Other Provider Identifier_14","Other Provider Identifier Type Code_14","Other Provider Identifier State_14","Other Provider Identifier Issuer_14","Other Provider Identifier_15","Other Provider Identifier Type Code_15","Other Provider Identifier State_15","Other Provider Identifier Issuer_15","Other Provider Identifier_16","Other Provider Identifier Type Code_16","Other Provider Identifier State_16","Other Provider Identifier Issuer_16","Other Provider Identifier_17","Other Provider Identifier Type Code_17","Other Provider Identifier State_17","Other Provider Identifier Issuer_17","Other Provider Identifier_18","Other Provider Identifier Type Code_18","Other Provider Identifier State_18","Other Provider Identifier Issuer_18","Other Provider Identifier_19","Other Provider Identifier Type Code_19","Other Provider Identifier State_19","Other Provider Identifier Issuer_19","Other Provider Identifier_20","Other Provider Identifier Type Code_20","Other Provider Identifier State_20","Other Provider Identifier Issuer_20","Other Provider Identifier_21","Other Provider Identifier Type Code_21","Other Provider Identifier State_21","Other Provider Identifier Issuer_21","Other Provider Identifier_22","Other Provider Identifier Type Code_22","Other Provider Identifier State_22","Other Provider Identifier Issuer_22","Other Provider Identifier_23","Other Provider Identifier Type Code_23","Other Provider Identifier State_23","Other Provider Identifier Issuer_23","Other Provider Identifier_24","Other Provider Identifier Type Code_24","Other Provider Identifier State_24","Other Provider Identifier Issuer_24","Other Provider Identifier_25","Other Provider Identifier Type Code_25","Other Provider Identifier State_25","Other Provider Identifier Issuer_25","Other Provider Identifier_26","Other Provider Identifier Type Code_26","Other Provider Identifier State_26","Other Provider Identifier Issuer_26","Other Provider Identifier_27","Other Provider Identifier Type Code_27","Other Provider Identifier State_27","Other Provider Identifier Issuer_27","Other Provider Identifier_28","Other Provider Identifier Type Code_28","Other Provider Identifier State_28","Other Provider Identifier Issuer_28","Other Provider Identifier_29","Other Provider Identifier Type Code_29","Other Provider Identifier State_29","Other Provider Identifier Issuer_29","Other Provider Identifier_30","Other Provider Identifier Type Code_30","Other Provider Identifier State_30","Other Provider Identifier Issuer_30","Other Provider Identifier_31","Other Provider Identifier Type Code_31","Other Provider Identifier State_31","Other Provider Identifier Issuer_31","Other Provider Identifier_32","Other Provider Identifier Type Code_32","Other Provider Identifier State_32","Other Provider Identifier Issuer_32","Other Provider Identifier_33","Other Provider Identifier Type Code_33","Other Provider Identifier State_33","Other Provider Identifier Issuer_33","Other Provider Identifier_34","Other Provider Identifier Type Code_34","Other Provider Identifier State_34","Other Provider Identifier Issuer_34","Other Provider Identifier_35","Other Provider Identifier Type Code_35","Other Provider Identifier State_35","Other Provider Identifier Issuer_35","Other Provider Identifier_36","Other Provider Identifier Type Code_36","Other Provider Identifier State_36","Other Provider Identifier Issuer_36","Other Provider Identifier_37","Other Provider Identifier Type Code_37","Other Provider Identifier State_37","Other Provider Identifier Issuer_37","Other Provider Identifier_38","Other Provider Identifier Type Code_38","Other Provider Identifier State_38","Other Provider Identifier Issuer_38","Other Provider Identifier_39","Other Provider Identifier Type Code_39","Other Provider Identifier State_39","Other Provider Identifier Issuer_39","Other Provider Identifier_40","Other Provider Identifier Type Code_40","Other Provider Identifier State_40","Other Provider Identifier Issuer_40","Other Provider Identifier_41","Other Provider Identifier Type Code_41","Other Provider Identifier State_41","Other Provider Identifier Issuer_41","Other Provider Identifier_42","Other Provider Identifier Type Code_42","Other Provider Identifier State_42","Other Provider Identifier Issuer_42","Other Provider Identifier_43","Other Provider Identifier Type Code_43","Other Provider Identifier State_43","Other Provider Identifier Issuer_43","Other Provider Identifier_44","Other Provider Identifier Type Code_44","Other Provider Identifier State_44","Other Provider Identifier Issuer_44","Other Provider Identifier_45","Other Provider Identifier Type Code_45","Other Provider Identifier State_45","Other Provider Identifier Issuer_45","Other Provider Identifier_46","Other Provider Identifier Type Code_46","Other Provider Identifier State_46","Other Provider Identifier Issuer_46","Other Provider Identifier_47","Other Provider Identifier Type Code_47","Other Provider Identifier State_47","Other Provider Identifier Issuer_47","Other Provider Identifier_48","Other Provider Identifier Type Code_48","Other Provider Identifier State_48","Other Provider Identifier Issuer_48","Other Provider Identifier_49","Other Provider Identifier Type Code_49","Other Provider Identifier State_49","Other Provider Identifier Issuer_49","Other Provider Identifier_50","Other Provider Identifier Type Code_50","Other Provider Identifier State_50","Other Provider Identifier Issuer_50","Is Sole Proprietor","Is Organization Subpart","Parent Organization LBN","Parent Organization TIN","Authorized Official Name Prefix Text","Authorized Official Name Suffix Text","Authorized Official Credential Text","Healthcare Provider Taxonomy Group_1","Healthcare Provider Taxonomy Group_2","Healthcare Provider Taxonomy Group_3","Healthcare Provider Taxonomy Group_4","Healthcare Provider Taxonomy Group_5","Healthcare Provider Taxonomy Group_6","Healthcare Provider Taxonomy Group_7","Healthcare Provider Taxonomy Group_8","Healthcare Provider Taxonomy Group_9","Healthcare Provider Taxonomy Group_10","Healthcare Provider Taxonomy Group_11","Healthcare Provider Taxonomy Group_12","Healthcare Provider Taxonomy Group_13","Healthcare Provider Taxonomy Group_14","Healthcare Provider Taxonomy Group_15","Certification Date" -"1497758544","2","","","CUMBERLAND COUNTY HOSPITAL SYSTEM, INC","","","","","","","CAPE FEAR VALLEY HOME HEALTH AND HOSPICE","3","","","","","","","","3418 VILLAGE DR","","FAYETTEVILLE","NC","283044552","US","9106096740","","3418 VILLAGE DR","","FAYETTEVILLE","NC","283044552","US","9106096740","","05/23/2005","09/26/2011","","","","","NAGOWSKI","MICHAEL","","CEO","9106096700","251G00000X","HC0283","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3401562","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1023011178","2","","","COLLABRIA CARE","","","","","","","NAPA VALLEY HOSPICE & ADULT DAY SERVICES","4","","","","","","","","414 S JEFFERSON ST","","NAPA","CA","945594515","US","7072589080","7072582476","414 S JEFFERSON ST","","NAPA","CA","945594515","US","7072589080","7072582476","05/23/2005","06/09/2020","","","","","ANDERSON","DONALD","WAYNE","ASSISTANT SECRETARY OF ENROLLMENT","4255255392","251G00000X","100000741","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HPC01537G","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","JR.","","","","","","","","","","","","","","","","","06/09/2020" -"1023011079","2","","","ADVANTAGE HOME HEALTH CARE, INC.","","","","","","","","","","","","","","","","425 E. US RT. 6","SUITE F","MORRIS","IL","604508812","US","8154671905","8154676392","425 E. US RT. 6","SUITE F","MORRIS","IL","604508812","US","8154671905","8154676392","05/23/2005","12/12/2014","","","","","SLEETER","KELLY","JOHN","ADMINISTRATOR","8154671905","251E00000X","1008614","IL","N","251E00000X","1011673","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1487657433","2","","","PEKIN MRI, LLC","","","","","","","","","","","","","","","","1894 GEORGETOWN RD","","HUDSON","OH","442364058","US","3306533968","3306561660","1300 PARK AVE","","PEKIN","IL","615545038","US","3093472143","3093472416","05/23/2005","08/22/2020","","","","","COYNE","V.","RENAE","DIRECTOR OF BILLING","3306533968","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1740283795","2","","","EASTERN STAR MASONIC HOME","","","","","","","","","","","","","","","","715 W 3RD ST","","BOONE","IA","500363930","US","5154325274","5154325276","715 W 3RD ST","","BOONE","IA","500363930","US","5154325274","5154325276","05/23/2005","03/04/2008","","","","","BOCK","DENNIS","A.","ADMINISTRATOR","5154325274","314000000X","N-0268","IA","N","311Z00000X","R-268","IA","N","313M00000X","N-0268","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0890210","05","IA","","0801076","05","IA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1982607933","2","","","ADR LLC","","","","","","","","","","","","","","","","PO BOX 808","","CUMBERLAND","MD","215010808","US","3017241646","3017247429","952 SETON DR","","CUMBERLAND","MD","215021950","US","3017773522","3017771902","05/23/2005","08/16/2010","","","","","KIM","JONG","K","PRESIDENT","3017241646","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0201927000","05","WV","","DA5555","01","","RAILROAD MEDICARE","001586989","01","WV","MT ST BS","403741300","05","MD","","J249","01","MD","MD BLUE SHIELD","216A","01","MD","MD BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1700889755","2","","","AZAR/FILIPOV MD PA","","","","","","","","","","","","","","","","31519 WINTERPLACE PKWY","STE 1","SALISBURY","MD","218041884","US","4105462500","4105465005","31519 WINTERPLACE PKWY","STE 1","SALISBURY","MD","218041884","US","4105462500","4105465005","05/23/2005","03/30/2011","","","","","AZAR","ALEX","","PRESIDENT","4105462500","152W00000X","","","N","207W00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","063341100","05","MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1427051473","2","","","OAKVIEW MEDICAL CARE FACILITY","","","","","","","","","","","","","","","","1001 DIANA ST","","LUDINGTON","MI","494311908","US","2318455185","2318457957","1001 DIANA ST","","LUDINGTON","MI","494311908","US","2318455185","2318457957","05/23/2005","10/26/2011","","","","","WHITE","NORMAN","J","DIRECTOR OF FINANCIAL SERVICES","2318455185","314000000X","2033624","MI","N","314000000X","538510","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2085286","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","","","","","","","","","","","","","","","","","" -"1336142389","2","","","ADIRONDACK MEDICAL HEALTH CARE ASSOCIATES PLLC","","","","","","","","","","","","","","","","PO BOX 2004","","EAST SYRACUSE","NY","130574504","US","3153625285","3154452936","1656 CHAMPLIN AVE","","NEW HARTFORD","NY","134131068","US","3156246222","3156246308","05/23/2005","08/22/2020","","","","","FINLEY","ANDREW","L","PRESIDENT","3156246222","207P00000X","NA","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1962405910","2","","","ALABAMA CARDIOVASCULAR GROUP, P.C.","","","","","","","","","","","","","","","","2700 10TH AVE S","STE 305","BIRMINGHAM","AL","352051248","US","2059390139","2059394997","2700 10TH AVE S","STE 305","BIRMINGHAM","AL","352051248","US","2059390139","2059394997","05/23/2005","09/14/2015","","","","","ARCINIEGAS","JOAQUIN","G.","PRESIDENT","2059390139","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1699778647","2","","","VISITING HOME HEALTH SERVICES, INC","","","","","","","LIFE CARE AT HOME","5","","","","","","","","3001 KEITH ST NW","","CLEVELAND","TN","373123713","US","4234735256","4235598356","4291 ROCK ISLAND RD","","LAUDERHILL","FL","333194509","US","9544625582","9543824316","05/23/2005","04/04/2011","","","","","RAU","PAM","","VP OF FINANCE","4234735268","251E00000X","HHA21236096","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1043213093","2","","","HOME I V SPECIALISTS INC","","","","","","","HOME IV SPECIALISTS INC","3","","","","","","","","4222 PAYSPHERE CIR","","CHICAGO","IL","606740042","US","8709721677","8709721911","200 S MAIN ST","","JONESBORO","AR","72401","US","8709721677","8709721911","05/23/2005","04/25/2019","","","","","BERMAN","CLIFFORD","","SECRETARY","8008796137","333600000X","","","N","3336C0004X","","","N","3336S0011X","","","N","3336H0001X","AR19641","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1989453","01","","PK","608170106","05","MO","","130711047","05","AR","","145490407","05","AR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1720081763","2","","","TOWNE & COUNTRY PHARMACY FLORIST & GIFTS INC","","","","","","","","","","","","","","","","PO BOX 364","675 EAST HWY 60","HARDINSBURG","KY","401430364","US","2707562151","2707565199","675 EAST HWY 60","","HARDINSBURG","KY","401430675","US","2707562151","2707565199","05/23/2005","05/03/2017","","","","","WILLOUGHBY","LAURA","GAYLE","PHARMACIST","2707562151","183500000X","P06296","KY","N","333600000X","P06296","KY","N","332BX2000X","MG0340","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","54032560","05","KY","","90050147","05","KY","","000000189330","01","KY","ANTHEM","1071411","01","KY","PASSPORT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RPH","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1497758429","2","","","FORT WAYNE ORTHOPAEDICS LLC","","","","","","","","","","","","","","","","PO BOX 2526","","FORT WAYNE","IN","468012526","US","2604368686","2604368585","7601 W JEFFERSON BLVD","","FORT WAYNE","IN","468044133","US","2604368686","2604368585","05/23/2005","11/19/2015","","","","","COOPER","JERALD","L","PRESIDENT","2604368686","207XS0106X","50002482","IN","N","207XS0117X","50002482","IN","N","207XX0005X","50002482","IN","N","207XX0801X","50002482","IN","N","213E00000X","50002482","IN","N","213ES0103X","","","N","207X00000X","50002482A","IN","Y","363LF0000X","","","N","363A00000X","50002482A","IN","N","363L00000X","50002482A","IN","N","","","","","","","","","","","","","","","","","","","","","201255250","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","" -"1023011053","2","","","VINE DISCOUNT PHARMACY & MEDICAL SUPPLY","","","","","","","VINE DISCOUNT PHARMACY & MEDICAL SUPPLY","3","","","","","","","","1253 N VINE ST","SUITE #11","LOS ANGELES","CA","900381662","US","3239579446","3239579846","1253 N VINE ST","STE 11","LOS ANGELES","CA","900381662","US","3239579446","3239579846","05/23/2005","06/16/2014","","","","","PAPOYAN","ROSEANNE","","PHARMACIST-IN-CHARGE","3239579446","3336S0011X","46506","CA","N","3336C0003X","PHY46506","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5607489","01","CA","NCPDP","54097","01","CA","PHARMACIST-IN-CHARGE LIC#","PHY46506","01","CA","SITE PERMIT","BV8588747","01","CA","DEA","PHA465060","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHARM.D.","","","","","","","","","","","","","","","","" -"1205839230","2","","","MERCY EMS, LLC","","","","","","","MERCY EMS","5","","","","","","","","15401 ADDISON RD","","ADDISON","TX","750013282","US","9727889401","","15401 ADDISON RD","","ADDISON","TX","750013282","US","9727889401","","05/23/2005","08/22/2020","","","","","WOOD","ROBERT","","DIRECTOR","9727889401","3416L0300X","800009","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1114920147","2","","","RIVER OAKS HOME HEALTH CARE LLC","","","","","","","","","","","","","","","","900 3RD ST","","INTERNATIONAL FALLS","MN","566492208","US","2182833031","2182834047","900 3RD ST","","INTERNATIONAL FALLS","MN","566492208","US","2182833031","2182834047","05/23/2005","08/22/2020","","","","","LARSEN-GRIFFIN","REBECCA","LEE","ADMINISTRATOR","2182833031","251E00000X","4579567","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5900088","01","MN","MEDICA INSURANCE","2D75RI","01","MN","BC/BS","130913","01","MN","U-CARE INSURANCE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1831192863","2","","","MONCRIEF CANCER CENTER","","","","","","","UT SOUTHWESTERN MONCRIEF CANCER CENTER","5","","","","","","","","1450 8TH AVE","","FORT WORTH","TX","761044110","US","8179237393","8179274532","1450 8TH AVE","","FORT WORTH","TX","761044110","US","8179237393","8179274532","05/23/2005","08/22/2020","","","","","CRAIG","WILLIAM","","EXECUTIVE DIRECTOR","8179276323","261QX0203X","L00384","TX","N","261QX0203X","R01948","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1659374684","2","","","NYDIC OPEN MRI OF AMERICA-BOARDMAN","","","","","","","","","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2015058905","1449 BOARDMAN CANFIELD RD","STE 140","BOARDMAN","OH","445128070","US","3309657370","3309657377","05/23/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","0838-IC","OH","X","261QR0200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1206654","01","OH","FIRST HEALTH NETWORK","16-01304","01","OH","UNITED HC OF OHIO","37524","01","OH","NATIONWIDE HEALTH PLANS","5739664","01","OH","AETNA USHC ALL PLANS","175279","01","OH","UNISON","34187720100","01","OH","BWC","21503","01","OH","MEDFOCUS","2433601","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1821091851","2","","","CUMBERLAND COUNTY HOSPITAL SYSTEM, INC","","","","","","","SOUTHEASTERN REGIONAL REHABILITATION CENTER","3","","","","","","","","1638 OWEN DR","","FAYETTEVILLE","NC","283043424","US","9106096440","9106095365","1638 OWEN DR","","FAYETTEVILLE","NC","283043424","US","9106096440","9106095365","05/23/2005","07/30/2019","","","","","FISER","JOSEPH","BART","VP","9106155572","282N00000X","","","N","273Y00000X","H0213","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3400028T","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1083617013","2","","","AMOSKEAG HEALTH","","","","","","","","","","","","","","","","145 HOLLIS ST","","MANCHESTER","NH","031011325","US","6036269500","6036260899","145 HOLLIS ST","","MANCHESTER","NH","031011325","US","6036269500","6036260899","05/23/2005","01/31/2020","","","","","MCCRACKEN","KRISTEN","","PRESIDENT CEO","6036269500","261QF0400X","","NH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3080891","05","NH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","01/31/2020" -"1992708929","2","","","NOVAMED MANAGEMENT SERVICES LLC","","","","","","","ATLANTA EYE SURGERY CENTER","3","","","","","","","","3200 DOWNWOOD CIR NW","SUITE 200","ATLANTA","GA","303271610","US","4043511990","","3200 DOWNWOOD CIR NW","STE 200","ATLANTA","GA","303271610","US","4043511990","4043558797","05/23/2005","08/02/2011","","","","","MACOMBER","SCOTT","","CFO","3126644100","261QA1903X","060-209","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","490004881","01","","RR MEDICARE","000890667A","05","GA","","P00164715","01","GA","RR MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","NOVAMED, INC.","","MR.","","","","","","","","","","","","","","","","","","" -"1528061553","2","","","DAYWEST HEALTHCARE SERVICES","","","","","","","HIGHLAND CARE CENTER","3","","","","","","","","4285 HIGHLAND DR","","SALT LAKE CITY","UT","841242603","US","8012782839","8012726109","4285 HIGHLAND DR","","SALT LAKE CITY","UT","841242603","US","8012782839","8012726109","05/23/2005","06/17/2008","","","","","MURRAY","JASON","","ADMINISTRATOR","8012782839","314000000X","2004-NCF-49","UT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","870304091006","05","UT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1346243375","2","","","ROBERT WOOD JOHNSON UNIVERSITY HOSPITAL, INC","","","","","","","","","","","","","","","","1 ROBERT WOOD JOHNSON PL","","NEW BRUNSWICK","NJ","089011928","US","7328283000","","1 ROBERT WOOD JOHNSON PL","","NEW BRUNSWICK","NJ","089011928","US","7328283000","","05/23/2005","05/27/2008","","","","","LACY","CLIFTON","","PRESIDENT","7328283000","282N00000X","11202","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4137701","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","","","","","","","","","","","","","","","","","" -"1891798823","2","","","MONTICELLO BIG LAKE HOSPITAL NURSING HOME","","","","","","","","","","","","","","","","1013 HART BLVD","","MONTICELLO","MN","553628575","US","7632952945","7632712421","1013 HART BLVD","","MONTICELLO","MN","553628575","US","7632952945","7632712421","05/23/2005","08/22/2020","","","","","PAWELK","SANDRA","R","BUSINESS OFFICE SUPERVISOR","7632712306","282NC0060X","328129","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1508869652","2","","","LAFAYETTE MANOR, INC.","","","","","","","","","","","","","","","","147 LAFAYETTE MANOR RD","","UNIONTOWN","PA","154018900","US","7244304848","7244304890","147 LAFAYETTE MANOR RD","","UNIONTOWN","PA","154018900","US","7244304848","7244304890","05/23/2005","08/22/2020","","","","","GERAMITA","FRANK","P.","ADMINISTRATOR","7244304848","314000000X","120202","PA","X","310400000X","409610","PA","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0544","01","PA","BLUECROSS PROVIDER NUMBER","0007479900003","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","N.H.A.","","","","","","","","","","","","","","","","" -"1952304008","2","","","WILPAGE INC.","","","","","","","WILPAGE MEDICAL","3","","","","","","","","PO BOX 37","","HAWTHORNE","NJ","075070037","US","9734234100","9734230715","146 GENEVIEVE AVE","","HAWTHORNE","NJ","075062332","US","9734234100","9734230715","05/23/2005","11/19/2013","","","","","ABRUZZO","SYLVESTER","","TREASURER","9738354716","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0093831","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","","","","","","","","","","","","","","","","","" -"1942203096","2","","","CN ENTERPRISES, INC.","","","","","","","METRO MEDICAL HOMECARE","3","","","","","","","","12255 NICOLLET AVE","","BURNSVILLE","MN","553371650","US","(952) 854-3603","9528544436","12255 NICOLLET AVE","","BURNSVILLE","MN","553371650","US","9528543603","9528544436","05/23/2005","06/20/2017","","","","","LIMBECK","CHRISTINA","MARIE","CEO","9528543603","332B00000X","","","N","332BC3200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","120336","01","MN","CHOICE PLUS","124638","01","MN","U CARE","46991","01","MN","HEALTHPARTNERS","7G606ME","01","MN","BCBS OF MN","477615100","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1295738243","2","","","MEDFUND LLC","","","","","","","HORIZON COLUMBUS LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","1975 VETERANS PKWY","","COLUMBUS","GA","319048902","US","7066538303","7066538584","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","47BBBKB","01","","RAILROAD MCARE #","2241627","01","","FIRST HEALTH PROV #","52853273-001","01","GA","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1104829159","2","","","LABORATORY CORPORATION OF AMERICA","","","","","","","","","","","","","","","","PO BOX 2240","","BURLINGTON","NC","272162240","US","8002227566","3364361048","531 S SPRING ST","","BURLINGTON","NC","272155866","US","8002227566","","05/23/2005","11/07/2017","","","","","WILLIAMS","KIMBERLY","T","VICE PRESIDENT","3364365402","291U00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1194728147","2","","","BADER PROSTHETICS & ORTHOTICS, INC","","","","","","","","","","","","","","","","125 CHAPMAN RD E","","LUTZ","FL","335498106","US","8139626100","","125 CHAPMAN RD E","","LUTZ","FL","335498106","US","8139626100","","05/23/2005","04/01/2008","","","","","BADER","WADE","","PRESIDENT","8139626100","335E00000X","POR53","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","218107","01","FL","AMERIGROUP","M2130","01","FL","BLUE CROSS BLUE SHIELD #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CPO","","","","","","","","","","","","","","","","" -"1275536229","2","","","MEDFUND LLC","","","","","","","HORIZONS JANE BRANCH MEMORIAL MRI CENTER OF GARLAND LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","325 N SHILOH RD","","GARLAND","TX","750426610","US","9724946745","9724946788","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7169328","01","","AETNA/MEDSOLUTIONS","0265DC","01","TX","BCBS PROVIDER #","242896","01","","AMERIGROUP PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1184627135","2","","","ALLEGAN COUNTY HEALTH DEPARTMENT","","","","","","","","","","","","","","","","3255 122ND AVE","STE 200","ALLEGAN","MI","490109511","US","2692675411","2696734172","3255 122ND AVE","STE 200","ALLEGAN","MI","490109511","US","2692675411","2696734172","05/23/2005","05/13/2008","","","","","TOOKER","RICHARD","M","MEDICAL DIRECTOR","2696735411","251K00000X","=========","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4301044487","01","MI","PRIORITY HEALTH","774208868","05","MI","","13556","01","MI","HEALTH PLAN OF MI","771849707","05","MI","","3900300102","01","MI","BCBS OF MI","1849707","01","MI","MOLINA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF ALLEGAN","","","","M.D.","","","","","","","","","","","","","","","","" -"1538162581","2","","","COLORADO OPEN IMAGING, LLC","","","","","","","","","","","","","","","","1120 W SOUTH BOULDER RD","STE 101","LAFAYETTE","CO","800268952","US","3039265466","3039265461","1120 W SOUTH BOULDER RD","STE 101","LAFAYETTE","CO","800268952","US","3039265466","3039265461","05/23/2005","08/22/2020","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024771815","2471M1202X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","89032047","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1356344303","2","","","BCS PHYSICAL THERAPY SERVICES P.A.","","","","","","","","","","","","","","","","1001 W MAIN ST","STE A","FREEHOLD","NJ","077282579","US","7327804300","7327807930","1001 W MAIN ST","STE A","FREEHOLD","NJ","077282579","US","7327804300","7327807930","05/23/2005","08/22/2020","","","","","SMALL","BERNICE","","DIRECTOR","7327804300","261QR0400X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","P.T.","","","","","","","","","","","","","","","","" -"1992708945","2","","","LIFE CARE AT HOME OF UTAH, INC.","","","","","","","","","","","","","","","","3001 KEITH ST NW","","CLEVELAND","TN","373123713","US","4234735256","4235598356","2200 W PARKWAY BLVD","SUITE 200","SALT LAKE CITY","UT","841192099","US","8019725802","8019730246","05/23/2005","04/17/2014","","","","","JOHNSON","STEPHANIE","","SENIOR DIRECTOR OF FINANCE","4234735257","251E00000X","2004-HHA-231","UT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1154324101","2","","","GATEWAY HEALTHCARE, INC","","","","","","","","","","","","","","","","249 ROOSEVELT AVE","UNIT 205","PAWTUCKET","RI","028602134","US","4017248400","4013651100","249 ROOSEVELT AVE","UNIT 205","PAWTUCKET","RI","028602134","US","4017248400","4013651100","05/23/2005","08/22/2020","","","","","FACTEAU","JOYCE","","CREDENTIALING COORDINATOR","4017248400","251B00000X","PENDING","RI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1881697837","2","","","FOX VALLEY OPEN MRI, LLC","","","","","","","","","","","","","","","","201 W NORTHLAND AVE","","APPLETON","WI","549112039","US","9209960724","9209960728","201 W NORTHLAND AVE","","APPLETON","WI","549112039","US","9209960724","9209960728","05/23/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","32874400","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1790788743","2","","","CHICOPEE VISITING NURSE ASSOCIATION","","","","","","","","","","","","","","","","2024 WESTOVER RD","","CHICOPEE","MA","010221079","US","4134379862","4134379999","2024 WESTOVER RD","","CHICOPEE","MA","010221079","US","4134379862","4134379999","05/23/2005","01/02/2013","","","","","COTE","JUDITH","A","CEO","4134379862","251E00000X","251E00000X","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","120028","01","MA","BLUE CROSS BLUE SHIELD","11250","01","MA","HEALTH NEW ENGLAND","801107","01","MA","TUFTS/SEC HORIZONS","110024183A","05","MA","","602130","01","MA","AETNA PROV. NUMBER","701028","01","MA","HARVARD PILGRIM PROV#","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1144223199","2","","","MAJOR COUNTY EMERGENCY MEDICAL SERVICE","","","","","","","MAJOR COUNTY EMS","5","","","","","","","","PO BOX 511","","FAIRVIEW","OK","737370511","US","5802272322","5802272322","224 N MAIN ST","","FAIRVIEW","OK","737371623","US","5802272322","5802272322","05/23/2005","08/22/2020","","","","","ICKE","GREG","","DIRECTOR","5802272322","3416L0300X","EMS054","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1841293883","2","","","J KIM RADIOLOGY ASSOCIATES PA","","","","","","","PRO RADIOLOGY","3","","","","","","","","PO BOX 808","","CUMBERLAND","MD","215010808","US","3017241646","3017247429","122 S CENTRE ST","","CUMBERLAND","MD","215023021","US","3017241646","3017247429","05/23/2005","11/20/2007","","","","","KIM","JONG","K","PRESIDENT","3017241646","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DA4688","01","","RAILROAD MEDICARE","0208455000","05","WV","","215A","01","MD","MD BLUE SHIELD","J247","01","MD","MD BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1669475604","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1315 E 7TH AVE","","TAMPA","FL","336053607","US","8132474324","","05/23/2005","03/22/2011","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PH0015190","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105451100","05","FL","","10545110001","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1487657425","2","","","KING'S MANAGEMENT & LEASING LLC","","","","","","","LONGVIEW IMAGING CENTER","3","","","","","","","","1894 GEORGETOWN RD","","HUDSON","OH","442364058","US","3305281828","3306561660","2901 JUDSON RD","","LONGVIEW","TX","756051803","US","9036630110","9036630279","05/23/2005","09/20/2007","","","","","BARLOW","V.","RENAE","DIRECTOR OF BILLING","3305281828","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1922001965","2","","","HORIZON MRI OF MCKINNEY LLC","","","","","","","","","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","2760 VIRGINIA PKWY","STE 200","MC KINNEY","TX","750714964","US","9725473674","9725473685","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","242875","01","","AMERIGROUP","7198538","01","","AETNA/MEDSOLUTIONS","0266DC","01","TX","BCBS PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1740283787","2","","","HOSPICE OF MUSKEGON COUNTY, INC.","","","","","","","HARBOR HOSPICE","3","","","","","","","","1050 W WESTERN AVE","STE 400","MUSKEGON","MI","494411666","US","2317283442","2317262581","1050 W WESTERN AVE","STE 400","MUSKEGON","MI","494411666","US","2317283442","2317262581","05/23/2005","10/07/2016","","","","","MELLEMA","STACY","","INTERIM EXECUTIVE DIRECTOR","2317283442","251G00000X","613510","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1791705","05","MI","","08701","01","MI","BCBS OF MI","500449","01","MI","CARE CHOICES","52230","01","MI","COMMUNITY CHOICE","231508","01","MI","MEDICARE","7402461","01","MI","AETNA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","CPA","","","","","","","","","","","","","","","","" -"1659374692","2","","","HEARTLAND ANESTHESIA CONSULTANTS","","","","","","","","","","","","","","","","639 N MULBERRY ST","","ELIZABETHTOWN","KY","427011931","US","2707374600","2707371722","639 N MULBERRY ST","","ELIZABETHTOWN","KY","427011931","US","2707374600","2707371722","05/23/2005","08/22/2020","","","","","SPALDING","SANDY","","OFFICE MANAGER","2707374600","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","OFFICE MANAGER","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1013910058","2","","","WESTHEIMER VISION ASSOCIATES, PC","","","","","","","","","","","","","","","","10260 WESTHEIMER RD","STE 580","HOUSTON","TX","770423107","US","7137813517","","10260 WESTHEIMER RD","STE 580","HOUSTON","TX","770423107","US","7137813517","","05/23/2005","04/18/2017","","","","","SIMANK","CHRISTOPHER","L.","PRESIDENT","7137813517","152W00000X","6949TG","TX","N","152W00000X","5887TG","TX","N","152W00000X","1656TG","TX","N","152W00000X","5276TG","TX","N","152W00000X","1655TG","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","O.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","" -"1679576623","2","","","PLEASANT HILL FAMILY PRACTICE,PC","","","","","","","","","","","","","","","","5148 E UNIVERSITY AVE","","PLEASANT HILL","IA","503277008","US","5151266119","5152660615","5148 E UNIVERSITY AVE","","PLEASANT HILL","IA","503277008","US","5151266119","5152660615","05/23/2005","08/22/2020","","","","","KAIN","LISA","","OFFICE MANAGER","5152661199","207Q00000X","01866","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1306849351","2","","","WESTERN MD PET IMAGING LLC","","","","","","","","","","","","","","","","PO BOX 808","","CUMBERLAND","MD","215010808","US","3017241646","3017247429","952 SETON DR","","CUMBERLAND","MD","215021950","US","3017773522","3017771902","05/23/2005","07/25/2007","","","","","KIM","JONG","K","PRESIDENT","3017241646","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0208472000","05","WV","","217A","01","MD","MD BLUE SHIELD","J248","01","MD","MD BLUE SHIELD","DB6053","01","","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1942203989","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","CONEMAUGH CANCER CARE ASSOCIATES","3","","","","","","","","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8144108300","8144108331","1020 FRANKLIN ST","","JOHNSTOWN","PA","159054109","US","8145349165","8145343494","05/23/2005","06/09/2010","","","","","LAMBERT","ELAINE","M","CHIEF OPERATING OFFICER","8145331630","207RX0202X","MD057321L","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100735811","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1326041369","2","","","SKIFF MEDICAL CENTER","","","","","","","SKIFF HOME CARE/JASPER COUNTY PUBLIC HEALTH","3","","","","","","","","204 N 4TH AVE EAST","","NEWTON","IA","502083135","US","6417925086","6417914813","204 N 4TH AVE EAST","","NEWTON","IA","502083135","US","6417925086","6417914813","05/23/2005","02/16/2015","","","","","ALTMAN","BRETT","A","CHIEF EXECUTIVE OFFICER","6417921273","251E00000X","=========","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0670372","05","IA","","1670372","01","IA","COMMERCIAL INSURANCES","67037","01","IA","BLUE CROSS BLUE SHIELD IA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CEO","","","","","","","","","","","","","","","","" -"1962405902","2","","","CG MEDICAL, INC.","","","","","","","","","","","","","","","","1501 LIVINGSTON AVE","STE 103","NORTH BRUNSWICK","NJ","089021876","US","7325452885","7325450153","1501 LIVINGSTON AVE","STE 103","NORTH BRUNSWICK","NJ","089021876","US","7325452885","7325450153","05/23/2005","06/12/2008","","","","","GLASS","CAREY","A","PROSTHETIST/ORTHOTIST","7325452885","335E00000X","45PO00002700","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1056204","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CPO,LPO","","","","","","","","","","","","","","","","" -"1417950452","2","","","SATTI HOME HEALTH CARE PC","","","","","","","","","","","","","","","","9339 CALUMET AVE","STE C-1","MUNSTER","IN","463212879","US","2198368331","2198368455","9339 CALUMET AVE","STE C-1","MUNSTER","IN","463212879","US","2198368331","2198368455","05/23/2005","08/22/2020","","","","","SATTI","SHUKRIA","B","PRESIDENT","2198368331","251E00000X","","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1134122179","2","","","EDEN MEDICAL CENTER","","","","","","","","","","","","","","","","PO BOX 748373","","LOS ANGELES","CA","900748373","US","8553981633","5108696592","20103 LAKE CHABOT RD","","CASTRO VALLEY","CA","945465305","US","5105371234","5108896506","05/23/2005","12/02/2013","","","","","HUNTER","BRIAN","TRENT","VP SHARED SERVICES","9162978555","282N00000X","140000030","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HSC00488G","05","CA","","ZZR00488G","05","CA","","HSP40488G","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1043213077","2","","","KING'S MEDICAL IMAGING AT WATERMARK, LLC","","","","","","","","","","","","","","","","1894 GEORGETOWN RD","","HUDSON","OH","442364058","US","3306533968","3306561660","1680 WATERMARK DR","STE 101","COLUMBUS","OH","432151034","US","6144851804","6144851321","05/23/2005","08/22/2020","","","","","COYNE","V.","RENAE","DIRECTOR OF BILLING","3306533968","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2320698","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1861495897","2","","","HORIZON MRI OF DALLAS LLC","","","","","","","","","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","7927 FOREST LN","STE D","DALLAS","TX","752302469","US","9729606674","9729606607","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7068597","01","TX","AETNA/MEDSOLUTIONS","0264DC","01","TX","BCBS PROV #","242872","01","","AMERIGROUP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1033112065","2","","","FLORIDA HEALTH CARE SERVICES INC","","","","","","","","","","","","","","","","1 NESHAMINY INTERPLEX","STE 209","TREVOSE","PA","190536969","US","2153305478","","1 NESHAMINY INTERPLEX","STE 209","TREVOSE","PA","190536969","US","2153305478","","05/23/2005","03/07/2019","","","","","BOCKRATH","CHRISTIAN","","OWNER","2153305478","332BX2000X","47","FL","N","335E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1679576607","2","","","GENESIS HOME HEALTH, INC","","","","","","","","","","","","","","","","1687 ERRINGER RD","STE 202","SIMI VALLEY","CA","930656508","US","8055207100","8055201707","1687 ERRINGER RD","STE 202","SIMI VALLEY","CA","930656508","US","8055207100","8055201707","05/23/2005","03/20/2012","","","","","WONG","AMELIA","BUYSON","ADMINISTRATOR","8055207100","251E00000X","980000651","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HHA57266G","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","REGISTERED NURSE","","","","","","","","","","","","","","","","" -"1912900945","2","","","SCIENTECH MEDICAL SUPPLIES, INC.","","","","","","","SCIENTECH MEDICAL SUPPLIES, INC.","3","","","","","","","","PO BOX 1635","","STOCKBRIDGE","GA","302818635","US","7704714888","7704714887","7000 TARA BLVD","SUITE F","JONESBORO","GA","302361600","US","7704174888","7704714887","05/23/2005","04/07/2010","","","","","JESUOROBO","IYOBOSA","O","CEO","7704714888","332BX2000X","20016604261","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","44181255A","05","GA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","MBA","","","","","","","","","","","","","","","","" -"1720081755","2","","","ALLPOINTS HOME HEALTH CARE INC.","","","","","","","","","","","","","","","","9801 PRAIRIE AVE","STE A","HIGHLAND","IN","463223633","US","2199229595","2199223821","9801 PRAIRIE AVE","STE A","HIGHLAND","IN","463223633","US","2199229595","2199223821","05/23/2005","11/22/2010","","","","","BLACK","HELENA","P","ADMINISTRATOR","2199229595","251E00000X","05-003142-1","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","BSN","","","","","","","","","","","","","","","","" -"1366445397","2","","","OPEN IMAGING LC","","","","","","","OPEN IMAGING REDWOOD","3","","","","","","","","6243 S. REDWOOD RD","SUITE 130","TAYLORSVILLE","UT","84123","US","8012889671","8012889583","6243 S REDWOOD RD","STE 130","TAYLORSVILLE","UT","841236408","US","8012889671","8012889583","05/23/2005","03/20/2014","","","","","VAN KIRK","ALBERT","C.","PRESIDENT AND CEO","3306533968","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1093718025","2","","","YODORINCMISSIONPLAZAPHARMACY","","","","","","","","","","","","","","","","906 S BRYAN RD","STE 101A","MISSION","TX","785726657","US","9565818833","","RR 8 BOX 3311","","MISSION","TX","785748606","US","9565830044","","05/23/2005","08/22/2020","","","","","ESPINOZA","DORA","G","VPSECRETARY","9565830044","332B00000X","=========","TX","X","333600000X","=========","TX","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","130056804","05","TX","","016974001","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RPH","","","","","","","","","","","","","","","","" -"1174526107","2","","","OPEN IMAGING LAYTON LLC","","","","","","","OPEN IMAGING LAYTON","3","","","","","","","","6243 S. REDWOOD RD.","SUITE 130","TAYLORSVILLE","UT","84123","US","8012889671","8012889583","2071 N MAIN ST","STE 100","LAYTON","UT","840414969","US","8018254040","8018254039","05/23/2005","03/20/2014","","","","","VAN KIRK","ALBERT","C.","PRESIDENT AND CEO","3306533968","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1881697811","2","","","LINDSBORG COMMUNITY HOSPITAL ASSOCIATION","","","","","","","","","","","","","","","","605 W LINCOLN ST","","LINDSBORG","KS","674562328","US","7852273308","7852274130","605 W LINCOLN ST","","LINDSBORG","KS","674562328","US","7852273308","7852274130","05/23/2005","11/07/2008","","","","","VAN DER WEGE","LARRY","","CEO","7852273308","282NC0060X","H059001","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","72","01","KS","BLUE CROSS BLUE SHIELD","100099150A","05","KS","","100025940A","05","KS","","100099150B","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1609879634","2","","","OPEN MRI OF BOISE, L.LC.","","","","","","","NYDIC OPEN MRI OF AMERICA-BOISE","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2015058905","7979 W RIFLEMAN ST","STE 100","BOISE","ID","837049066","US","2083756133","2083756461","05/23/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1417950445","2","","","BROADVIEW, INC.","","","","","","","","","","","","","","","","4570 GRIFFIN AVE","","LOS ANGELES","CA","900311422","US","3232219174","3232217194","4570 GRIFFIN AVE","","LOS ANGELES","CA","900311422","US","3232219174","3232217194","05/23/2005","08/22/2020","","","","","ZUNDEL-WATERSON","MARK","P","BUSINESS MANAGER","3232219174","282J00000X","051991","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1417950437","2","","","ILLINI OPEN MRI, LLC","","","","","","","","","","","","","","","","2147 S NEIL ST","","CHAMPAIGN","IL","618207593","US","2173598339","2173599833","2147 S NEIL ST","","CHAMPAIGN","IL","618207593","US","2173598339","2173599833","05/23/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1770586794","2","","","ST LUKES REGIONAL MEDICAL CENTER","","","","","","","","","","","","","","","","PO BOX 2777","","BOISE","ID","837012777","US","2087065000","","190 E BANNOCK ST","","BOISE","ID","837126241","US","2083812222","","05/23/2005","12/13/2016","","","","","TAYLOR","JEFF","","SYSTEM VP CFO","2083812520","3336I0012X","3","ID","N","282N00000X","3","ID","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","002251200","05","ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1841293867","2","","","ALEXANDER COUNTY","","","","","","","ALEXANDER COUNTY HOME HEALTH","3","","","","","","","","338 1ST AVE SW","","TAYLORSVILLE","NC","286812402","US","8286329704","8286321109","338 1ST AVE SW","","TAYLORSVILLE","NC","286812402","US","8286329704","8286321109","05/23/2005","08/07/2013","","","","","WHISNANT","LEEANNE","","HEALTH DIRECTOR","8286329704","251E00000X","HC0476","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00710","01","NC","BLUE CROSS BLUE SHIELD","3407102","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","MPH","","","","","","","","","","","","","","","","" -"1669475687","2","","","INDIANA MRI OF LAFAYETTE LLC","","","","","","","OPEN MRI OF LAFAYETTE","3","","","","","","","","130 PROFESSIONAL CT","STE C","LAFAYETTE","IN","479055153","US","7654497984","7654499791","130 PROFESSIONAL CT","STE C","LAFAYETTE","IN","479055153","US","7654497984","7654499791","05/23/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200134270","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1831192855","2","","","OPEN MRI OF NORTHERN ILLINOIS, L.L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-BUFFALO GROVE","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2015058905","2150 E LAKE COOK RD","STE 40C","BUFFALO GROVE","IL","600898220","US","8474653500","8474653510","05/23/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1275536294","2","","","METROPOLITAN PAIN MANAGEMENT CONSULTANTS, INC","","","","","","","","","","","","","","","","2288 AUBURN BLVD","STE 106","SACRAMENTO","CA","958211619","US","9165688338","9169253985","2288 AUBURN BLVD","STE 106","SACRAMENTO","CA","958211619","US","9165688338","9169253985","05/23/2005","01/19/2012","","","","","SNOOK","LEE","THOMAS","MEDICAL DIRECTOR","9165688338","208VP0014X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6531190001","01","CA","DMERC","GR0082620","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","JR.","M.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1902809924","2","","","THE SALUDA COUNSELING SERVICES CENTER INC.","","","","","","","SALUDA COUNSELING CENTER","3","","","","","","","","2400 W MAIN ST","","ROCK HILL","SC","297328968","US","8033276103","8033285443","2400 W MAIN ST","","ROCK HILL","SC","297328968","US","8033276103","8033285443","05/23/2005","02/17/2020","","","","","JOHNSON","BARBARA","J","OFFICE MANAGER","8033276103","101YM0800X","","","N","1041C0700X","","","N","106H00000X","","","N","363LP0808X","","","N","261QM0801X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","02/17/2020" -"1356344378","2","","","LIFESCAN CHICAGO LLC","","","","","","","","","","","","","","","","2242 W HARRISON ST","STE 100","CHICAGO","IL","606123515","US","3122433200","3122435759","2242 W HARRISON ST","STE 100","CHICAGO","IL","606123515","US","3122433200","3122435759","05/23/2005","05/06/2009","","","","","SOTO","MARY","","CREDENTIALING MANAGER","7084526842","261QR0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1083617005","2","","","OKLAHOMA HEART HOSPITAL, LLC","","","","","","","","","","","","","","","","4050 W MEMORIAL RD","","OKLAHOMA CITY","OK","731208382","US","4056083200","","4050 W MEMORIAL RD","","OKLAHOMA CITY","OK","731208382","US","4056083200","","05/23/2005","07/10/2020","","","","","HARVEY","JOHN","","CEO","4056083300","284300000X","2354","OK","N","282N00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200009170A","05","OK","","000370215001","01","OK","BLUE CROSS BLUE SHIELD OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","","","","","","","","","","","","","","","","07/10/2020" -"1427051440","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","CHI ANESTHESIOLOGY","3","","","","","","","","1086 FRANKLIN ST","STE A401","JOHNSTOWN","PA","159054305","US","8145345138","8145345149","1086 FRANKLIN ST","STE A401","JOHNSTOWN","PA","159054305","US","8145345138","8145345149","05/23/2005","08/22/2020","","","","","LAMBERT","ELAINE","M","CHIEF OPERATING OFFICER","8145331630","207LP2900X","MD044818E","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1093718033","2","","","TARRANT MEDICAL IMAGING, LLC","","","","","","","","","","","","","","","","1894 GEORGETOWN RD","","HUDSON","OH","442364058","US","3306533968","3306561660","1600 CENTRAL DR","STE 195","BEDFORD","TX","760226067","US","8172670777","8172678878","05/23/2005","08/22/2020","","","","","COYNE","V.","RENAE","DIRECTOR OF BILLING","3306533968","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1902809940","2","","","LABORATORY CORPORATION OF AMERICA HOLDINGS","","","","","","","","","","","","","","","","PO BOX 2240","","BURLINGTON","NC","272162240","US","8002227566","3364361048","531 S SPRING ST","","BURLINGTON","NC","272155866","US","8002227566","","05/23/2005","11/07/2017","","","","","WILLIAMS","KIMBERLY","T","VICE PRESIDENT","3364365402","291U00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1548263585","2","","","MERCY HOSPITAL JEFFERSON","","","","","","","MERCY HOSPICE","3","","","","","","","","PO BOX 350","","CRYSTAL CITY","MO","630190350","US","6369331200","6369331579","5 INDUSTRIAL DR","","FESTUS","MO","630284105","US","6369331200","6369331579","05/23/2005","04/09/2013","","","","","ROZIER","MONICA","","ADMINISTRATOR","6369331523","251G00000X","025-8HO","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","99513","01","MO","GROUP HEALTH PLAN","820155703","05","MO","","83","01","MO","BLUECROSS/BLUESHIELD OF M","6000091","01","MO","UNITED HEALTHCARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN, BSN","","","","","","","","","","","","","","","","" -"1073516019","2","","","DREW COUNTY MEMORIAL HOSPITAL","","","","","","","","","","","","","","","","778 SCOGIN DR","","MONTICELLO","AR","716555729","US","8703672411","8704603562","778 SCOGIN DR","","MONTICELLO","AR","716555729","US","8703672411","8704603562","05/23/2005","07/14/2010","","","","","LAYFIELD","MICHAEL","","CEO","8704603589","282N00000X","2870","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","102127105","05","AR","","770087105","05","AR","","102158002","05","AR","","10051","01","AR","BLUE CROSS FACILITY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","DREW COUNTY MEMORIAL HOSPITAL","","MR.","","","","","","","","","","","","","","","","","","" -"1336142371","2","","","CITY OF MEDFORD","","","","","","","MEDFORD AMBULANCE SERVICE","3","","","","","","","","PO BOX 123","","MEDFORD","OK","73759","US","5803952823","5803953122","615 N FRONT ST","","MEDFORD","OK","737592702","US","5803952823","5803953122","05/23/2005","08/22/2020","","","","","ROGERS","OMA LEA","","DIRECTOR","5803952823","3416L0300X","EMS036","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00095464","01","OK","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1063415008","2","","","ARLINGTON MEDICAL IMAGING LLC","","","","","","","","","","","","","","","","2140 E SOUTHLAKE BLVD","L-426","SOUTHLAKE","TX","760926516","US","2145028157","","3025 MATLOCK RD","STE 100","ARLINGTON","TX","760152902","US","8174676099","9727391468","05/23/2005","07/27/2020","","","","","GOGIA","RAJESH","","OWNER","2145028157","293D00000X","","","N","2085R0202X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","361995901","05","TX","","154830702","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","07/27/2020" -"1063415297","2","","","PARK VIEW PSYCHIATRIC SERVICES, PSC","","","","","","","","","","","","","","","","510 SPRING ST","","JEFFERSONVILLE","IN","471303554","US","8122821888","8122189318","510 SPRING ST","","JEFFERSONVILLE","IN","471303554","US","8122821888","8122189318","05/23/2005","10/14/2015","","","","","SHELTON","STEVEN","R.","PRESIDENT","8122821888","1041C0700X","50003891A","IN","N","363LP0808X","50003891A","IN","N","2084P0800X","50003891A","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","160780J","01","IN","KELLY BUTLER'S IN MEDICARE #","160780W","01","IN","ELLEN KNOX'S IN MEDICARE #","50010499","01","","PASSPORT HEALTH PLAN # FOR BUTLER","0676401","01","KY","STEVE SHELTON'S KY MEDICARE #","0676429","01","KY","ASAD ISMAIL'S KY MEDICARE #","5002993","01","","PASSPORT HEALTH PLAN # FOR SHELTON","0676466","01","KY","ELLEN KNOX'S KY MEDICARE #","160860","01","IN","MEDICARE","50002992","01","","PASSPORT HEALTH PLAN GROUP #","50010129","01","","PASSPORT HEALTH PLAN # FOR ISMAIL","65927857","05","KY","","CG3623","01","IN","MEDICARE RAILROAD","2444451000","01","KY","PASSPORT ADVANTAGE","0676412","01","KY","KELLY BUTLER'S KY MEDICARE #","100386460","05","IN","","160780I","01","IN","STEVE SHELTON'S IN MEDICARE #","50010173","01","","PASSPORT HEALTH PLAN # FOR KNOX","64100142","05","KY","","160780Q","01","IN","ASAD ISMAIL'S IN MEDICARE #","CK2274","01","KY","MEDICARE RAILROAD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","" -"1699778829","2","","","CHIPPEWA VALLEY ORTHOPEDICS AND SPORTS MEDICINE CLINIC SC","","","","","","","","","","","","","","","","1200 OAKLEAF WAY","SUITE A","ALTOONA","WI","547202245","US","7158321400","7158324187","1200 OAKLEAF WAY","SUITE A","ALTOONA","WI","547202245","US","7158321400","7158324187","05/23/2005","02/24/2020","","","","","BERG","TROY","LYMAN","PRESIDENT","7158321400","207T00000X","","","N","208VP0014X","54216","WI","N","213ES0103X","","","N","261QM1200X","","","N","332B00000X","","WI","N","363A00000X","","","N","207X00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2416091","01","WI","UNITED HEALTHCARE","220399400","01","WI","OWCP","542R9CH","01","WI","BCBS OF MN","21278700","05","WI","","41741700","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","02/24/2020" -"1881697092","2","","","RHS, INC.","","","","","","","MID TENN MEDICAL MOBILITY","3","","","","","","","","1330 TROTWOOD AVE","","COLUMBIA","TN","384014701","US","9314908090","9314901840","1330 TROTWOOD AVE","","COLUMBIA","TN","384014701","US","9314908090","9314901840","05/23/2005","08/22/2020","","","","","STEVENS","CHARLES","BURCK","PRESIDENT","9314908090","332B00000X","","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1454291","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1326041534","2","","","MURFREESBORO CONVALESCENT SERVICE","","","","","","","MURFREESBORO AMBULANCE SERVICE","5","","","","","","","","PO BOX 759","","MURFREESBORO","TN","371330759","US","6158903463","6158958867","4428 LASCASSAS PIKE","","MURFREESBORO","TN","371306871","US","6158903463","6158958867","05/23/2005","06/26/2008","","","","","MEDLOCK","WOODY","HARRELL","EMTA OWNER","6158903463","341600000X","EMS0000007503","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","SR.","","","","","","","","","","","","","","","","","" -"1053314260","2","","","RIVERSIDE NEUROLOGY ASSOCIATES, P.A.","","","","","","","","","","","","","","","","560 RIVERSIDE DR","SUITE B204","SALISBURY","MD","218014700","US","4105465722","4105465851","560 RIVERSIDE DR","STE B204","SALISBURY","MD","218014703","US","4105465722","4105465851","05/23/2005","05/25/2011","","","","","BIRD","RICHARD","E","PHYSICIAN","4105465722","174400000X","D76344","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2084N0400X","01","MH","TAXONOMY NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1053314252","2","","","HOSPICE ALLIANCE, INC.","","","","","","","ALLIANCE HOMECARE","3","","","","","","","","10220 PRAIRIE RIDGE BLVD","","PLEASANT PRAIRIE","WI","531581946","US","2626524400","2629251361","10220 PRAIRIE RIDGE BLVD","","PLEASANT PRAIRIE","WI","531581946","US","2626524400","2629251361","05/23/2005","05/21/2014","","","","","HAAS","LAWRENCE","","DIRECTOR OF FINANCE","2626524482","251E00000X","130","WI","N","251G00000X","1502","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","41510300","05","WI","","43180700","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1962405167","2","","","ADVANCED PODIATRY SERVICES, LLC","","","","","","","","","","","","","","","","4230 CRUMS MILL ROAD","","HARRISBURG","PA","171122898","US","7176575050","7176579350","4230 CRUMS MILL ROAD","","HARRISBURG","PA","171122898","US","7176575050","7176579350","05/23/2005","01/28/2009","","","","","GREER","LOUIS","VERNON","PRESIDENT","7176575050","213EP1101X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1020961010001","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DPM","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1407859606","2","","","TKG INC.","","","","","","","MILLENNIUM HOME CARE OF SE OKLAHOMA","3","","","","","","","","13737 NOEL RD","SUITE 1400","DALLAS","TX","752401331","US","2144914710","2144914907","106 1/2 N BROADWAY ST","","HUGO","OK","747434031","US","5803178079","5803179275","05/23/2005","12/13/2016","","","","","BECK","ERIC","H","CEO","2144914710","251E00000X","7723","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200042940A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1770586976","2","","","COUNTY OF FRANKLIN","","","","","","","FRANKLIN COUNTY HEALTH DEPARTMENT","3","","","","","","","","1418 S MAIN ST","STE 1","OTTAWA","KS","660673544","US","7852293530","7852293529","1418 S MAIN ST","STE 1","OTTAWA","KS","660673544","US","7852293530","7852293529","05/23/2005","07/16/2013","","","","","PLATT","MARY","ANN","OFFICE MANAGER","7852293530","251K00000X","","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","60090","05","KS","","90060","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF FRANKLIN","","MS.","","","","","","","","","","","","","","","","","","" -"1124021324","2","","","DAYTON CHILDREN'S ORTHOPAEDIC CENTER FOR SPINAL & PEDIATRIC CARE, LLC","","","","","","","","","","","","","","","","1 CHILDRENS PLZ","","DAYTON","OH","454041898","US","9376413010","9376415003","1 CHILDRENS PLZ","","DAYTON","OH","45404","US","9376413010","9376415003","05/23/2005","06/19/2018","","","","","COFFEY","LISA","","PRESIDENT","9376413610","174400000X","050826","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2155448","05","OH","","200251960A","05","IN","","914700400","05","FL","","0060237","05","OH","","65901415","05","KY","","2125835800","01","OH","BUREAU OF WORKERS COMP","CG2790","01","OH","PARAMOUNT","CG2790","01","OH","RAILROAD MEDICARE","2252233","01","OH","AETNA","65901415","01","KY","KENTUCKY PASSPORT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1033112230","2","","","ST JUDE CHILDRENS RESEARCH HOSPITAL INC","","","","","","","","","","","","","","","","262 DANNY THOMAS PLACE MS 0515","ST JUDE CHILDRENS RESEARCH HOSPITAL","MEMPHIS","TN","381053678","US","9015956863","9015953842","262 DANNY THOMAS PL","","MEMPHIS","TN","381053678","US","9015953300","","05/23/2005","09/12/2018","","","","","KEEL","PATRICIA","A.","SVP/CFO","9015952916","3336C0002X","843","TN","N","282NC2000X","0000000113","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","443302","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1942203146","2","","","TOM & JERRY'S HOME MEDICAL SERVICE","","","","","","","","","","","","","","","","PO BOX 837","","CONNELLSVILLE","PA","154250837","US","7246288913","7246280675","145 N 8TH ST","","CONNELLSVILLE","PA","154252405","US","7246288913","7246280675","05/23/2005","12/01/2016","","","","","MEANS","MELISSA","A","PARTNER","7246288913","332BP3500X","","","N","335E00000X","","","N","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1750384954","2","","","MEDICAL TRANSPORT, LLC","","","","","","","","","","","","","","","","5792 ARROWHEAD DR","","VIRGINIA BEACH","VA","234623219","US","7579626803","7574970136","5792 ARROWHEAD DR","","VIRGINIA BEACH","VA","23462","US","7576717106","7574970136","05/23/2005","08/01/2018","","","","","HUFFER","LINDA","R","PRESIDENT, SENTARA ENTERPRISES","7575533000","3416L0300X","308","VA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","332439","01","","ALLIANCE PIN","7749612","01","","AETNA PIN","010268648","05","VA","","192401","01","VA","ANTHEM","47018","01","","OPTIMA PIN","4906997","05","NC","","54191764901","01","","GATE MCDONALD PIN","232439","01","","GEHA PIN","308707","01","","AVMED","010057051","05","VA","","150610000","01","","DEPT OF LABOR PIN","0724416","01","","CIGNA PIN","8197208","01","","UNITED HEALTHCARE PIN","080049300","01","","FBLP PIN","290107000","01","","MAGELLAN BEHAVIORAL HLTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","SENTARA ENTERPRISES","","","","","","","","","","","","","","","","","","","","" -"1316940505","2","","","ADVANCED PHYSICAL THERAPY, LLC","","","","","","","ATI PHYSICAL THERAPY OF INDIANA","3","","","","","","","","790 REMINGTON BLVD","","BOLINGBROOK","IL","604404909","US","3602962223","","5949 W RAYMOND ST","","INDIANAPOLIS","IN","462411612","US","3173905599","3174862189","05/23/2005","10/24/2011","","","","","MCGIVERN","LYNN","","CHIEF COMPLIANCE OFFICER","6302962222","225100000X","53000009A","IN","N","225X00000X","","IN","N","225100000X","","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100239270","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1134122328","2","","","MEDFUND LLC","","","","","","","HORIZON CORAL SPRINGS LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","2825 N UNIVERSITY DR","STE 100","CORAL SPRINGS","FL","330655020","US","9542273133","9542273144","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5194","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2647","01","FL","BCBS PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1770586968","2","","","SIMPSONVILLE FAMILY MEDICINE, PA","","","","","","","","","","","","","","","","1336 HIGHWAY 14","","SIMPSONVILLE","SC","29681","US","8645278600","8645278638","1336 HIGHWAY 14","","SIMPSONVILLE","SC","29681","US","8645278600","8645278638","05/23/2005","07/08/2016","","","","","BATES","DAWN","M","PRACTICE ADMINISTRATOR","8645278600","207Q00000X","","","N","207Q00000X","16070","SC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1043244023","01","SC","IND NPI","1184662033","01","SC","IND NPI","182019","05","SC","","160712","05","SC","","1861430720","01","SC","IND. NPI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1215930409","2","","","R&P MEDICAL, INC.","","","","","","","","","","","","","","","","166 WEBSTER AVE","","NEW ROCHELLE","NY","108016111","US","9145767299","9145768855","166 WEBSTER AVE","","NEW ROCHELLE","NY","108016111","US","9145767299","9145768855","05/23/2005","08/22/2020","","","","","MILANO","RICHARD","M","VICE PRESIDENT","9145767299","332BX2000X","332BC3200X","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","01506041","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1124021316","2","","","ENGLEWOOD EMERGENCY PHYSICIANS PA","","","","","","","","","","","","","","","","PO BOX 552142","","TAMPA","FL","336550001","US","8004768646","9193823210","700 MEDICAL BLVD","","ENGLEWOOD","FL","342233964","US","8004768646","9193823210","05/23/2005","08/10/2007","","","","","STILES","KENDAL","","MEDICAL DIRECTOR","9414735000","207P00000X","ME70191","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","34531","01","FL","BCBS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MEDICAL DOCTOR","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1679576862","2","","","ALGONQUIN FIRE PROTECTION DISTRICT","","","","","","","ALGONQUIN LAKE IN THE HILLS FIRE PROTECTION DISTRICT","3","","","","","","","","PO BOX 457","","WHEELING","IL","600900457","US","8475778811","8475779515","1020 W ALGONQUIN RD","","LAKE IN THE HILLS","IL","601563500","US","8476588233","8478542609","05/23/2005","05/19/2008","","","","","GUETSCHOW","STEVE","","CHIEF","8476588223","3416L0300X","7957","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5621609","01","IL","BCBS PROVIDER NUMBER","356195100","01","IL","DEPT OF LABOR OWCP","590012475","01","IL","MEDICARE RAILROAD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","CHIEF","","","","","","","","","","","","","","","","" -"1811990203","2","","","TURENNE PHARMEDCO, INC.","","","","","","","","","","","","","","","","355 INDUSTRIAL PARK BLVD","","MONTGOMERY","AL","361175550","US","3342440200","3343942286","355 INDUSTRIAL PARK BLVD","","MONTGOMERY","AL","361175550","US","3342440200","3343942286","05/23/2005","01/29/2016","","","","","TURENNE","ROGER","","OWNER","3342653900","3336L0003X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100010014","05","AL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1114920303","2","","","MANHATTAN FOOT SPECIALISTS, PA","","","","","","","","","","","","","","","","915 WESTPORT PL","","MANHATTAN","KS","66502","US","7855394205","7855394204","915 WESTPORT PL","","MANHATTAN","KS","66502","US","7855394205","7855394204","05/23/2005","01/12/2012","","","","","TRAN","MICHAEL","Q","PRESIDENT/DOCTOR","7855394205","213ES0131X","12-00325","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","114104","01","KS","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DPM","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1396748588","2","","","MERCY HOSPITAL JEFFERSON","","","","","","","MERCY HOME HEALTH","3","","","","","","","","PO BOX 350","","CRYSTAL CITY","MO","630190350","US","6369331162","6369331579","5 INDUSTRIAL DR","","FESTUS","MO","630284105","US","6369331162","6369331579","05/23/2005","04/09/2013","","","","","ROZIER","MONICA","","ADMINISTRATOR","6369331523","251E00000X","198-20","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","G2149017","01","MO","HEALTHLINK","99513","01","MO","GROUP HEALTH PLAN","580155703","05","MO","","6000091","01","MO","UNITED HEALTHCARE","83","01","MO","BLUECROSS/BLUESHIELD OF M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN, BSN","","","","","","","","","","","","","","","","" -"1912900101","2","","","TEXAS PANHANDLE MHMR","","","","","","","","","","","","","","","","901 WALLACE BLVD","BLDG 501","AMARILLO","TX","791061705","US","8063513200","8063513345","901 WALLACE BLVD","BLDG 501","AMARILLO","TX","791061705","US","8063513313","8063513345","05/23/2005","09/29/2020","","","","","TALLEY","MELLISA","","EXECUTIVE DIRECTOR","8063513206","251B00000X","=========","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","096160901","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","09/29/2020" -"1649273830","2","","","HEBERT NURSING HOME INC","","","","","","","","","","","","","","","","180 LOG RD","","SMITHFIELD","RI","029171518","US","4012317016","4012314018","180 LOG RD","","SMITHFIELD","RI","029171518","US","4012317016","4012314018","05/23/2005","08/22/2020","","","","","HEBERT","PAUL","J","ADMINISTRATOR","4012317016","314000000X","RI264","RI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","410549","05","RI","","7109090","01","RI","UNITED HEALTHCARE OF NE","402577","01","RI","BLUE CHIP","5088-1","01","RI","BLUE CROSS & BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1285637470","2","","","TOWN OF BILLINGS","","","","","","","BILLINGS FIRE DEPARTMENT","3","","","","","","","","PO BOX 216","","BILLINGS","OK","746300216","US","5807253696","","101 S. BROADWAY","","BILLINGS","OK","74630","US","5807253696","","05/23/2005","08/22/2020","","","","","STOLL","LINDA","","DIRECTOR","5807253696","3416L0300X","EMS203","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00185682","01","OK","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1720081912","2","","","MARTHAS VINEYARD COMMUNITY SERVICES, INC DBA VISITING NURSE SERVICE","","","","","","","","","","","","","","","","111 EDGARTOWN RD","","VINEYARD HAVEN","MA","025685601","US","5086937900","5086936669","111 EDGARTOWN VINEYARD HAVEN ROAD","","OAK BLUFFS","MA","02557","US","5086937900","5086936669","05/23/2005","03/05/2014","","","","","BURGESS","JULIA","","CEO","5086937900","251E00000X","005601","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","120125","01","MA","BLUE CROSS","0601845","05","MA","","704411","01","MA","HARVARD PILGRIM HEALTH CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1639172828","2","","","WESTFALL SURGERY CENTER LLP","","","","","","","","","","","","","","","","1065 SENATOR KEATING BLVD.","","ROCHESTER","NY","14618","US","5852561330","5852563823","1065 SENATOR KEATING BLVD.","","ROCHESTER","NY","14618","US","5852561330","5852563823","05/23/2005","06/08/2012","","","","","SCOTT","GARY","J.","ADMINISTRATIVE DIRECTOR","5852561330","261QA1903X","2701227R","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","103136FL","01","NY","PREFERRED CARE","2735782","01","NY","AETNA","000400762000","01","NY","HEALTHNOW","RQ","01","NY","BLUES TRADITIONAL","103136CJ","01","NY","PREFERRED CARE INFUSION","01058511","05","NY","","014004585","01","NY","BLUES HMO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1629071816","2","","","CITY OF WELLINGTON","","","","","","","","","","","","","","","","317 SOUTH WASHINGTON","","WELLINGTON","KS","67152","US","6203262811","6203268506","200 NORTH C STREET","SUITE 200","WELLINGTON","KS","67152","US","6203267443","6203268475","05/23/2005","10/17/2011","","","","","HAY","TIM","","FIRE CHIEF","6203267443","146N00000X","2070","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1528061710","2","","","METRO HEALTH FOUNDATION OF NEW HAMPSHIRE, INC.","","","","","","","GOLDEN VIEW HEALTH CARE CENTER","3","","","","","","","","19 NH ROUTE 104","","MEREDITH","NH","032535715","US","6032798111","6032791025","19 NH ROUTE 104","","MEREDITH","NH","032535715","US","6032798111","6036774154","05/23/2005","06/25/2013","","","","","SIMINO","ROSEMARY","","ASSISTANT ADMINISTRATOR","6032798111","310400000X","02734","NH","N","314000000X","02632","NH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3076977","05","NH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1437152626","2","","","BREWER MEDICAL SERVICES INC","","","","","","","","","","","","","","","","2724 N JACKSON HWY","","SHEFFIELD","AL","356603431","US","2563899393","2563831870","2724 N JACKSON HWY","","SHEFFIELD","AL","356603431","US","2563899393","2563831870","05/23/2005","07/02/2012","","","","","BREWER","KELVIN","D","OWNER","2563899393","332B00000X","232","AL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","051050368","01","AL","BLUE CROSS BLUE SHIELD","009601030","05","AL","","4582364","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","BREWER MEDICAL SERVICES INC","","","","","","","","","","","","","","","","","","","","" -"1164425351","2","","","ALL-MED HEALTHCARE INC","","","","","","","","","","","","","","","","101 N PLAINS INDUSTRIAL RD","BLDG 1A","WALLINGFORD","CT","064922360","US","2032843443","2032840525","101 N PLAINS INDUSTRIAL RD","BLDG 1A","WALLINGFORD","CT","064922360","US","2032843443","2032840525","05/23/2005","03/19/2009","","","","","FARONE","RICHARD","","OWNER/PRESIDENT","2032843443","332B00000X","","CT","N","332BX2000X","","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12DME0266CT01","01","CT","BLUE CROSS & BLUE SHIELD","222489","01","CT","PREFERRED ONE","00412338700","01","CT","BLUECARE FAMILY PLAN","004123387","05","CT","","652872","01","CT","CONNECTICARE","004123387","01","CT","SAGA","004123387","01","CT","COMMUNITY HEALTH NETWORK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1700889987","2","","","COUNTY OF ADA","","","","","","","ADA COUNTY EMERGENCY MEDICAL SERVICES","3","","","","","","","","370 N. BENJAMIN LANE","","BOISE","ID","83704","US","2082872950","2082872999","370 N. BENJAMIN LANE","","BOISE","ID","83704","US","2082872950","2082872999","05/23/2005","05/04/2011","","","","","HAGEN","TROY","M.","DIRECTOR","2082872965","3416L0300X","8407","ID","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","192187","05","OR","","002807200","05","ID","","XMTE06322","05","CA","","9535501","05","WA","","000010014241","01","ID","BLUE SHIELD","E002-1","01","ID","BLUE CROSS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1972506152","2","","","MEDFUND LLC","","","","","","","HORIZON SARASOTA LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","5969 CATTLERIDGE BLVD","STE 104","SARASOTA","FL","342326050","US","9413430880","9413430881","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5208","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2648","01","FL","BCBS PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1144223322","2","","","NORTH COUNTRY HOME SERVICES, INC.","","","","","","","","","","","","","","","","25 CHURCH ST","","SARANAC LAKE","NY","129831816","US","5188915611","5188912055","25 CHURCH ST","","SARANAC LAKE","NY","129831816","US","5188915611","5188912055","05/23/2005","10/11/2012","","","","","LEAHY","REBECCA","JOY","EXECUTIVE DIRECTOR","5188915611","251E00000X","0113L001","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","01293030","05","NY","","00891736","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1053314237","2","","","INTEGRATED CONCEPTS, INC","","","","","","","PHARMACARE","3","","","","","","","","3807 ACADEMY PARKWAY S NE","","ALBUQUERQUE","NM","871094410","US","5053459299","5053459902","3807 ACADEMY PARKWAY S NE","","ALBUQUERQUE","NM","871094410","US","5053459299","5053459902","05/23/2005","07/09/2012","","","","","HUNTINGFORD","ROSS","K","PRESIDENT","5053459299","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000L7182","05","NM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1225031404","2","","","DALLAS OXYGEN CORPORATION","","","","","","","PRESCRIPTION AIR","4","","","","","","","","11857 JUDD CT","STE 214","DALLAS","TX","752434411","US","9726906404","9726800513","11857 JUDD CT","STE 214","DALLAS","TX","752434411","US","9726906404","9726800513","05/23/2005","08/22/2020","","","","","CHENEY","LORAINE","","OFFICE MANAGER","9726906404","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","509653","01","TX","BLUE CROSS/ BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN","","","","","","","","","","","","","","","","" -"1063415073","2","","","KING'S MEDICAL IMAGING CREVE COEUR, LLC","","","","","","","ADVANCED IMAGING CREVE COEUR","3","","","","","","","","1894 GEORGETOWN RD","","HUDSON","OH","442364058","US","3306533968","3306561660","11756 OLIVE STREET RD","","CREVE COEUR","MO","63141","US","3145693900","3145692734","05/23/2005","08/22/2020","","","","","COYNE","V.","RENAE","DIRECTOR OF BILLING","3306533968","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1154324168","2","","","COLORADO PROFESSIONAL MEDICAL, INC","","","","","","","","","","","","","","","","175 S UNION BLVD","SUITE 370","COLORADO SPRINGS","CO","809103113","US","3032322001","3032336390","175 S UNION BLVD","STE 370","COLORADO SPRINGS","CO","809103113","US","7196325075","7196325078","05/23/2005","02/15/2008","","","","","PRICE","SHERYL","S","DIRECTOR OF REIMBURSEMENT","5034938288","335E00000X","05-37672-0003","CO","N","332B00000X","0537672-0003","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","57472335","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","HANGER ORTHOPEDIC GROUP","","","","","","","","","","","","","","","","","","","","" -"1326041336","2","","","BUTLER PHARMACY INC","","","","","","","BUTLER PHARMACY","3","","","","","","","","11 S ORANGE ST","","BUTLER","MO","647301805","US","6606794175","6606796088","11 S ORANGE ST","","BUTLER","MO","647301805","US","6606794175","6606796088","05/23/2005","03/13/2013","","","","","CHILDERS","DAVE","","PRESIDENT/CEO/OWNER","6606794175","3336L0003X","","","N","3336C0003X","003510","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","60074470","05","MO","","100438870A","05","KS","","2613467","01","","NCPDP PROVIDER IDENTIFICATION NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1235132242","2","","","HALE MAKUA HEALTH SERVICES","","","","","","","HALE MAKUA HOME HEALTH AGENCY","5","","","","","","","","1520 E MAIN ST","","WAILUKU","HI","967931958","US","8082443661","8082445470","1520 E MAIN ST","","WAILUKU","HI","967931958","US","8082443661","8082445470","05/23/2005","03/23/2017","","","","","LO","WESLEY","","CHIEF EXECUTIVE OFFICER","8088772761","251E00000X","HHA-3","HI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","127003","01","HI","PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","HALE MAKUA HEALTH SERVICES","","","","","","","","","","","","","","","","","","","","" -"1962405977","2","","","VITAL AMBULATORY HEALTHCARE,INC","","","","","","","","","","","","","","","","6666 HARWIN DR","STE 350","HOUSTON","TX","770362261","US","7122706995","7132700334","6666 HARWIN DR","STE 350","HOUSTON","TX","770362261","US","7122706995","7132700334","05/23/2005","01/17/2012","","","","","NWABEKE","VICTORIA","IJEOMA","ADMINISTRATOR/DON","7132706995","251E00000X","006505","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1780687798","2","","","LIFESCAN IMAGING, LLC","","","","","","","","","","","","","","","","607 CLIFTY ST","STE 102","SOMERSET","KY","425031765","US","6066776664","6066776560","607 CLIFTY ST","STE 102","SOMERSET","KY","425031765","US","6066776664","6066776560","05/23/2005","01/27/2010","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QM1200X","","","N","261QR0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7100090800","05","KY","","65940322","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1134122146","2","","","COUNTY OF PASCO OFFICE CLERK BOARD OF COUNTY COMMISSIONERS","","","","","","","PASCO COUNTY FIRE RESCUE","5","","","","","","","","P. O. BOX 31911","","TAMPA","FL","336313911","US","8139292729","8139959361","4111 LAND O LAKES BLVD","STE 208","LAND O LAKES","FL","346394402","US","8139292729","8139959361","05/23/2005","10/31/2013","","","","","CASSIN","SCOTT","M","EMERGENCY SERVICES DIRECTOR","8139292750","3416L0300X","002358","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","088120100","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1396748307","2","","","LIFESCAN MINNESOTA LLC","","","","","","","","","","","","","","","","3955 PARKLAWN AVE","STE 110","EDINA","MN","554355657","US","9528931997","9528930088","3955 PARKLAWN AVE","STE 110","EDINA","MN","554355657","US","9528931997","9528930088","05/23/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QR0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9146652-00","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1568465573","2","","","GOROVOY M D EYE SPECIALISTS P A","","","","","","","MARK S. GOROVOY MD PA","3","","","","","","","","12381 S CLEVELAND AVE","STE 300","FORT MYERS","FL","339073852","US","2399391444","2399367710","12381 S CLEVELAND AVE","STE 300","FORT MYERS","FL","339073852","US","2399391444","2399367710","05/23/2005","08/26/2011","","","","","GOROVOY","MARK","S.","MEDICAL DOCTOR/PRESIDENT","2399391444","207W00000X","840342","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","066657200","05","FL","","K0328","01","FL","MEDICARE GROUP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1730182742","2","","","MERCY CARDIOLOGY LLC","","","","","","","","","","","","","","","","625 S NEW BALLAS RD","STE 2030","SAINT LOUIS","MO","631418253","US","3142515830","3142515803","625 S NEW BALLAS RD","STE 2030","SAINT LOUIS","MO","631418253","US","3142515830","3142515803","05/23/2005","04/07/2008","","","","","HERMANN","JOHN","G.","PRESIDENT","3143643380","207RC0000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","MERCY AFFILIATED PHYSICIANS LLC","","MR.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1053314054","2","","","COMFORT HOME MEDICAL SUPPLIES, LLC","","","","","","","","","","","","","","","","1328 WHALLEY AVE","","NEW HAVEN","CT","065151101","US","2033875565","2033895960","1328 WHALLEY AVE","","NEW HAVEN","CT","065151101","US","2033875565","2033895960","05/23/2005","08/22/2020","","","","","BRIER","RONNA","","MANAGING MEMBER","2033875565","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1386647378","2","","","JAMES C LYLES, DDS, INC.","","","","","","","SMILES BY LYLES ORTHODONTICS","3","","","","","","","","8111 CYPRESSWOOD DR","STE 108","SPRING","TX","773797180","US","2816558500","2812572944","8111 CYPRESSWOOD DR","STE 108","SPRING","TX","773797180","US","2816558500","2812572944","05/23/2005","08/22/2020","","","","","LYLES","JAMES","C","OWNER","2816558500","1223X0400X","7508","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","JR.","D.D.S.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1295738284","2","","","A & A MEDICAL SUPPLY COMPANY","","","","","","","","","","","","","","","","146 CHARTLEY DR","STE 100","REISTERSTOWN","MD","211362331","US","4105269323","4105263375","146 CHARTLEY DR","STE 100","REISTERSTOWN","MD","211362331","US","4105269323","4105263375","05/23/2005","10/31/2011","","","","","TRAKHTMAN","MIKHAIL","","OWNER","4105269323","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","510705900","05","MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1104829191","2","","","YATHINDRAN J. LINGAM-NATTAMAI, DDS, PC","","","","","","","OLYMPIA SMILES: DEMTISTRY FOR ALL AGES","3","","","","","","","","2600 YELM HWY SE","","OLYMPIA","WA","985014826","US","3605284488","3605284490","2600 YELM HWY SE","","OLYMPIA","WA","985014826","US","3605284488","3605284490","05/23/2005","08/22/2020","","","","","LINGAM-NATTAMAI","YATHINDRAN","J","PRESIDENT","3605284488","1223G0001X","DE7953","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.D.S","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1215930490","2","","","FAMILY ORTHOPEDIC ASSOCIATES P L C","","","","","","","ORTHOMICHIGAN","3","","","","","","","","4466 W BRISTOL RD","","FLINT","MI","485073170","US","8107331200","8107330688","4466 W BRISTOL RD","","FLINT","MI","485073170","US","8107331200","8107330688","05/23/2005","06/02/2020","","","","","WEBSTER","JANET","KAY","BILLING MANAGER","8107331200","207XX0801X","","","N","2081P2900X","4301065543","MI","N","225100000X","","","N","225X00000X","","","N","225XH1200X","","","N","363A00000X","5601001619","MI","N","363L00000X","4704223732","MI","N","207X00000X","4301038287","MI","N","207XS0106X","4301060974","MI","N","207XS0114X","","","N","207XS0117X","4301060979","MI","N","207XX0004X","4301063943","MI","N","207XX0005X","4301059287","MI","Y","","","","","","","","","1942628268","05","MI","","0N45090","01","MI","GROUP MEDICARE PTAN","0B51156","01","MI","BCBSM PROVIDER ID #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","R.T.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","06/02/2020" -"1124021308","2","","","JULIA RACKLEY PERRY MEMORIAL HOSPITAL","","","","","","","PERRY MEMORIAL HOSPITAL","3","","","","","","","","530 PARK AVE E","","PRINCETON","IL","613563901","US","8158752811","8158764455","530 PARK AVE E","","PRINCETON","IL","613563901","US","8158752811","8158764455","05/23/2005","03/17/2020","","","","","WELTE","JEAN","","MEDICAL STAFF SERVICES COORDINATOR","8158762293","282NC0060X","0001883","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","336006057001","05","IL","","336006057401","05","IL","","A61356001","01","IL","JOHN DEERE","122","01","IL","BLUE CROSS","001193","01","IL","HEALTH ALLIANCE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","03/17/2020" -"1760485940","2","","","FIRST RESPONSE MEDICAL CORP","","","","","","","","","","","","","","","","10240 SW 56TH ST","STE 112C","MIAMI","FL","331657070","US","3054129393","3054129394","10240 SW 56TH ST","STE 112C","MIAMI","FL","331657070","US","3054129393","3054129394","05/23/2005","08/22/2020","","","","","GONZALEZ","MARISSA","","OFFICE MANAGER","3054129393","332BX2000X","01875","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","211769","01","FL","AMERIGROUP PROVIDER","R8891","01","FL","BLUE CROSS PROVIDER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1588667760","2","","","CHEROKEE NATION","","","","","","","CHEROKEE NATION EMS","3","","","","","","","","PO BOX 977","","TAHLEQUAH","OK","744650977","US","9184535648","","22114 S BALD HILL RD","","TAHLEQUAH","OK","744641519","US","9184585403","9184584488","05/23/2005","06/21/2018","","","","","SUMMERLIN","JIMMY","","EMS DIRECTOR","9184535025","3416L0300X","EMS263","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","590005278","01","OK","RAILROAD MEDICARE","100729250B","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1205839487","2","","","INTERVENTIONAL REHABILITATION CENTER, LLC","","","","","","","","","","","","","","","","1549 AIRPORT BLVD","STE 420","PENSACOLA","FL","325048633","US","8504848800","8504846020","1549 AIRPORT BLVD","STE 420","PENSACOLA","FL","325048633","US","8504848800","8504846020","05/23/2005","08/22/2020","","","","","TIMMONS","RUBEN","BERROCAL","MEDICAL DIRECTOR/ADMINISTRATOR","8504848800","261QA1903X","1061","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1061","01","FL","LICENSE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","","","","","","","","","","","","","","","","" -"1700889979","2","","","BIO-MED OF LOUISIANA, INC.","","","","","","","","","","","","","","","","PO BOX 73704","","METAIRIE","LA","700333704","US","5048892203","5048892230","3105 DAVID DR","","METAIRIE","LA","700034554","US","5048892203","5048892230","05/23/2005","08/22/2020","","","","","FERRER","JOE","","PRESIDENT","5048892203","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1923133","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1528061793","2","","","HEART OF TEXAS FOOT CARE CENTER, P.A.","","","","","","","","","","","","","","","","103 A SOUTH PARK DR.","","BROWNWOOD","TX","76801","US","3266460715","3256463734","103 A SOUTH PARK DR.","","BROWNWOOD","TX","76801","US","3266460715","3256463734","05/23/2005","12/06/2018","","","","","YOUNG","BOHN","MARSHALL","OWNER/PHYSICIAN","3256460715","213E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","159094503","05","TX","","8K2280","01","TX","BLUE CROSS & BLUE SHIELD","092724604","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","D.P.M.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1164425336","2","","","BIOSCRIP PHARMACY(NY), INC","","","","","","","BIOSCRIP INFUSION SERVICES","3","","","","","","","","1600 BROADWAY","SUITE 700","DENVER","CO","80202","US","7206975171","","1 VERMONT DR.","","LAKE SUCCESS","NY","11042","US","8775010108","5163559322","05/23/2005","11/25/2019","","","","","BERMAN","CLIFFORD","","SR. VP, GENERAL COUNSEL, SECRETARY","8008796137","3336S0011X","","","N","251E00000X","","","N","251F00000X","","","N","332B00000X","","","N","332BP3500X","","","N","333600000X","028120","NY","N","3336C0004X","","","N","3336M0002X","","","N","3336H0001X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","021820","01","NY","LICENSE","17218","01","FL","LICENSE","1009850","05","PA","","MO40001165","01","ME","LICENSE","PH01478","01","NV","LICENSE","64000309A","01","IN","LICENSE","A9-0000425","01","DE","LICENSE","PCN.0000299","01","CT","LICENSE","NR0135","01","NH","LICENSE","003095199","05","CT","","021198900","01","OH","LICENSE","PHN10000","01","RI","LICENSE","1009850","05","VT","","2004020573","01","MO","LICENSE","6754210","05","NJ","","6754201","05","NJ","","02244640","05","NY","","10483","01","SC","LICENSE","28RO00023400","01","NJ","LICENSE","PMP-237","01","HI","LICENSE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1982607156","2","","","TRI-CITIES DIALYSIS LLC","","","","","","","","","","","","","","","","1300 WATERFORD DR","LOWR LEVEL","AURORA","IL","605045502","US","6308511206","","306 RANDALL RD","","GENEVA","IL","601344200","US","6302621306","","05/23/2005","06/19/2008","","","","","GANONG","CALVIN","","CHIEF OPERATING OFFICER","6308511206","261QE0700X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","50019","01","IL","BLUE CROSS NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1225031495","2","","","MONROE SURGICAL HOSPITAL, LLC","","","","","","","","","","","","","","","","2408 BROADMOOR BLVD.","","MONROE","LA","71201","US","3184100002","3184101960","2408 BROADMOOR BLVD.","","MONROE","LA","71201","US","3184100002","3184101960","05/23/2005","05/20/2014","","","","","HEMPHILL","ROBYN","JEANETTE","CEO/DON","3188129500","282N00000X","475","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1700657","05","LA","","60485","01","LA","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN, BSN, MHA","","","","","","","","","","","","","","","","" -"1770586943","2","","","NEW WEST ORTHOPAEDIC & SPORTS REHABILITATION LLC","","","","","","","","","","","","","","","","2810 W 35TH ST","STE 2","KEARNEY","NE","68845","US","3082377388","3082377394","2810 W 35TH ST","STE 2","KEARNEY","NE","68845","US","3082372766","3082372768","05/23/2005","05/25/2010","","","","","WEED","WILLIAM","K","OWNER/PT","3082377388","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10025058400","05","NE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","P.T.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1679576847","2","","","LIFE CARE AT HOME OF TENNESSEE, INC.","","","","","","","","","","","","","","","","3001 KEITH ST NW","","CLEVELAND","TN","373123713","US","4234735256","4235598356","7625 HAMILTON PARK DR","STE 16","CHATTANOOGA","TN","374211188","US","4235101500","4235101560","05/23/2005","03/06/2013","","","","","JOHNSON","STEPHANIE","","DIRECTOR OF ACCOUNTING","4234735257","251E00000X","0000000109","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3062149","01","TN","BLUECROSS BLUESHIELD PROV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1114920386","2","","","PETER BECKER COMMUNITY","","","","","","","","","","","","","","","","800 MAPLE AVE","","HARLEYSVILLE","PA","194381032","US","2152569501","2152569768","800 MAPLE AVE","","HARLEYSVILLE","PA","194381032","US","2152569501","2152569768","05/23/2005","11/09/2011","","","","","BERSTER","CAROL","A","PRESIDENT/CEO","2152569501","314000000X","160602","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0006548550001","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","NHA,MBA,CASPF","","","","","","","","","","","","","","","","" -"1104829373","2","","","UPTOWN PHARMACY INCORPORATED","","","","","","","UPTOWN PHARMACY","3","","","","","","","","200 S OAK ST","","MOUNT CARMEL","PA","178512148","US","5703394953","5703394290","200 S OAK ST","","MOUNT CARMEL","PA","178512148","US","5703394953","5703394290","05/23/2005","08/22/2020","","","","","RADZAI","FRANK","R.","PRESIDENT","5703394953","183500000X","PP410579L","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHARM.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1104829365","2","","","COMMUNITY AMBULANCE SERVICE","","","","","","","","","","","","","","","","PO BOX 811","","SEILING","OK","736630811","US","5809224241","5809224954","106 W 2ND STREET","","SEILING","OK","736630811","US","5809224241","5809224241","05/23/2005","01/06/2020","","","","","NICHOLS","MICHAEL","","DIRECTOR","5809224211","3416L0300X","EMS179","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100818410A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","01/06/2020" -"1922001189","2","","","BINSON'S HOSPITAL SUPPLIES, INC.","","","","","","","BINSON'S PHARMACY I, INC.","3","","","","","","","","26834 LAWRENCE","","CENTER LINE","MI","480151262","US","5867552300","5867552322","26834 LAWRENCE","","CENTER LINE","MI","480151262","US","5867552300","5867552322","05/23/2005","10/26/2015","","","","","BINSON","JAMES","","DIRECTOR OF OPERATIONS","5867552300","332B00000X","","","N","332BC3200X","","","N","332BP3500X","","","N","332BX2000X","","","N","333600000X","5301005166","MI","N","3336C0003X","5301005166","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1648610-01","05","TX","","1943271","05","MI","","540E001840","01","MI","BCBSM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","II","","","","","","","","","","","","","","","","","" -"1831192095","2","","","DEBRA R. BOENDER, DPM, PHD, LLC","","","","","","","","","","","","","","","","26553 MARINERS RD","","CRISFIELD","MD","218172109","US","4104654410","","26553 MARINERS RD","","CRISFIELD","MD","218172109","US","4104654410","","05/23/2005","06/01/2016","","","","","BOENDER","DEBRA","R","SOLE PRACTITIONER/PROPRIETOR","4104654410","213E00000X","01409","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","K4150001","01","MD","CAREFIRST FED AND DC AREA","689BP0/64490301","01","MD","CAREFIRST BC/BS NASCO","DC9138","01","MD","RAILROAD MEDICARE","002216100","05","MD","","002485895002","01","MD","UNITED HEALTHCARE","01409","01","MD","MARYLAND STATE LICENSE","2137828","01","MD","ONE NET","606937400","01","MD","FED WORKERS COMP/DOL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.P.M.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1386647543","2","","","COLORADO PROFESSIONAL MEDICAL, INC","","","","","","","","","","","","","","","","11750 W 2ND PL","ST. ANTHONY MEDICAL PLAZA","LAKEWOOD","CO","802281575","US","3032332001","3032336390","11750 W 2ND PL","ST. ANTHONY MEDICAL PLAZA","LAKEWOOD","CO","802281575","US","3032332001","3032336390","05/23/2005","06/28/2013","","","","","PRICE","SHERYL","S","DIRECTOR OF REIMBURSEMENT","5034938288","335E00000X","05-37672-0000","CO","N","332B00000X","05-37672-0000","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","57472335","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","HANGER INC","","","","","","","","","","","","","","","","","","","","" -"1821091083","2","","","WALTER KNOX MEMORIAL HOSPITAL","","","","","","","VALOR HEALTH - EMMETT MEDICAL CENTER","3","","","","","","","","1102 E LOCUST ST","","EMMETT","ID","836172713","US","2083656004","2083653589","1102 E LOCUST ST","","EMMETT","ID","836172713","US","2083656004","2083653589","05/23/2005","11/30/2019","","","","","TURPEN","BRAD","","CEO","2089993870","261QR1300X","13-8525","ID","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","138525","01","ID","MEDICARE PTAN","807437800","05","ID","","002563800","05","ID","","138525","01","","UNSPECIFIED","000010006204","01","ID","REGENCE BLUE SH OF ID GRP","13-8525","01","ID","RURAL HEALTH CLINIC PTAN","000269700","05","ID","","002563400","05","ID","","8E001","01","ID","BLUE CROSS OF IDAHO GROUP","805187500","05","ID","","806367900","05","ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1730182999","2","","","TURNARE LTD.","","","","","","","B-SCIENTIFIC DIABETES CENTRE","3","","","","","","","","2900 W PARK ROW DR","","PANTEGO","TX","760132049","US","8175488206","8178618110","2900 W PARK ROW DR","","PANTEGO","TX","760132049","US","8175488206","8178618110","05/23/2005","11/29/2007","","","","","BROWN","VICCI","","VICE PRESIDENT","8175488206","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1003819251","2","","","COUNTY OF NORTON","","","","","","","NORTON COUNTY HEALTH DEPARTMENT","3","","","","","","","","801 N NORTON AVE","","NORTON","KS","676541432","US","7858775745","7858775746","801 N NORTON AVE","","NORTON","KS","676541432","US","7858775745","7858775746","05/23/2005","06/12/2014","","","","","FRACK","GINA","","ADMINISTRATOR","7858775745","251K00000X","11-00135","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","629670","01","KS","FIRSTGUARD","012792","01","KS","BLUE CROSS BLUE SHIELD","100089220A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1912900168","2","","","UPMC SOMERSET","","","","","","","SOMERSET HOSPITAL","5","","","","","","","","PO BOX 645819","","PITTSBURGH","PA","152645819","US","8144435040","8144435697","225 S CENTER AVE","","SOMERSET","PA","155012033","US","8144435040","8144435697","05/23/2005","09/10/2020","","","","","RUSH","ANDREW","G","PRESIDENT","8144435000","208600000X","MD429063","PA","N","282N00000X","196901","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","390039","01","PA","MEDICARE OSCAR/CERTIFICATION","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","09/10/2020" -"1730182981","2","","","OVERLOOK VISITING NURSE ASSOCIATION, INC.","","","","","","","OVERLOOK HOME HEALTH, INC.","4","","","","","","","","88 MASONIC HOME ROAD","","CHARLTON","MA","015071394","US","8009907642","8889789808","88 MASONIC HOME ROAD","","CHARLTON","MA","015071394","US","5084342200","8889789803","05/23/2005","10/05/2015","","","","","FULLER","MICHELE","","REGIONAL ADMINISTRATOR","5084342480","251E00000X","","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0607576","05","MA","","22D0974028","01","MA","CLIA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","","","","","","","","","","","","","","","","" -"1386647527","2","","","ORTHOPEDIC SURGERY CENTER OF OC LLC","","","","","","","","","","","","","","","","22 CORPORATE PLAZA #150","","NEWPORT BEACH","CA","92660","US","9495150708","9495154821","22 CORPORATE PLAZA","#150","NEWPORT BEACH","CA","92660","US","9495150708","9495154821","05/23/2005","04/01/2015","","","","","PETRIE","RUSSELL","","CHAIRMAN","9497825038","261QA1903X","060000520","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZZ60061Z","01","CA","BLUE SHIELD","051445","01","CA","BLUE CROSS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","","","","","","","","","","","","","","","","" -"1912900150","2","","","WEST MEDICAL EQUIPMENT","","","","","","","","","","","","","","","","HC 1 BOX 16277","","AGUADILLA","PR","006039367","US","7878303420","7878303420","111 CALLE DOMENECH","","ISABELA","PR","006622938","US","7878303420","7878303420","05/23/2005","08/22/2020","","","","","VELAZQUEZ","EDWIN","","AUTHORIZED REPRESENTATIVE","7878303420","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1821091067","2","","","ABACUS BUSINESS CORPORATION GROUP INC.","","","","","","","AMERICAN BIO-CLINICAL LABORATORIES","3","","","","","","","","2730 N MAIN ST","","LOS ANGELES","CA","900313321","US","3232226688","3232223388","2730 N MAIN ST","","LOS ANGELES","CA","900313321","US","3232226688","3232223388","05/23/2005","12/04/2007","","","","","SOMALI","DAVID","","OWNER","3232226688","291U00000X","104749-60","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","LAB04154F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1326041468","2","","","LIBERTY HEALTHCARE GROUP LLC","","","","","","","LIBERTY HOME CARE VII, LLC","3","","","","","","","","1719 QUARTER RD","","SWANQUARTER","NC","278859616","US","2529263715","2529263702","1719 QUARTER RD","","SWANQUARTER","NC","278859616","US","2529263715","2529263702","05/23/2005","03/17/2018","","","","","ZIZZAMIA","ANTHONY","JOSEPH","PRESIDENT","9103321941","251E00000X","HC0379","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0078G","01","NC","BCBS","3407096","05","NC","","HC0379","01","NC","AGENCY LICENSE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","RN","","","","","","","","","","","","","","","","" -"1235132374","2","","","LAFAYETTE GENERAL MEDICAL CENTER INC HOME HEALTH","","","","","","","","","","","","","","","","201 AUDUBON BLVD","STE 246","LAFAYETTE","LA","705032632","US","3372898137","3372898138","201 AUDUBON BLVD","STE 246","LAFAYETTE","LA","705032608","US","3372898137","3372898138","05/23/2005","12/06/2007","","","","","GOODLY","DEBRA","A","ASSISTANT DIRECTOR OF NURSING","3372898025","251E00000X","163","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1401366","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","LAFAYETTE GENERAL MEDICAL CENTER INC","","MRS.","","R.N.","","","","","","","","","","","","","","","","" -"1558364687","2","","","LONG TERM HEALTH CARE ASSOCIATES INC","","","","","","","VILLA HEALTH CARE CENTER","3","","","","","","","","110 7TH ST N","","MORA","MN","550511110","US","3206791411","3206798350","110 7TH ST N","","MORA","MN","550511110","US","3206791411","3206798350","05/23/2005","11/14/2007","","","","","MONSON","DORIS","J","BUSINESS OFFICE MANAGER","3206791411","314000000X","","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9779VI","01","MN","BLUE CROSS BLUE SHIELD IN","7111804","01","MN","MEDICA INSURANCE","NH0463","01","MN","UCARE INSURANCE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1194728220","2","","","DALLAS COUNTY HOSPITAL DISTRICT","","","","","","","DENTON REHABILITATION & NURSING CENTER","3","","","","","","","","2229 N CARROLL BLVD","","DENTON","TX","762011833","US","9403878508","9408988761","2229 N CARROLL BLVD","","DENTON","TX","762011833","US","9403878508","9408988761","05/23/2005","04/05/2017","","","","","CERISE","FREDERICK","","CEO","2145908006","314000000X","675136","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4799","05","TX","","094511501","05","TX","","000479906","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1548263676","2","","","GREINER FOOT CARE","","","","","","","","","","","","","","","","3713 S HIGH ST","","COLUMBUS","OH","432074011","US","6144929922","","3713 S HIGH ST","","COLUMBUS","OH","432074011","US","6144929922","","05/23/2005","08/22/2020","","","","","GREINER","DAVID","C","PODIATRIST/OWNER","6144929922","213E00000X","36002862","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","DPM","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1629071758","2","","","BRIGHTON COMMUNITY HOSPITAL ASSOCIATION","","","","","","","PLATTE VALLEY MEDICAL CENTER","3","","","","","","","","1600 PRAIRIE CENTER PKWY","","BRIGHTON","CO","806014006","US","3034981600","3034983629","1600 PRAIRIE CENTER PARKWAY","","BRIGHTON","CO","806014006","US","3034981600","3034983629","05/23/2005","12/11/2018","","","","","FADDEN","SEAN","","VP FINANCE","3038135255","3416L0300X","","","N","282N00000X","0557","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","INTEGRITY HEALTH","","","","","","","","","","","","","","","","","","","","" -"1699778720","2","","","HOSPICE CARE OF THE NORTHWEST, LLC.","","","","","","","","","","","","","","","","1N131 COUNTY FARM RD","","WINFIELD","IL","601902000","US","6306826871","6306824492","6130 NE 78TH CT STE C10","","PORTLAND","OR","972184800","US","5035952260","5035952265","05/23/2005","04/05/2018","","","","","LOWE","MATTHEW","","CFO","6306823871","251G00000X","17615691","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","275482","05","OR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","CPA","","","","","","","","","","","","","","","","" -"1689677700","2","","","DANIEL PISTONE, MD PA","","","","","","","PSYCHIATRIC MEDICINE AND COUNSELING CENTER","3","","","","","","","","PO BOX 11647","","ROCK HILL","SC","297311647","US","8033247792","8039817792","200 OAKLAND AVE","STE D","ROCK HILL","SC","297304022","US","8033247779","8039817792","05/23/2005","08/22/2020","","","","","MCJUNKIN","CYNTHIA","D","OFFICE MANAGER","8033247792","104100000X","5558","SC","X","101YP2500X","1260","SC","X","106H00000X","2600","SC","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1306849427","2","","","KARILED MEDICAL EQUIPMENT, CORP","","","","","","","","","","","","","","","","1140 W 50TH ST","STE 306","HIALEAH","FL","330123411","US","3058206801","3058206144","1140 W 50TH ST","STE 306","HIALEAH","FL","330123411","US","3058206801","3058206144","05/23/2005","08/22/2020","","","","","MOREJON","OMAR","","PRESIDENT","3058206801","332B00000X","1312395","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1588667604","2","","","TERRICK PROPERTIES INC","","","","","","","SOUTHERN SPECIALTY REHAB AND NURSING","3","","","","","","","","4320 W 19TH ST","","LUBBOCK","TX","794072407","US","8067951774","8067954652","4320 W 19TH ST","","LUBBOCK","TX","794072407","US","8067951774","8067954652","05/23/2005","07/15/2010","","","","","RUBLE","RICHARD","","PRESIDENT","8067807000","314000000X","113881","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","171058401","05","TX","","001012545","05","TX","","4235","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1467455485","2","","","AMERICAN AMBULANCE SERVICE, INC.","","","","","","","","","","","","","","","","PO BOX 221178","","HOLLYWOOD","FL","330221178","US","9549252000","3058883229","2570 S PARK RD","","HALLANDALE BEACH","FL","330093814","US","9549252000","3058883229","05/23/2005","08/22/2020","","","","","MAYMON","CHARLES","","VICE PRESIDENT","9549252000","341600000X","002582","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1376546390","2","","","JAMESTOWN IMAGING MANAGEMENT LLC","","","","","","","JAMESTOWN OPEN MRI","3","","","","","","","","15 S MAIN ST STE 250","","JAMESTOWN","NY","147016626","US","7166651198","7166652035","779 FAIRMOUNT AVE","","JAMESTOWN","NY","147012608","US","7166651198","7166652035","05/23/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QM1200X","","","N","261QR0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1003819020","2","","","DIANON SYSTEM INC","","","","","","","","","","","","","","","","PO BOX 2240","","BURLINGTON","NC","272162240","US","8002227566","3364361048","133 E DAVIS ST","","BURLINGTON","NC","272155816","US","8003282666","","05/23/2005","06/08/2010","","","","","HAYES","WILLIAM","B","EVP/TREASURER","8002227566","291U00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CFO EVP TREASURER","","","","","","","","","","","","","","","","" -"1639172653","2","","","MOMENTUM PHYSICAL REHABILITATION, LLC","","","","","","","","","","","","","","","","80 S PRESCOTT ST","","MEMPHIS","TN","381114635","US","9012573422","9012573423","80 S PRESCOTT ST","","MEMPHIS","TN","381114635","US","9012573422","9012573423","05/23/2005","11/13/2019","","","","","PESCE","KRISTI","L.","SYSTEMS ADMINISTRATOR","9012573422","225100000X","PT0000001467","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0446657","05","TN","","4004523","01","TN","BLUECROSS BLUESHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1942203955","2","","","LIFESCAN OF LOUISVILLE LLC","","","","","","","LIFESCAN LOUISVILLE","3","","","","","","","","4046 DUTCHMANS LN","","LOUISVILLE","KY","402074712","US","5028937145","5028937147","4046 DUTCHMANS LN","","LOUISVILLE","KY","402074712","US","5028937145","5028937147","05/23/2005","01/11/2012","","","","","DOUGLAS","MICHELLE","","CONTRACT MANAGER","5024031401","261QR0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65933764","05","KY","","7100041020","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1760485775","2","","","OPEN MRI OF CINCINNATI, L.L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-CINCINNATI","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2015058905","2100 SHERMAN AVE","STE 125","CINCINNATI","OH","452122800","US","5135311100","5135311174","05/23/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2433567","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1679576680","2","","","BURHOLME FIRST AID CORPS, INC.","","","","","","","BURHOLME EMERGENCY MEDICAL SERVICE","3","","","","","","","","830 BLEIGH AVE","","PHILADELPHIA","PA","191113016","US","2157254030","2157453997","830 BLEIGH AVE","","PHILADELPHIA","PA","191113016","US","2157254030","2157453997","05/23/2005","05/24/2011","","","","","FARLEY","CAROLE","H","OFFICE MANAGER","2157254030","3416L0300X","03330","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001561803","05","PA","","1005094","01","PA","KEYSTONE MERCY","0000130000","01","PA","KEYSTONE HEALTH PLAN EAST","0062672000","01","PA","BLUE CROSS PERSONAL CHOIC","0016408","01","PA","AETNA US HEALTHCARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1841293859","2","","","ATLANTIC ORTHOPAEDIC GROUP PA","","","","","","","","","","","","","","","","1341 MEDICAL PARK DR","STE 201","MELBOURNE","FL","329013235","US","3217689914","","1341 MEDICAL PARK DR","STE 201","MELBOURNE","FL","329013235","US","3217689914","3217680033","05/23/2005","01/27/2010","","","","","HERMANSDORFER","JOHN","DAVID","PRESIDENT","3219531225","174400000X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1750384764","2","","","CITY OF PERRY","","","","","","","PERRY FIRE DEPARTMENT/AMBULANCE","3","","","","","","","","PO BOX 798","","PERRY","OK","730770798","US","5803364111","5803364065","732 DELAWARE ST","","PERRY","OK","730776425","US","5803364111","5803364065","05/23/2005","08/22/2020","","","","","HINCHEY","PAUL","","DIRECTOR","5803369755","3416L0300X","EMS059","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1932102167","2","","","LABORATORIO CLINICO M. LANDRON, INC.","","","","","","","","","","","","","","","","46 CALLE JOSE JULIAN ACOSTA","","VEGA BAJA","PR","006934467","US","7878583835","7878071916","46 CALLE JOSE JULIAN ACOSTA","","VEGA BAJA","PR","00694","US","7878583835","7878071916","05/23/2005","12/23/2011","","","","","GONZALEZ","CARLOS","ALBERTO","PRESIDENT","7878583208","291U00000X","558","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","M.S.","","","","","","","","","","","","","","","","" -"1750384988","2","","","EAST SUBURBAN SPORTS MEDICINE CENTER, LTD.","","","","","","","","","","","","","","","","4115 WILLIAM PENN HWY","","MURRYSVILLE","PA","156681887","US","7243277099","7243270173","4115 WILLIAM PENN HWY","","MURRYSVILLE","PA","156681887","US","7243277099","7243270173","05/23/2005","08/22/2020","","","","","BONAROTI","JOHN","E.","VICE PRESIDENT","7243277099","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","PT, ATC","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1922001155","2","","","ULTRAPEDICS LTD","","","","","","","","","","","","","","","","355 OVINGTON AVENUE","SUITE 104","BROOKLYN","NY","112091483","US","7187484806","7187484884","355 OVINGTON AVENUE","SUITE 104","BROOKLYN","NY","112091483","US","7187484806","7187484884","05/23/2005","03/24/2009","","","","","RIVERA","TULIO","","OWNER","7187484806","335E00000X","45PO00001600","NJ","N","332B00000X","CP002645","NY","N","335E00000X","CP002645","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00870104","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","CPO","","","","","","","","","","","","","","","","" -"1831192061","2","","","LIFE SUPPLY CORP","","","","","","","","","","","","","","","","280 MOODY ST","","LUDLOW","MA","010561244","US","4135935555","4135939530","280 MOODY ST","","LUDLOW","MA","010561244","US","4135935555","4135939530","05/23/2005","07/09/2019","","","","","MARGESON","JOHN","F","PRESIDENT","4135935555","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","378354","01","MA","BC BS PROVIDER NUMBER","003104429","05","CT","","1537687","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1740283977","2","","","REGIONAL MEDICAL CENTER AT LUBEC","","","","","","","HEALTHWAYS","3","","","","","","","","43 S LUBEC RD","","LUBEC","ME","046523620","US","2077331090","2077334767","43 S LUBEC RD","","LUBEC","ME","046523620","US","2077331090","2077334767","05/23/2005","10/08/2018","","","","","HUGHES","MARILYN","F","CEO","2077335541","261QF0400X","CO1949","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","167910100","05","ME","","4618290001","01","ME","MEDICARE DME","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1912900143","2","","","E STREET ENDOSCOPY LLC","","","","","","","WEST COAST ENDOSCOPY","3","","","","","","","","616 E ST","","CLEARWATER","FL","337563342","US","7274470888","7274470993","616 E ST","","CLEARWATER","FL","337563342","US","7274470888","7274470993","05/23/2005","04/25/2018","","","","","JIRAN","KIMBERLY","","CHIEF ADMINITRATIVE OFFICER","7274470888","261QA1903X","1145","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7337369","01","FL","AETNA","6A5","01","FL","BLUE CROSS BLUE SHIELD","1972392","01","FL","FIRST HEALTH","209367","01","FL","WELLCARE","2894273","01","FL","AETNA HMO","002689600","05","FL","","106705-01","01","FL","CITRUS HEALTHCARE","285376","01","FL","AVMED","490005538","01","FL","RAILROAD MEDICARE","9131340001","01","FL","CIGNA","187028","01","FL","AMERIGROUP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","JR.","","","","","","","","","","","","","","","","","" -"1821091059","2","","","WAYNESBORO HOSPITAL","","","","","","","","","","","","","","","","501 E MAIN ST","","WAYNESBORO","PA","172682353","US","7177654000","7177653447","501 E MAIN ST","","WAYNESBORO","PA","172682353","US","7177654000","7177653447","05/23/2005","03/10/2020","","","","","ODONNELL","PATRICK","","PRESIDENT","7172677106","261Q00000X","","","N","282N00000X","234301","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6491440","01","PA","AETNA","010040744","05","VA","","235019","01","MD","OPTIMUM CHOICE","0413202","05","MT","","02567664","05","NY","","1489","01","PA","HIGHMARK BLUE SHIELD","0171193000","05","WV","","072768701","05","TX","","1007424870006","05","PA","","25331","01","PA","SENIOR PARTNERS","792988","01","MD","MAPSI","000000111264","05","PA","","10368B","05","SC","","3900138","05","NC","","809534","01","MD","PRIORITY PARTNERS JOHN HO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","03/10/2020" -"1467455691","2","","","LIFE EMERGENCY MEDICAL SERVICE, INC.","","","","","","","LIFE EMS","3","","","","","","","","PO BOX 365","","ENID","OK","737020365","US","5802332245","5802420348","302 W MAPLE AVE","","ENID","OK","737013808","US","5802332245","5802420348","05/23/2005","10/16/2007","","","","","JOHNSON","JAMES","S","OWNER/PRESIDENT","5802332245","3416L0300X","EMS075","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","730760393-001","01","OK","BCBS PROVIDER #","P00161773","01","OK","RAILROAD MEDICARE #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1811990047","2","","","NBN INFUSIONS INC","","","","","","","NBN INFUSIONS","3","","","","","","","","2 PIN OAK LN","UNIT 250","CHERRY HILL","NJ","080031632","US","8566690217","8565208067","2 PIN OAK LN","UNIT 250","CHERRY HILL","NJ","080031632","US","8566690217","8565208067","05/23/2005","02/27/2017","","","","","BOETTCHER","JOSEPH","","COO","8566690217","3336H0001X","","","N","3336S0011X","","","N","332BX2000X","","","N","3336C0004X","","","N","3336C0003X","","","N","332BP3500X","","","N","332B00000X","","","N","333600000X","28RS00454200","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001241395004","05","PA","","2055764","01","","PK","000556916","05","DE","","3447600","05","NJ","","4533402","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPH","","","","","","","","","","","","","","","","" -"1639172869","2","","","CUMBERLAND COUNTY HOSPITAL SYSTEM, INC.","","","","","","","CAPE FEAR VALLEY MEDICAL CENTER","3","","","","","","","","PO BOX 788","","FAYETTEVILLE","NC","283020788","US","9106096440","9106095365","1638 OWEN DR","","FAYETTEVILLE","NC","283043424","US","9106096440","9106095365","05/23/2005","07/22/2008","","","","","NAGOWSKI","MICHAEL","","CEO","9106096700","282N00000X","H0213","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3400028","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1265435499","2","","","HOSPICE OF NORTHWEST OHIO","","","","","","","","","","","","","","","","30000 E RIVER RD","","PERRYSBURG","OH","435513429","US","4196614001","4196614015","30000 E RIVER RD","","PERRYSBURG","OH","435513429","US","4196614001","4196614015","05/23/2005","02/08/2016","","","","","SEIBENICK","JUDY","","EXECUTIVE DIRECTOR","4196614001","251G00000X","0100HSP","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1617035","05","MI","","0820099","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1619970845","2","","","BIOSCRIP PHARMACY SERVICES, INC","","","","","","","BIOSCRIP PHARMACY SERVICES","3","","","","","","","","1600 BROADWAY STE 700","","DENVER","CO","802024967","US","7206975200","","5700 PERIMETER DR STE B","","DUBLIN","OH","430173247","US","8002747956","6148506950","05/23/2005","11/25/2019","","","","","BERMAN","CLIFFORD","","SR. VP, GENERAL COUNSEL, SECRETARY","8008796137","261QI0500X","","","N","332B00000X","","","N","3336S0011X","020606300","OH","N","332BP3500X","","","N","333600000X","","","N","3336C0004X","","","N","3336M0002X","020606300","OH","N","3336H0001X","","","Y","251F00000X","","","N","","","","","","","","","","","","","","","","","","","","","","","","","BC2124561","01","","DEA","3653157","01","","NCPDP","PMY.020606300-03","01","OH","PHARMACY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1982607115","2","","","CUMBERLAND COUNTY HOSPITAL SYSTEM, INC","","","","","","","HIGHSMITH-RAINEY SPECIALITY HOSPITAL","3","","","","","","","","150 ROBESON ST","","FAYETTEVILLE","NC","283015570","US","9106096700","","150 ROBESON ST","","FAYETTEVILLE","NC","283015570","US","9106096700","","05/23/2005","07/30/2019","","","","","FISER","JOSEPH","BART","VP","9106155572","282N00000X","H0275","NC","N","284300000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3402014","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1518960749","2","","","WEST SHORE ADVANCED LIFE SUPPORT SERVICES, INC.","","","","","","","WEST SHORE EMS, CARLISLE ALS, CHAMBERSBURG ALS","3","","","","","","","","431 N 21ST ST STE 101","","CAMP HILL","PA","170112202","US","7177632108","7179724753","431 N 21ST ST STE 101","","CAMP HILL","PA","170112202","US","7177632108","7179724753","05/23/2005","07/03/2019","","","","","CHRISTOPHEL","PAUL","N","EXECUTIVE DIRECTOR","7179724725","146N00000X","03060","PA","N","146L00000X","03060","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0011732770001","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1780687913","2","","","COMMUNITY NURSING SERVICES OF NORTH EAST","","","","","","","HOSPICE OF COMMUNITY NURSING SERVICES OF NORTH EAST","5","","","","","","","","7 PARK ST.","","NORTH EAST","PA","16428","US","8147254300","8147254664","7 PARK ST","","NORTH EAST","PA","164281016","US","8147254300","8147254664","05/23/2005","10/06/2020","","","","","KECER-BROWN","TAMMY","RENEE","EXECUTIVE DIRECTOR","8147254300","251G00000X","16451601","PA","N","251E00000X","708905","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1842","01","PA","BLUE CROSS HOSPICE","0010636400005","05","PA","","0740","01","PA","BLUE CROSS HOME HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","MHA","","","","","","","","","","","","","","","","10/06/2020" -"1316940539","2","","","GRAND ISLAND SURGICAL CENTER LLC","","","","","","","","","","","","","","","","PO BOX 5434","","GRAND ISLAND","NE","688025434","US","3083846400","3083986420","3610 RICHMOND CIR","","GRAND ISLAND","NE","688033927","US","3083846400","3083986420","05/23/2005","06/23/2011","","","","","TERRY","KEN","","ADMINISTRATOR","3083846400","261QA1903X","ASC008","NE","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","490004345","01","NE","MEDICARE RR PROVIDER ID","01383","01","NE","BCBS PROVIDER ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1225031446","2","","","SHANNON MEDICAL CENTER","","","","","","","SHANNON HOME HEALTH SERVICES","3","","","","","","","","2030 PULLIAM ST","STE 6","SAN ANGELO","TX","769055157","US","3256597480","3256597497","2030 PULLIAM ST","STE 6","SAN ANGELO","TX","769055157","US","3256597480","3256597497","05/23/2005","04/08/2013","","","","","ZEITLER","IRVIN","","ADMINISTRATOR","3256597480","251E00000X","003134","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4557949","01","TX","AETNA","HH9647","01","TX","BLUE CROSS","023709101","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","JR.","M.D.","","","","","","","","","","","","","","","","" -"1861495087","2","","","MEDFUND LLC","","","","","","","HORIZON TWO LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9519534452","6220 MANATEE AVE W","STE 101","BRADENTON","FL","342092303","US","9417618594","9417613815","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J.","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5210","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2645","01","FL","BCBS PROVIDER NUMBER","3411979","01","","AETNA HMO PROVIDER NUMBER","5079697","01","","AETNA PPO/POS PROV NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1770586992","2","","","ORTHO MEDIC INC","","","","","","","","","","","","","","","","1432 AVE MUNOZ RIVERA","","PONCE","PR","007170202","US","7878430648","7878440085","1432 AVE MUNOZ RIVERA","","PONCE","PR","007170202","US","7878430648","7878440085","05/23/2005","08/22/2020","","","","","BEZARES","MARGIE","","MANAGER","7878430648","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1134122344","2","","","CITY OF ALVA","","","","","","","ALVA AMBULANCE SERVICE","3","","","","","","","","415 4TH ST","","ALVA","OK","737172339","US","5803271340","5803274965","415 4TH ST","","ALVA","OK","737172339","US","5803271340","5803274965","05/23/2005","08/22/2020","","","","","BROOKS","TROY","","DIRECTOR","5803271340","3416L0300X","EMS026","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1952304164","2","","","TOTAL REHAB SERVICES, PA","","","","","","","","","","","","","","","","9600 TWO NOTCH RD","STE 24","COLUMBIA","SC","292231613","US","8037365540","8036990951","9600 TWO NOTCH RD","STE 24","COLUMBIA","SC","292231613","US","8037365540","8036990951","05/23/2005","08/23/2012","","","","","PICOW","MARILYN","RICHMAN","PRESIDENT","8037365540","224Z00000X","0141905","SC","N","2251E1200X","0141905","SC","N","2251G0304X","0141905","SC","N","2251N0400X","0141905","SC","N","2251S0007X","0141905","SC","N","2251X0800X","0141905","SC","N","225200000X","0141905","SC","N","225700000X","0141905","SC","N","225X00000X","0141905","SC","N","225XH1200X","0141905","SC","N","225XN1300X","0141905","SC","N","225XP0200X","0141905","SC","N","235Z00000X","0141905","SC","N","225100000X","0141905","SC","Y","","","","","1055662","01","SC","FIRST HEALTH NETWORK","GP0274","05","SC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","OTRL","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","" -"1215930425","2","","","ANESTHESIOLOGY ASSOCIATES OF AKRON, INC.","","","","","","","","","","","","","","","","224 W EXCHANGE ST","STE 220","AKRON","OH","443021726","US","3303447040","3303441714","224 W EXCHANGE ST","STE 220","AKRON","OH","443021726","US","3303447040","3303441714","05/23/2005","04/12/2018","","","","","FASSNACHT","RENEE","","PRACTICE ADMINISTRATOR","3303446401","367500000X","","","N","207L00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0280040","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1588667794","2","","","CUMBERLAND COUNTY HOSPITAL SYSTEM, INC","","","","","","","CAPE FEAR VALLEY HOME HEALTH","3","","","","","","","","3418 VILLAGE DR","","FAYETTEVILLE","NC","283044552","US","9106096440","9106095365","3418 VILLAGE DR","","FAYETTEVILLE","NC","283044552","US","9106096440","9106095365","05/23/2005","08/22/2020","","","","","PARKS","RICHARD","H","CEO","9106096700","251E00000X","HC0283","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3407127","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1205839412","2","","","GENESEE VASCULAR LABORATORY, INC","","","","","","","","","","","","","","","","919 WESTFALL RD","STE B100","ROCHESTER","NY","146182628","US","5854546610","5854546564","919 WESTFALL RD","STE B100","ROCHESTER","NY","146182628","US","5854546610","5854546564","05/23/2005","05/03/2012","","","","","PENN","THOMAS","E","OWNER","5854546610","246Z00000X","116335","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","03158289","05","NY","","00446337","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1114920329","2","","","WRIGHT STATE PHYSICIANS INC","","","","","","","UNIVERISTY MEDICAL SERVICES ASSOC. INC","4","","","","","","","","725 UNIVERSITY BLVD","","FAIRBORN","OH","453240000","US","9372457100","9372457999","725 UNIVERSITY BLVD","","DAYTON","OH","454350001","US","9372457100","9372457999","05/23/2005","12/03/2019","","","","","PAUL","KIMBERLY","","AUTHORIZED OFFICIAL","9372457125","207N00000X","","","N","207QG0300X","","","N","207R00000X","","","N","207RE0101X","","","N","207RI0200X","","","N","207RR0500X","","","N","207V00000X","","","N","207VX0201X","","","N","207X00000X","","","N","208000000X","","","N","2080P0206X","","","N","208200000X","","","N","2084N0400X","821388","OH","N","208600000X","","","N","207Q00000X","","","Y","1316188147","01","","SURGERY DME SUBGROUP","1295977254","01","","ASC DME NPI","821388","01","OH","BUSINESS LICENSE","0654700009","01","","NSC SUITE 5253","0914443","05","OH","","1306087515","01","","NCS SUBPART PLSTC SURG 6257","3610562","01","","MEDICARE PTAN ASC","10654700002","01","OH","MEDICARE DME PTAN","1417133380","01","","ORTHO DME SUBGROUP","1649447582","01","","ASC SUBGROUP","1205197985","01","OH","SUBPART NPI DME MOB","1215178421","01","","NSC SUBPART VASC SURG","1427299841","01","","NCS SUBPARTSURG ONC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","" -"1558364760","2","","","CLOUD COUNTY HEALTH CENTER, INC","","","","","","","","","","","","","","","","1100 HIGHLAND DR","","CONCORDIA","KS","669013923","US","7852431234","7852438411","1100 HIGHLAND DR","","CONCORDIA","KS","669013923","US","7852431234","7852438411","05/23/2005","06/27/2013","","","","","CAMPBELL","PAM","","ADMINISTRATIVE STAFF","7852431234","282NC0060X","H015001","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100098870A","05","KS","","000023","01","ID","BCBS FACILITY NUMBER","0620240001","01","KS","DURABLE MEDICAL EQUIPMENT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1457354664","2","","","S FISHER & S THOMAS, INC.","","","","","","","GUARDIAN HEALTHCARE","3","","","","","","","","13737 NOEL RD STE 1300","","DALLAS","TX","752401331","US","8552312587","8554815754","117 1ST ST SE","","PARIS","TX","754605803","US","9037379865","9037379954","05/23/2005","10/30/2020","","","","","SHANNON","TREVOR","","VP REVENUE CYCLE","9374694275","251E00000X","012399","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","023823001","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","GUARDIAN HEALTHCARE HOLDINGS, INC","","","","","","","","","","","","","","","","","","","","10/30/2020" -"1275536484","2","","","ALLIANCE ORTHOPEDIC LABS, LLC","","","","","","","TRANSCEND ORTHOTICS & PROSTHETICS","3","","","","","","","","17530 DUGDALE DR","","SOUTH BEND","IN","466351583","US","5742333352","5742881514","134 HOLIDAY CT STE 302","","ANNAPOLIS","MD","21401","US","4102242000","4102245696","05/23/2005","01/21/2019","","","","","LADERER","JEFFREY","","CFO","5742333352","335E00000X","02991470","MD","N","335E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","714501200","05","MD","","027147400","05","DC","","009190139","05","VA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCEND ORTHOTICS & PROSTHETICS, LLC","","","","","","","","","","","","","","","","","","","","" -"1992708101","2","","","HORIZON THREE LLC","","","","","","","","","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","520 D ST","STE B","CLEARWATER","FL","337563362","US","7274669361","7674660612","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5199","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3411968","01","","AETNA HMO PROV NUMBER","5027754","01","","AETNA PPO/POS PROV NUMBER","V2646","01","FL","BCBS PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1710980925","2","","","MD RADIOLOGY SERVICES PSC","","","","","","","CENTRO MEDICO PROFESIONAL DE LA SALUD","3","","","","","","","","HC 02 BOX 9950","","COROZAL","PR","00783","US","7878594443","7877927598","CARRETERA 891 KM 15.1","BO PUEBLO","COROZAL","PR","007839509","US","7878594443","7877927598","05/23/2005","02/01/2008","","","","","BELTRAN","WANDA","M","INTERNAL MEDICINE","7878594443","291U00000X","337","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1982607198","2","","","METROPOLITAN DIAGNOSTIC IMAGING, PC","","","","","","","","","","","","","","","","601 FRANKLIN AVE","","GARDEN CITY","NY","115305795","US","5167470161","5167470166","601 FRANKLIN AVE","","GARDEN CITY","NY","115305795","US","5167470161","5167470166","05/23/2005","09/24/2007","","","","","WINAKOR","ANDREW","","DIRECTOR, MANAGED CARE","5166165000","2085R0202X","29015883","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02491716","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1427051630","2","","","AMERICAN MEDICAL & REHAB COMPANY","","","","","","","","","","","","","","","","5441 BREWSTER ST","","SAN ANTONIO","TX","782335725","US","2109675000","2109675010","5441 BREWSTER ST","","SAN ANTONIO","TX","782335725","US","2109675000","2109675010","05/23/2005","02/07/2012","","","","","KLAUS","GARY","CHRISTOPHER","PRESIDENT","2109675000","332BX2000X","0059505","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","149456902","05","TX","","001012633","05","TX","","149456903","05","TX","","310120800","01","TX","US DEPT OF LABOR","149456901","05","TX","","531699","01","TX","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1821091026","2","","","DES MOINES VALLEY HEALTH AND HUMAN SERVICES","","","","","","","","","","","","","","","","PO BOX 67","","JACKSON","MN","561430067","US","5078472366","5078472881","402 WHITE ST","STE 201","JACKSON","MN","561431572","US","5078472366","5078472881","05/23/2005","07/24/2019","","","","","BEZDICEK","MARY","BETH","FISCAL OFFICER/EXECUTIVE ASSISTANT","5078472366","251K00000X","325717","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","510755500","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1649273848","2","","","NTC SURGERY CENTER, LTD.","","","","","","","","","","","","","","","","1800 OAKLEY SEAVER BLVD","","CLERMONT","FL","347111916","US","3525361703","3525369057","1800 OAKLEY SEAVER BLVD","","CLERMONT","FL","347111916","US","3525361703","3525369057","05/23/2005","08/22/2020","","","","","FLORIN","JORGE","LUIS","ADMINISTRATOR","3525361703","261QA1903X","1206","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5535681","01","FL","CCN NETWORK-PROVIDER #","3640949","01","FL","AETNA HMO-PROVIDER #","106690-01","01","FL","CITRUS HLTHCARE-PROV.#","2020137","01","FL","FIRST HEALTH -PROVIDER #","6G3","01","FL","BCBS PROVIDER NUMBER","74780586","01","FL","AETNA PPO-PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1558364752","2","","","COUNTY OF ELLSWORTH","","","","","","","ELLSWORTH COUNTY HEALTH DEPARTMENT","3","","","","","","","","1603 N AYLWARD AVE","","ELLSWORTH","KS","674392541","US","7854724488","7854724489","1603 N AYLWARD AVE","","ELLSWORTH","KS","674392541","US","7854724488","7854724489","05/23/2005","10/31/2016","","","","","BUEHLER","BRENDA","G","ADMINISTRATOR","7854724488","261QP0905X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","600000842","01","KS","MEDICARE RR PALMETTO","012758","01","KS","BLUECROSS BLUESHIELD","100092210A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","R.N.","","","","","","","","","","","","","","","","" -"1316940323","2","","","MEDFUND LLC","","","","","","","HORIZON ORLANDO TWO LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","9440 W COLONIAL DR","STE 12","OCOEE","FL","347616800","US","4078220999","4078220990","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5198","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105715-01","01","FL","CITRUS HMO","V2481","01","FL","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MISS","","","","","","","","","","","","","","","","","","" -"1659374668","2","","","ST. JOSEPH HOME HEALTH & HOSPICE","","","","","","","","","","","","","","","","PO BOX 239","","TAWAS CITY","MI","487640239","US","9893624611","9893628771","716 GERMAN ST","","TAWAS CITY","MI","487639349","US","9893624611","9893628771","05/23/2005","08/22/2020","","","","","BALFOUR","ANN","M","ADMINISTRATOR","9893624611","251E00000X","=========","MI","X","251G00000X","=========","MI","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0E139","01","MI","BC/BS HOME HEALTH","08737","01","MI","BC/BS HOSPICE","2720637","05","MI","","1554068","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1194728105","2","","","NAVOS","","","","","","","HIGHLINE WEST SEATTLE MENTAL HEALTH","4","","","","","","","","PO BOX 46420","","SEATTLE","WA","981460420","US","2069337214","2069337005","2600 SW HOLDEN ST","","SEATTLE","WA","981263505","US","2069337214","2069337005","05/23/2005","02/24/2020","","","","","JOHNSON","DAVID","MARVIN","CEO","2069337225","101YM0800X","048","WA","N","251B00000X","","WA","N","261QR0405X","","WA","N","323P00000X","","","N","261QM0801X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","ED.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","02/24/2020" -"1861495863","2","","","MODERNHEALTH HOLDINGS INC","","","","","","","MODERN HEALTH PHARMACY","3","","","","","","","","110 E HUNTINGTON DR","","MONROVIA","CA","910163415","US","6269321600","6266055022","110 E HUNTINGTON DR","","MONROVIA","CA","910163415","US","6269321600","6266055022","05/23/2005","04/19/2017","","","","","CHOU","SHANNON","","DIRECTOR, BUSINESS OPERATIONS","6269321721","3336L0003X","PHY51001","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PHA440130","05","CA","","1993198","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1689677684","2","","","DING LEI, A PROFESSIONAL MEDICAL","","","","","","","","","","","","","","","","1661 HANOVER RD","STE 101","CITY OF INDUSTRY","CA","917481796","US","6265814298","6265814398","1661 HANOVER RD","STE 101","CITY OF INDUSTRY","CA","917481796","US","6265814298","6265814398","05/23/2005","12/28/2010","","","","","DING","LEI","","MEDICAL DOCTOR","6265814298","207Q00000X","A75815","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","W15929","01","CA","PTAN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","M.D., PHD","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1942203948","2","","","LUIS F GUZMAN JR","","","","","","","DIABETES EQUIPMENT & REFERRAL SERVICE","3","","","","","","","","5112 KAREN DR","","PANORA","IA","502168747","US","6417554402","6417554491","5112 KAREN DR","","PANORA","IA","502168747","US","6417554402","6417554491","05/23/2005","05/05/2008","","","","","GUZMAN","LUIS","F","OWNER","6417554402","332B00000X","139005884","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","","","","","","","","","","","","","","","","","" -"1760485767","2","","","MINOR EMERGENCY CLINIC","","","","","","","","","","","","","","","","402 S OAKWOOD RD","STE B","ENID","OK","737034945","US","5802341831","5802341834","402 S OAKWOOD RD","STE B","ENID","OK","737034945","US","5802341831","5802341834","05/23/2005","08/22/2020","","","","","PATZKOWSKY","GARY","","PARTNER","5802341831","175L00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.O.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1821091828","2","","","A WOMAN'S TOUCH IN HEALTHCARE, INC.","","","","","","","","","","","","","","","","819 WEST 1ST STREET","","SANFORD","FL","327711123","US","4073213884","4073213885","819 WEST 1ST STREET","","SANFORD","FL","327711123","US","4073213884","4073213885","05/23/2005","08/22/2020","","","","","BALO","DONNA","HARVEL","EXECUTIVE DIRECTOR","3867363211","261QH0100X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","ARNP, CNM, MS","","","","","","","","","","","","","","","","" -"1093718090","2","","","TOTAL FAMILY HEALTHCARE, INC.","","","","","","","","","","","","","","","","4041 W SYLVANIA AVE","STE 5","TOLEDO","OH","436234465","US","4194710240","4194710248","4041 W SYLVANIA AVE","STE 5","TOLEDO","OH","436234465","US","4194710240","4194710248","05/23/2005","08/22/2020","","","","","ASHER","THOMAS","EARL","PRESIDENT","4194710240","207Q00000X","34005718A","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","D.O.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1447253448","2","","","986 INFUSION PHARMACY #1 INC.","","","","","","","","","","","","","","","","4420 E MIRALOMA AVE STE F","","ANAHEIM","CA","928071838","US","7147011192","7147011195","4420 E MIRALOMA AVE STE F","","ANAHEIM","CA","928071838","US","7147011192","7147011195","05/23/2005","08/12/2019","","","","","THAI","DANNY","","CEO","7147011192","333600000X","PHY40971","CA","N","3336H0001X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","PHARM.D","","","","","","","","","","","","","","","","" -"1063415057","2","","","SHINGALUZ INC","","","","","","","","","","","","","","","","511 JACKSON KELLER RD","","SAN ANTONIO","TX","782167120","US","2109490600","2107645471","511 JACKSON KELLER RD","","SAN ANTONIO","TX","782167120","US","2109490600","2107645471","05/23/2005","02/22/2018","","","","","CUENTAS","ENRIQUE","","ADMINISTRATOR","2109490900","332B00000X","58074","TX","N","335E00000X","101574","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","154577401","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN, CPED","","","","","","","","","","","","","","","","" -"1881697878","2","","","YOAKUM COMMUNITY HOSPITAL","","","","","","","","","","","","","","","","1200 CARL RAMERT DR","","YOAKUM","TX","779954868","US","3612932321","3612933490","1200 CARL RAMERT DR","","YOAKUM","TX","779954868","US","3612932321","3612933538","05/23/2005","08/15/2013","","","","","BARBER","KAREN","","CEO","3612932321","282NC0060X","000023","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","11237202","01","TX","AMERIGROUP","451346","01","TX","WORKERCOMP","500782","01","TX","MHHNP","112673204","05","TX","","112673202","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","","","","","","","","","","","","","","","","" -"1932102118","2","","","COASTAL MED TECH INC","","","","","","","","","","","","","","","","25 DOUGLAS HIGHWAY","","ELLSWORTH","ME","04605","US","2076672508","2076673099","25 DOUGLAS HWY","","ELLSWORTH","ME","046050791","US","8005441113","2076673099","05/23/2005","11/16/2016","","","","","SEVEY","SHANNON","E","COMPLIANCE OFFICER","2078487152","332BX2000X","227424","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","118860000","05","ME","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1750384939","2","","","VNA HEALTH AT HOME, INC","","","","","","","","","","","","","","","","27 SIEMON COMPANY DR","STE 101","WATERTOWN","CT","067952654","US","","","27 SIEMON COMPANY DR","STE 101","WATERTOWN","CT","067952654","US","8602747531","","05/23/2005","08/22/2020","","","","","GARRISON","ANNMARIE","","EXECUTIVE DIRECTOR/ADMINISTRATOR","8602747531","251E00000X","C805710","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1578566758","2","","","ADVANCED AMBULATORY SURGICAL CARE, LP","","","","","","","ADVANCED SURGICAL CARE","3","","","","","","","","10448 OLD OLIVE STREET RD","STE 100","CREVE COEUR","MO","631415927","US","3147438091","3147438092","10448 OLD OLIVE STREET RD","STE 100","CREVE COEUR","MO","63141","US","3147438091","3147438092","05/23/2005","05/31/2018","","","","","MORAN","JENETHA","D","AUTHORIZED OFFICIAL","9727633893","261QA1903X","178","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","270644","01","","GHP","192542","01","","BC/BS","571197738","01","MO","TRICARE","P00181748","01","MO","RR MEDICARE","507008902","05","MO","","688642","01","","HEALTHLINK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1912900192","2","","","FOX VALLEY DIALYSIS LTD","","","","","","","","","","","","","","","","1300 WATERFORD DR","LOWR LEVEL","AURORA","IL","605045502","US","6308511206","","1300 WATERFORD DR","","AURORA","IL","605045502","US","6302361300","","05/23/2005","08/22/2020","","","","","GANONG","CALVIN","","CHIEF OPERATING OFFICER","6308511206","261QE0700X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","644","01","IL","BLUE CROSS PROVIDER NUMBE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1558364737","2","","","MEDFUND LLC","","","","","","","HORIZON JACKSONVILLE SOUTH LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","1566 KINGSLEY AVE","","ORANGE PARK","FL","320734511","US","9042782128","9042782129","05/23/2005","08/17/2018","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5207","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2398","01","FL","BCBS PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1376546556","2","","","TOWN OF CASHION","","","","","","","CASHION FIRE & RESCUE","3","","","","","","","","PO BOX 27","","CASHION","OK","730160027","US","4054332243","4054332685","102 S. MAIN","","CASHION","OK","73016","US","4054332243","4054332685","05/23/2005","06/16/2010","","","","","COUNTRYMAN","CHARLES","ANDREW","DIRECTOR","4053680299","3416L0300X","EMS175","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00170020","01","OK","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","","","","","","","","","","","","","","","","","" -"1639172810","2","","","THE OTIS R BOWEN CENTER FOR HUMAN SERVICES INC","","","","","","","OTIS R BOWEN CENTER","3","","","","","","","","850 N HARRISON ST","ATTN: ANNE LAWSON - PERFORMANCE IMPROVEMENT","WARSAW","IN","465803163","US","5742677169","5742693995","850 N HARRISON ST","","WARSAW","IN","465803163","US","5742677169","5742693995","05/23/2005","12/04/2012","","","","","BAUMGARTNER","JAY","M","SR VP FISCAL DIVISION","5742677169","283Q00000X","4231PIP","IN","N","261QM0855X","4230CMHC","IN","N","261QM0850X","4230CMHC","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100156770","05","IN","","452270","01","IN","MEDICARE","452280","01","IN","MEDICARE","CH1896","01","IN","RAILROAD MEDICARE","000000202972","01","IN","ANTHEM BLUE CROSS BLUE SHIELD","169430","01","IN","MEDICARE","CB5225","01","IN","RAILROAD MEDICARE","100273680A","05","IN","","100428290A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1366445546","2","","","MULTICULTURAL COMMUNITY SERVICES OF THE PIONEER VALLEY INC.","","","","","","","","","","","","","","","","96 INDUSTRY AVE","SUITE 1","SPRINGFIELD","MA","011043241","US","4137827745","4134390373","96 INDUSTRY AVE","SUITE 1","SPRINGFIELD","MA","011043241","US","4137827745","4134390373","05/23/2005","08/22/2020","","","","","CONLON","PAUL","","EXECUTIVE DIRECTOR","4137822500","251E00000X","=========","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0600032","05","MA","","3755369","01","MA","AETNA","Q00643","01","MA","BLUE CROSS BLUE SHIELD","000000027802","01","MA","BMC HEALTHNET","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1538162714","2","","","FLORIDA NEUROLOGY PA","","","","","","","","","","","","","","","","755 STIRLING CENTER PLACE","","LAKE MARY","FL","32746","US","4073331718","4073331633","755 STIRLING CENTER PLACE","","LAKE MARY","FL","32746","US","4073331718","4073331633","05/23/2005","03/24/2011","","","","","SHANMUGHAM","SAMPATHKUMAR","","PRESIDENT","4073331718","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","376958500","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1447253620","2","","","COUNTY OF WARREN","","","","","","","WARREN COUNTY HOME HEALTH AGENCY","3","","","","","","","","544 W RIDGEWAY ST","","WARRENTON","NC","275891716","US","2522574081","","544 W RIDGEWAY ST","","WARRENTON","NC","275891716","US","2522574081","","05/23/2005","04/19/2012","","","","","JOHNS","LINDA","","HOME HEALTH SUPERVISOR","2522574081","251E00000X","HC0341","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0078B","01","NC","BLUE CROSS/BLUE SHIELD","3407119","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF WARREN","","MS.","","RN","","","","","","","","","","","","","","","","" -"1992708176","2","","","COLORADO WEST REGIONAL MENTAL HEALTH, INC.","","","","","","","MIND SPRINGS HEALTH, INC.","3","","","","","","","","715 HORIZON DR","STE 225","GRAND JUNCTION","CO","815068700","US","9706837107","9706837167","515 28 3/4 RD","","GRAND JUNCTION","CO","81501","US","9702416023","","05/23/2005","05/17/2019","","","","","RAGGIO","SHARON","M","CEO","9702416023","251S00000X","","","N","261QM0801X","15D609","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COLORADO WEST REGIONAL MENTAL HEALTH, INC.","","","","","","","","","","","","","","","","","","","","" -"1427051697","2","","","HILLCREST-MAYFIELD EYE ASSOCIATES, INC.","","","","","","","","","","","","","","","","6770 MAYFIELD RD","STE 338","MAYFIELD HTS","OH","441242299","US","4404424330","4404424695","6770 MAYFIELD RD","STE 338","MAYFIELD HTS","OH","441242299","US","4404424330","4404424695","05/23/2005","03/01/2013","","","","","SHIN","Y.","VICTOR","PRESIDENT","4404424330","207W00000X","580800","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1245233410","2","","","SURGICAL SPECIALTY CENTER OF NORTHEASTERN PENNSYLVANIA, LLC","","","","","","","","","","","","","","","","190 WELLES ST","","FORTY FORT","PA","187044968","US","5703317615","5703317614","190 WELLES ST","","FORTY FORT","PA","187044968","US","5703317615","5703317614","05/23/2005","04/20/2008","","","","","BINGHAM","JULIE","","BUSINESS MANAGER","5703317615","261QA1903X","148601","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2139542","01","PA","UNITED HEALTHCARE","991073","01","PA","BLUE CROSS PROVIDER #","0198","01","PA","FREEDOM BLUE","0018825790001","05","PA","","49005260","01","PA","MEDICARE RAILROAD","A2738987","01","PA","OXFORD PROVIDER #","077861","01","PA","AMERIHEALTH PROVIDER #","127866","01","PA","MED PLUS/3 RIVERS PROVIDE","814135","01","PA","FIRST PRIORITY HEALTH PRO","68929","01","PA","GEISINGER PROVIDER #","IY0345","01","PA","HEALTH NET PROVIDER #","2670019","01","PA","AETNA PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1508869777","2","","","REHABTECH SUPPLY CORPORATION","","","","","","","","","","","","","","","","10216 WERCH DR STE 108-109","","WOODRIDGE","IL","605174982","US","6307548080","6307548085","10216 WERCH DR STE 108-109","","WOODRIDGE","IL","605174982","US","6307548080","6307548085","05/23/2005","08/22/2020","","","","","FARKAS","CHARLES","BOWKER","PRESIDENT","6307548080","332B00000X","","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1417950684","2","","","PEDIATRIC PROFESSIONAL ASSOCIATES, P.A.","","","","","","","","","","","","","","","","7001 SW 87TH AVE","","MIAMI","FL","331732505","US","3052718222","3052746316","7001 SW 87TH AVE","","MIAMI","FL","331732505","US","3052718222","3052746316","05/23/2005","08/22/2020","","","","","SIMOVITCH","HARVEY","","PRESIDENT","3052718222","208000000X","0319624","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1053314229","2","","","MEDFUND LLC","","","","","","","HORIZON DEERFIELD LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","1890 W HILLSBORO BLVD","","DEERFIELD BEACH","FL","334421417","US","9544298381","9544292705","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5211","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2649","01","FL","BCBS PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1609879857","2","","","HEALTHCARE PROVIDER INC.","","","","","","","","","","","","","","","","PO BOX 362186","","SAN JUAN","PR","009362186","US","7872748110","7872748123","171 AVE WINSTON CHURCHILL","","SAN JUAN","PR","009266012","US","7872748110","7872748123","05/23/2005","08/22/2020","","","","","TORRES","KELVIN","","VP.","7876301403","332B00000X","=========","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1245233493","2","","","MCLEAN COUNTY CENTER FOR HUMAN SERVICES, INC","","","","","","","MCLEAN COUNTY CENTER FOR H S","5","","","","","","","","108 W MARKET ST","","BLOOMINGTON","IL","617013918","US","3098275351","3098296808","108 W MARKET ST","","BLOOMINGTON","IL","617013918","US","3098275351","3098296808","05/23/2005","10/21/2008","","","","","BARR","THOMAS","","EXECUTIVE DIRECTOR","3098275351","101YM0800X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","LCPC","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1881697035","2","","","BRANDON MEDICAL WELLNESS CENTER","","","","","","","PHYSICAL MEDICINE & REHABILITATION","3","","","","","","","","807 S PARSONS AVE","","BRANDON","FL","335116063","US","8136848141","8136891140","807 S PARSONS AVE","","BRANDON","FL","335116063","US","8136848141","8136891140","05/23/2005","01/11/2011","","","","","MORGAN","JOHN","S","OWNER","8136848141","111N00000X","CH0005360","FL","N","111N00000X","CH9344","FL","N","207Q00000X","ME46540","FL","N","225X00000X","OT9814","FL","N","111N00000X","","","N","111N00000X","CH0005666","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","DC","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","" -"1326041575","2","","","MEDFUND LLC","","","","","","","HORIZON JACKSONVILLE NORTH LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","6349 BEACH BLVD","STE 1A","JACKSONVILLE","FL","322162756","US","9047223939","9047223922","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5206","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2379","01","FL","BCBS PROVIDER #","105715-14","01","FL","CITRUS HMO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1235132481","2","","","CYPRESS AMBULATORY SURGERY CENTER","","","","","","","","","","","","","","","","PO BOX 5435","","SAN LUIS OBISPO","CA","934035435","US","8057828132","8055978350","1300 E CYPRESS ST","STE E1","SANTA MARIA","CA","934544736","US","8057828132","8055978350","05/23/2005","10/25/2007","","","","","GRIBANOVA","INNA","","MANAGER","8057828132","261QA1903X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MISS","","","","","","","","","","","","","","","","","","" -"1962405118","2","","","LITTLE BIRD NURSING HOME","","","","","","","","","","","","","","","","PO BOX 608","","WEATHERFORD","OK","730960608","US","5807723993","5807741032","801 N WASHINGTON ST","","WEATHERFORD","OK","730964032","US","5807723993","","05/23/2005","08/22/2020","","","","","BISHOP","LORENE","","ADMINISTRATOR/OWNER","5807723993","313M00000X","3700379","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3700379","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1780687939","2","","","AGAPE THERAPY CLINIC PC","","","","","","","AGAPE THERAPY","3","","","","","","","","211 W 6TH ST","","CEDAR FALLS","IA","506132859","US","3192773166","3192664846","211 W 6TH ST","","CEDAR FALLS","IA","506132859","US","3192773166","3192664846","05/23/2005","03/30/2017","","","","","TRUEX","JOAN","","BUSINESS MANAGER","3192773166","225X00000X","","","N","225100000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","139650800","01","IA","U.S. DEPTARTMENT OF LABOR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1407859655","2","","","DELNOR-COMMUNITY HOSPITAL","","","","","","","","","","","","","","","","300 RANDALL RD","","GENEVA","IL","601344200","US","6302083000","","300 RANDALL RD","","GENEVA","IL","601344200","US","6302083000","","05/23/2005","08/22/2020","","","","","KITTOE","MICHAEL","","VP/CHIEF FINANCIAL OFFICER","6302084172","282N00000X","0004333","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","009","01","IL","ILLINOIS BLUE CROSS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1689677833","2","","","COUNTY OF GRANT","","","","","","","GRANT MENTAL HEALTHCARE","3","","","","","","","","840 E PLUM ST","","MOSES LAKE","WA","988371874","US","5097659239","5097654124","840 E PLUM ST","","MOSES LAKE","WA","988371874","US","5097659239","5097654124","05/23/2005","12/30/2014","","","","","ALLISON","LEROY","","EXECUTIVE DIRECTOR","5097659239","101YM0800X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1578566725","2","","","ST. ANNE HOME","","","","","","","","","","","","","","","","685 ANGELA DR","","GREENSBURG","PA","156012655","US","7248376070","7248376099","685 ANGELA DR","","GREENSBURG","PA","156012655","US","7248376070","7248376099","05/23/2005","03/31/2008","","","","","FIEDOR","SR. BERNICE","MARIE","ADMINISTRATOR","7248376070","314000000X","190202","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0007552950001","05","PA","","0217","01","PA","HIGHMARK PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","NHA","","","","","","","","","","","","","","","","" -"1396748547","2","","","GALILEO SURGERY CENTER, LP","","","","","","","","","","","","","","","","PO BOX 5458","","SAN LUIS OBISPO","CA","934035458","US","8057864878","8055978350","1001 FOOTHILL BLVD","","SAN LUIS OBISPO","CA","934051815","US","8057828222","8057828220","05/23/2005","08/12/2014","","","","","PILCH","BORIS","","MANAGING PARTNER","8055978370","261QA1903X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","","","","","","","","","","","","","","","","" -"1417950650","2","","","KANSAS SPINE & SPECIALTY HOSPITAL, L.L.C.","","","","","","","","","","","","","","","","3333 N WEBB RD","","WICHITA","KS","672268123","US","3164625000","3164625268","3333 N WEBB RD","","WICHITA","KS","672268123","US","3164625000","3164625268","05/23/2005","03/27/2020","","","","","SCHMITT","THOMAS","","CHIEF EXECUTIVE OFFICER","3164625321","282N00000X","H087012","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200257840A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","03/27/2020" -"1053314294","2","","","VANCE FAMILY LLP","","","","","","","MEDCARE MEDICAL SERVICE","3","","","","","","","","920 BLUEBONNET DR","STE 101","IRVING","TX","750604501","US","9725549300","9725549302","920 BLUEBONNET DR","STE 101","IRVING","TX","750604501","US","9725549300","9725549302","05/23/2005","08/22/2020","","","","","THOMAS","JENNIFER","","BUSINESS DEVELOPER","9725549300","3416L0300X","057102","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","AMB640","01","TX","BCBS PROVIDER NUMBER","057102","01","TX","TDH LICENSE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1871596015","2","","","BEACHES OPEN MRI OF BOYNTON BEACH LLC","","","","","","","MRI SPECIALISTS","3","","","","","","","","1700 W WOOLBRIGHT RD","STE 3","BOYNTON BEACH","FL","334266346","US","5617323909","5617322966","1700 W WOOLBRIGHT RD","STE 3","BOYNTON BEACH","FL","334266346","US","5617323909","5617322966","05/23/2005","03/05/2012","","","","","BAJAKIAN","RICHARD","L","PRESIDENT","5617323909","174400000X","2543","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","264695100","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1134122377","2","","","DIRECTIONS FOR MENTAL HEALTH INC","","","","","","","","","","","","","","","","1437 S. BELCHER ROAD","DIRECTIONS FOR MENTAL HEALTH, INC.","CLEARWATER","FL","337642829","US","7275244464","7275244474","1437 S. BELCHER ROAD","DIRECTIONS FOR MENTAL HEALTH, INC.","CLEARWATER","FL","337642829","US","7275244464","7275244474","05/23/2005","06/28/2019","","","","","LOTT","APRIL","R","PRESIDENT & CEO","7275244464","261QC1500X","","","N","261QM0801X","06-52-AD-271501","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","060275201","05","FL","","060275200","05","FL","","060275211","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","LCSW","","","","","","","","","","","","","","","","" -"1043213283","2","","","JEFFERSON COUNTY","","","","","","","","","","","","","","","","531 MEADE ST","","WATERTOWN","NY","136011225","US","3157863770","3157863761","531 MEADE ST","","WATERTOWN","NY","136011225","US","3157863770","3157863761","05/23/2005","08/12/2015","","","","","HALL","GINGER","B","PUBLIC HEALTH DIRECTOR","3157863715","251E00000X","2201600","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00583615","05","NY","","00895487","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","BSN, MPH","","","","","","","","","","","","","","","","" -"1942203187","2","","","AETNA SPECIALTY PHARMACY, LLC","","","","","","","","","","","","","","","","503 SUNPORT LANE","","ORLANDO","FL","328097874","US","4075136400","8663292779","503 SUNPORT LANE","","ORLANDO","FL","328097874","US","4075136400","8663292779","05/23/2005","05/19/2014","","","","","CARNEY","JEAN","R.","SR. PHARMACY OPS MGR","4075136495","3336H0001X","PH21035","FL","N","3336S0011X","PH21035","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200369680A","05","KS","","7446672","01","","AETNA HEALTHCARE DIEM CLAIM","0215059","05","MT","","0720789","05","IA","","057738300","05","MN","","3726379","01","","AETNA HEALTHCARE HMO CLMS","200808960A","05","IN","","030961300","05","FL","","1016502540001","05","PA","","1714655","01","","AETNA HEALTHCARE","38457750","05","NM","","7F1035","05","SC","","PH575FL","05","AK","","200077510A","05","OK","","411068400","05","MD","","035123","05","AZ","","1942203187","05","VA","","3726379","01","","AETNA HEALTHCARE HMO CLAIMS","582713","05","HI","","7446672","01","","AETNA HEALTHCARE DIEM CLM","100508643","05","NV","","35123","05","AZ","","432182200","05","ME","","6029037","05","WA","","807415000","05","ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1104829290","2","","","LAVERNE AMBULANCE SERVICE","","","","","","","LAVERNE EMS","5","","","","","","","","PO BOX 902","","LAVERNE","OK","738480902","US","5809213930","5809213938","115 N OHIO","","LAVERNE","OK","73848","US","5809213930","5809213938","05/23/2005","03/25/2009","","","","","HEINZ","PAULINE","","DIRECTOR","5809213930","3416L0300X","EMS118","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00151922","01","OK","RAILROAD MEDICARE","100818790A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1922001015","2","","","TREGO COUNTY LEMKE MEMORIAL HOSPITAL","","","","","","","","","","","","","","","","320 N 13TH ST","","WAKEENEY","KS","676722002","US","7857432182","7857436317","320 N 13TH ST","","WAKEENEY","KS","676722002","US","7857432182","7857436317","05/23/2005","04/01/2013","","","","","JENSEN","GAIL","A","CFO","7857432182","282NC0060X","H098001","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000230","01","KS","BCBS","100099540A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1740283837","2","","","WESTERN MARYLAND SURGICENTER LLP","","","","","","","","","","","","","","","","925 BISHOP WALSH RD","STE 2","CUMBERLAND","MD","215021845","US","3017220708","3017773135","925 BISHOP WALSH RD","STE 2","CUMBERLAND","MD","215021845","US","3017220708","3017773135","05/23/2005","08/21/2014","","","","","STRAUSS","HOWARD","ROBERT","PRESIDENT","3017778227","261QA1903X","A1198","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","241851","01","MD","MAMSI/MDIPA","583732","01","MD","RENDERING BC/BS CARE 1ST","021CWE","01","MD","CAREFIRST GROUP","21C-0001198","01","MD","CMS (HCFA)","331-331-000","05","MD","","PT 9-7-1-02","01","MD","BLUE CHOICE (GHMSI)","490002966","01","MD","MEDICARE GBA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","","","","","","","","","","","","","","","","" -"1003819194","2","","","ADVANCED INFUSION SYSTEMS, INC.","","","","","","","ADVANCED INFUSION SYSTEMS","3","","","","","","","","3802 CORPOREX PARK DR","STE 200","TAMPA","FL","336191125","US","8133186039","","145 E DANA ST","SUITE A","MOUNTAIN VIEW","CA","940411507","US","6509616355","6509695653","05/23/2005","01/18/2013","","","","","CANERIS","THOMAS","A.","VICE PRESIDENT","5026277100","332BP3500X","PHY 48702","CA","N","333600000X","PHY 48702","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PHA406770","05","CA","","1003819194","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","PHARMERICA CORPORATION","","MR.","","","","","","","","","","","","","","","","","","" -"1821091919","2","","","STONEBRIGE DISTRIBUTION INC.","","","","","","","","","","","","","","","","661 HILLSIDE RD","SUITE B","PELHAM","NY","108032723","US","9147389400","9147383496","661 HILLSIDE RD","SUITE B","PELHAM","NY","108032723","US","9147389400","9147383496","05/23/2005","08/22/2020","","","","","PEREG","ROSE","","CEO","9147389400","332BP3500X","","","X","332B00000X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","01728454","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1730182825","2","","","MEDFUND LLC","","","","","","","HORIZON KISSIMMEE LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","810 N JOHN YOUNG PKWY","","KISSIMMEE","FL","347414912","US","2395736333","4078478749","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5196","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2614","01","FL","BCBS PROVIDER #","105715-02","01","FL","CITRUS HMO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1104820430","2","","","NATIONAL GENETICS INSTITUTE","","","","","","","","","","","","","","","","PO BOX 2240","","BURLINGTON","NC","272162240","US","8002227566","3364361048","133 E DAVIS ST","","BURLINGTON","NC","272155816","US","8002227566","","05/23/2005","08/22/2020","","","","","ELINGBURG","WESLEY","R","CFO/EVP/TREASURER","8002227566","291U00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1306849534","2","","","JOINT TECHNOLOGY INC","","","","","","","","","","","","","","","","919 S BRYANT AVE","","EDMOND","OK","730345743","US","4053486457","4053486871","919 S BRYANT AVE","","EDMOND","OK","730345743","US","4053486457","4053486871","05/23/2005","07/05/2019","","","","","VERNER","JENNIFER","D","EXECUTIVE ASSISTANT","4053486457","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","927014","05","AZ","","0574202","05","IA","","1478857","05","LA","","43585060","05","NM","","10025124400","05","NE","","144928201","05","TX","","100811640A","05","OK","","1435997","05","AR","","009990865","05","AL","","626124101","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1215930441","2","","","SKIFF MEDICAL CENTER","","","","","","","","","","","","","","","","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","05/23/2005","08/15/2014","","","","","ALTMAN","BRETT","A","CEO","6417921273","282N00000X","500041H","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0600320","05","IA","","60032","01","IA","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1497758619","2","","","CARRIAGE HOUSE MANOR INC","","","","","","","","","","","","","","","","210 PIPELINE RD","","SULPHUR SPRINGS","TX","754822131","US","9038853589","9034392038","210 PIPELINE RD","","SULPHUR SPRINGS","TX","754822131","US","9038853589","9034392038","05/23/2005","08/22/2020","","","","","TANTON","ARVIS","","ADMINISTRATOR","9038853589","3140N1450X","112986","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","675181","01","TX","MEDICARE OSCAR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1669475885","2","","","NORTH TEXAS REHABILITATION CENTER, INC.","","","","","","","NORTH TEXAS REHABILITATION CENTER","3","","","","","","","","1005 MIDWESTERN PKWY","","WICHITA FALLS","TX","763022211","US","9403220771","9407664943","1005 MIDWESTERN PKWY","","WICHITA FALLS","TX","763022211","US","9403220771","9407664943","05/23/2005","10/31/2011","","","","","CASTLES","MIKE","","PRESIDENT","9403220771","225X00000X","508250000","TX","N","235Z00000X","102098","TX","N","101YP2500X","TX62963","TX","N","225100000X","604700000","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","111408401","05","TX","","111408403","05","TX","","111408402","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","" -"1922001148","2","","","DOVER MANOR, INC.","","","","","","","","","","","","","","","","PO BOX 529","","GREENVILLE","KY","423450529","US","2703382401","2703382405","112 DOVER DR","","GEORGETOWN","KY","403249741","US","5028639529","","05/23/2005","08/18/2008","","","","","MCINTOSH","DEBORAH","J","ASSISTANT CONTROLLER","2703382401","332B00000X","90003377","KY","N","314000000X","100480","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12501755","05","KY","","90003377","05","KY","","000000271318","01","KY","ANTHEM BLUE CROSS","000000316058","01","KY","ANTHEM BLUE CROSS PART B","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1831192053","2","","","MAPLE MANOR NURSING HOME","","","","","","","","","","","","","","","","1875 19TH ST NW","","ROCHESTER","MN","559011633","US","5072829449","5072870552","1875 19TH ST NW","","ROCHESTER","MN","559011633","US","5072829449","5072870552","05/23/2005","08/22/2020","","","","","BLUM","PATRICK","A","ADMINISTRATOR","5072829449","314000000X","00916","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1568465789","2","","","JOHN T. VOYLES AND OR HEATHER K. VOYLES","","","","","","","SOUTH EAST IOWA PHYSICAL THERAPY","3","","","","","","","","SOUTH EAST IOWA PHYSICAL THERAPY","115 S WASHINGTON ST","OTTUMWA","IA","525012531","US","6416828171","6416829054","SOUTH EAST IOWA PHYSICAL THERAPY","115 S WASHINGTON ST","OTTUMWA","IA","525012531","US","6416828171","6416829054","05/23/2005","06/21/2018","","","","","VOYLES","HEATHER","KATHLEEN","OWNER AND P.T.","6416828171","225100000X","02109","IA","N","225100000X","02520","IA","N","225100000X","02125","IA","N","225200000X","00279","IA","N","225200000X","001368","IA","N","225200000X","00376","IA","N","225100000X","04012","IA","Y","225100000X","02941","IA","N","225100000X","078601","IA","N","","","","","","","","","","","","","","","","","","","","","","","","","6-6534","01","IA","BCBS GROUP PROVIDER NUMBE","0665349","05","IA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","P.T.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","" -"1386647501","2","","","HOME CARE PROFESSIONAL SERVICES, INC.","","","","","","","","","","","","","","","","400 MEDICAL CENTER BLVD","STE 201","WEBSTER","TX","775984227","US","2813322498","2813325669","400 MEDICAL CENTER BLVD","STE 201","WEBSTER","TX","775984227","US","2813322498","2813325669","05/23/2005","08/22/2020","","","","","NEALE","JEFF","","ADMINISTRATOR","2813322498","251E00000X","002174","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HH9298","01","TX","BCBS PROVIDER NUMBER","024590401","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1003819228","2","","","HALLMARK GROUP, INC.","","","","","","","HALLMARK HOME HEALTH CARE","3","","","","","","","","113 MALL DR","","DANVILLE","VA","245404069","US","4347993938","4347973217","113 MALL DR","","DANVILLE","VA","245404069","US","4347993938","4347973217","05/23/2005","03/16/2010","","","","","SCOLPINI","BONNIE","C.","ADMINISTRATOR","4347993938","251E00000X","497462","VA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4974620","05","VA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","","","","","","","","","","","","","","","","" -"1043213275","2","","","BROCKTON VISITING NURSE ASSOCIATION","","","","","","","","","","","","","","","","500 BELMONT ST","STE 200","BROCKTON","MA","023014985","US","","","500 BELMONT ST","STE 200","BROCKTON","MA","023014985","US","5085872121","","05/23/2005","02/10/2010","","","","","PAVASARIS","BEVERLY","","PRESIDENT","5088945284","251E00000X","227006","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0007361","01","MA","NHP PROVIDER #","800555","01","MA","TUFTS PROVIDER #","0409668","01","MA","CIGNA HEALTH PLAN PROV #","60-00143","01","MA","UNITED HEALTCARE PROV #","0600717","05","MA","","120L18","01","MA","BCBSMA PROVIDER #","4506370","01","","AETNA PROVIDER #","000000005536","01","MA","BMC HEALTHNET PROVIDER #","700045","01","MA","HARVARD HEATLHCARE PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1902809122","2","","","PRIMECARE AT TWIN LAKES LLC","","","","","","","","","","","","","","","","1890 LPGA BLVD","SUITE 130","DAYTONA BEACH","FL","321177130","US","3862742212","3862741508","1890 LPGA BLVD","STE 130","DAYTONA BEACH","FL","321177130","US","3862742212","3862741508","05/23/2005","05/06/2011","","","","","DUVA","CHARLES","","PRESIDENT","3862747800","261QU0200X","ME47294","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","77984","01","FL","BC/BS OF FL PA GROUP","DC0901","01","FL","RAILROAD MEDICARE GROUP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","","","","","","","","","","","","","","","","" -"1639172851","2","","","MEMPHIS RADIOLOGICAL, P.C.","","","","","","","","","","","","","","","","DEPT 24 PO BOX 1000","","MEMPHIS","TN","38148","US","9016852696","4238261290","1265 UNION AVE","","MEMPHIS","TN","381043415","US","9016852696","4238261290","05/23/2005","09/23/2019","","","","","HANSEN","DALE","E","PRESIDENT","9016852696","2085R0202X","=========","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3370135","05","TN","","CC0445","01","TN","RR MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","JR.","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1457354672","2","","","DLP CONEMAUGH MEMORIAL MEDICAL CENTER LLC","","","","","","","CONEMAUGH HOME HEALTH","3","","","","","","","","330 SEVEN SPRINGS WAY","","BRENTWOOD","TN","370274536","US","6159207000","6159208913","315 LOCUST ST","FIRST FLOOR SUITE","JOHNSTOWN","PA","159011651","US","8145347500","8145347501","05/23/2005","05/22/2017","","","","","GIOVANETTI","VICTOR","E.","PRESIDENT","6159207000","251E00000X","740605","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0785","01","PA","HIGHMARK BLUE CROSS","603577600","01","PA","OFFICE WORKERS COMP ID","1007568490034","05","PA","","1011895","01","PA","GATEWAY / MOM MATTERS","PO08337","01","PA","CHAMPUS ID","030014300","01","PA","FEDERAL BLACK LUNG ID","1329770","01","PA","UMWA FUNDS ID #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1801899026","2","","","MEDFUND LLC","","","","","","","HORIZON ONE LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","3795 W BOYNTON BEACH BLVD","STE C","BOYNTON BEACH","FL","334364502","US","5617400221","5617409305","05/23/2005","07/10/2007","","","","","KERN","MARTIN","J.","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5193","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2311","01","FL","BCBS PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1447253661","2","","","HAVEN HOMES, INC.","","","","","","","HAVEN HOMES OF MAPLE PLAIN","3","","","","","","","","1520 WYMAN AVENUE","P.O. BOX 369","MAPLE PLAIN","MN","553590369","US","7634791993","7634793656","1520 WYMAN AVE","","MAPLE PLAIN","MN","553599639","US","7634791993","7634793656","05/23/2005","05/27/2008","","","","","MUELLER","ROBERT","HENRY","ADMINISTRATOR","7634791993","314000000X","325307","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","064742000","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1174526396","2","","","SONLIFE PROSTHETICS & ORTHOTICS, INC.","","","","","","","","","","","","","","","","6111 DELTONA BLVD","","SPRING HILL","FL","346061011","US","3525962257","3525960180","6111 DELTONA BLVD","","SPRING HILL","FL","346061011","US","3525962257","3525960180","05/23/2005","03/19/2010","","","","","GORIS","DAVID","S.","PRESIDENT","3525962257","335E00000X","POR 16","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","027898000","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","LPO","","","","","","","","","","","","","","","","" -"1437152659","2","","","PROSTHETICARE","","","","","","","PROSTHETIC CARE","3","","","","","","","","1590 RODNEY RD","","YORK","PA","174049715","US","7177648737","7177643577","1590 RODNEY RD","","YORK","PA","174049715","US","7177648737","7177643577","05/23/2005","08/22/2020","","","","","STRUNCK","MARTHA","L","OWNER/PRESIDENT","7177648737","335E00000X","=========","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0014542960002","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","CP","","","","","","","","","","","","","","","","" -"1255334470","2","","","ASSIST HOME CARE INC.","","","","","","","","","","","","","","","","27 W INDEPENDENCE ST","","SHAMOKIN","PA","178725313","US","5706449840","5706449841","27 W INDEPENDENCE ST","","SHAMOKIN","PA","178725313","US","5706449840","5706449841","05/23/2005","08/25/2009","","","","","PRENTISS","CHARLES","RICHARD","PRESIDENT","5706449840","332BX2000X","3000007788","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1012296060001","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1982607107","2","","","PULMONARY MANAGEMENT, INC.","","","","","","","","","","","","","","","","1000 AIRPORT ROAD","SUITE 101","LAKEWOOD","NJ","087015960","US","8564377264","6095866932","1985 E STATE STREET EXT","","HAMILTON","NJ","086193305","US","6095869873","6095866932","05/23/2005","11/05/2014","","","","","PARNES","YEHOSHUA","","PRESIDENT","8564377264","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3107108","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1790788917","2","","","VISITING NURSE ASSOCIATION OF GTR. YOUNGSTOWN","","","","","","","","","","","","","","","","518 E INDIANOLA AVE","","YOUNGSTOWN","OH","445022320","US","3307825606","3307825600","518 E INDIANOLA AVE","","YOUNGSTOWN","OH","445022320","US","3307825606","3307825600","05/23/2005","12/12/2011","","","","","TUCCI","SUZANNE","","EXECUTIVE DIRECTOR","3307825606","251E00000X","=========","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9072506","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1578566782","2","","","HOLANDER HOUSE, LTD","","","","","","","HOLANDER HOUSE","3","","","","","","","","1985 EAST PERSHING STREET","","SALEM","OH","444600000","US","3303321588","3303323119","1985 EAST PERSHING STREET","","SALEM","OH","444600000","US","3303321588","3303323119","05/23/2005","11/20/2009","","","","","SCHWARTZ","ALAN","","CEO/SALEM HEALTHCARE MANAGEMENT","3303321588","314000000X","1140-N","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4643040001","01","OH","DMERC REGION B CARRIER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1295738409","2","","","BIOSCRIP INFUSION SERVICES, LLC.","","","","","","","BIOSCRIP INFUSION SERVICES","3","","","","","","","","1600 BROADWAY","SUITE 700","DENVER","CO","802024927","US","7206975171","","102 THE AMERICAN RD","","MORRIS PLAINS","NJ","079502443","US","8005523462","","05/23/2005","11/13/2019","","","","","BERMAN","CLIFFORD","","SVP, GENERAL COUNSEL, SECRETARY","8008796137","3336M0002X","","","N","3336S0011X","","","N","333600000X","","","N","3336C0004X","","","N","332BP3500X","","","N","251F00000X","","","N","261QI0500X","","","N","332B00000X","","","N","3336H0001X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","28RS00591500","01","NJ","PHARMACY","3138648","01","","NCPDP","BA7286950","01","","DEA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1104829316","2","","","LAKE HEALTH CARE CENTER INC","","","","","","","","","","","","","","","","910 MOUNT HOMER RD","","EUSTIS","FL","327266258","US","3523578615","","910 MOUNT HOMER RD","","EUSTIS","FL","327266258","US","3523578615","","05/23/2005","06/22/2010","","","","","HARTLEY","LORRI","J","OFFICE ADMINISTRATOR","3523578615","207Q00000X","NOTREQUIRED","FL","N","213E00000X","NOTREQUIRED","FL","N","111N00000X","NOTREQUIRED","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1386647592","2","","","PROFESSIONAL HOME NURSING, INC","","","","","","","PROFESSIONAL HOME NURSING","5","","","","","","","","7 HATCH DR","SUITE 110","CARIBOU","ME","047362159","US","2074983915","2074934510","7 HATCH DR","SUITE 110","CARIBOU","ME","047362159","US","2074983915","2074934510","05/23/2005","09/02/2011","","","","","ANDERSON","KATHERINE","A","CEO, CO-OWNER","2074983915","251E00000X","2655","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","207055017310","01","ME","BLUE CROSS PROVIDER ID","128450000","05","ME","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN, BSN, MSB","","","","","","","","","","","","","","","","" -"1659374825","2","","","UROLOGY CENTER OF COLUMBUS, LLC","","","","","","","","","","","","","","","","1021 TALBOTTON RD","","COLUMBUS","GA","319048744","US","7063247700","7065965810","1021 TALBOTTON RD","","COLUMBUS","GA","319048744","US","7063247700","7065965810","05/23/2005","10/11/2012","","","","","OGLE","SUSAN","","COORD. CLINICAL ADMIN SRVCS","7063247700","174400000X","009060","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1477556645","2","","","COMPLETE MEDICAL HOMECARE","","","","","","","","","","","","","","","","14309 W 95TH ST","","LENEXA","KS","662155210","US","8005051625","8006241666","14309 W 95TH ST","","LENEXA","KS","662155210","US","8005051625","8006241666","05/23/2005","03/03/2015","","","","","BULTMAN","LORI","","GENERAL MANAGER","8166212010","332B00000X","18288774","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","470505","01","","BCBS OF KANSAS","31805011","01","","BCBS OF KANSAS CITY","625925102","05","MO","","100445500A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1730182908","2","","","CITY OF COALGATE","","","","","","","","","","","","","","","","3 S MAIN ST","","COALGATE","OK","745382838","US","5809273913","5809273200","3 S MAIN ST","","COALGATE","OK","745382838","US","5809273913","5809273200","05/23/2005","07/07/2008","","","","","MERRITT","CONNIE","LOUISE","EMS CLERK","5809273913","146N00000X","375","OK","N","3416L0300X","375","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200019140A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1639172802","2","","","MEDFUND LLC","","","","","","","HORIZON FT. LAUDERDALE LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","5100 N FEDERAL HWY","STE 102","FT LAUDERDALE","FL","333083842","US","9542023400","9542023448","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5203","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2650","01","FL","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1548263718","2","","","ROCKY MOUNTAIN MEDICAL EQUIPMENT LLC","","","","","","","MAJOR MEDICAL SUPPLY","3","","","","","","","","6820 N COUNTY ROAD 13","","LOVELAND","CO","805381255","US","9702276285","9707761966","1649 MAIN ST","","LONGMONT","CO","805012614","US","3036516400","3036784837","05/23/2005","01/20/2016","","","","","COLEMAN","DOUGLAS","EUGENE","CEO","9702276285","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02501031","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1457354623","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","","","","","","","","","","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8144108300","8144108331","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8144108300","8144108331","05/23/2005","10/08/2012","","","","","LAMBERT","ELAINE","M","PRESIDENT","8145341630","207R00000X","","","N","207Q00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1007358110035","05","PA","","CB9772","01","","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1619970878","2","","","SANDPIPER BAY HEALTH AND RETIERMENT CENTER, INC","","","","","","","","","","","","","","","","5808 W 8TH","","WICHITA","KS","67212","US","3169453606","3169459296","5808 W 8TH","","WICHITA","KS","67212","US","3169453606","3169459296","05/23/2005","08/22/2020","","","","","CURTIS","SUE","","ADMINISTRATOR","3169453606","251J00000X","N087029","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1528061785","2","","","MOUNTAIN VIEW NURSING HOME, INC.","","","","","","","MOUNTAIN VIEW CARE CENTER","3","","","","","","","","2309 STAFFORD AVE","","SCRANTON","PA","185053686","US","5703410050","5703410051","2309 STAFFORD AVE","","SCRANTON","PA","185053686","US","5703410050","5703410051","05/23/2005","04/05/2016","","","","","MCQUILLAN","ROBERT","EDWARD","ASSOC VICE PRESIDENT","5702149790","314000000X","053602","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0013905550001","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1891798054","2","","","GREENE COUNTY HEALTH CARE INCORPORATED","","","","","","","SNOW HILL MEDICAL CENTER","3","","","","","","","","7 PROFESSIONAL DR","","SNOW HILL","NC","285801332","US","2527478162","2527478163","302 N GREENE ST","","SNOW HILL","NC","285801412","US","2527472921","2527474915","05/23/2005","05/07/2014","","","","","STROUD","BEVERLY","","CFO","2527478162","261QF0400X","64938","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","344554","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","CPA","","","","","","","","","","","","","","","","" -"1427051689","2","","","NARROWS MRI AND DIAGNOSTIC RADIOLOGY, PC","","","","","","","","","","","","","","","","9920 4TH AVE","","BROOKLYN","NY","112098333","US","7189210333","7189210490","9920 4TH AVE","","BROOKLYN","NY","112098333","US","7189210333","7189210490","05/23/2005","09/24/2007","","","","","WINAKOR","ANDREW","","DIRECTOR, MANAGED CARE","5166165000","2085R0202X","","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02442735","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1881697043","2","","","HAYS MEDICAL CENTER INC","","","","","","","","","","","","","","","","2220 CANTERBURY DR","","HAYS","KS","676012370","US","7856235000","7856235943","2220 CANTERBURY DR","","HAYS","KS","676012370","US","7856235000","7856235943","05/23/2005","12/27/2019","","","","","HERRMAN","EDWARD","","PRESIDENT AND CEO","7856235089","282N00000X","H026001","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100010020D","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","12/27/2019" -"1790788958","2","","","HOSPICE OF EAST TEXAS","","","","","","","","","","","","","","","","4111 UNIVERSITY BLVD","","TYLER","TX","757016623","US","9032663400","9035656687","4111 UNIVERSITY BLVD","","TYLER","TX","757016623","US","9032663400","9035656687","05/23/2005","04/24/2019","","","","","DIAL","JENNIFER","","ACCOUNTING TEAM LEADER","9032663400","251G00000X","=========","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000202800","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1376546515","2","","","HOSPICE OF KITSAP COUNTY","","","","","","","","","","","","","","","","PO BOX 3416","","SILVERDALE","WA","983833416","US","3606984611","3606921893","3100 NW BUCKLIN HILL RD","","SILVERDALE","WA","983838358","US","3606984611","3606921893","05/23/2005","08/07/2007","","","","","PLEDGER","JIM","","DIRECTOR OF HOSPICE","3606984611","251G00000X","IS-335","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3990066","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1194728337","2","","","MOCKINGBIRD OPTICAL SHOP LLC","","","","","","","","","","","","","","","","5430 FREDERICKSBURG RD","SUITE 100","SAN ANTONIO","TX","782293539","US","2103401212","2105259617","5430 FREDERICKSBURG RD","STE 100","SAN ANTONIO","TX","782293539","US","2103401212","2105259617","05/23/2005","02/27/2015","","","","","COLLINS","JAY","C.","ADMINISTRATOR","2103401212","332BC3200X","4487710001","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1639172877","2","","","CONVACARE INC","","","","","","","MI CASITA CARE CENTER","3","","","","","","","","2400 QUAKER AVE","","LUBBOCK","TX","794101834","US","8067922831","8067925023","2400 QUAKER AVE","","LUBBOCK","TX","794101834","US","8067922831","8067925023","05/23/2005","04/29/2010","","","","","RUBLE","RICHARD","","PRESIDENT","8067807000","314000000X","109037","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","171177201","05","TX","","001001028","05","TX","","4491","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1093718231","2","","","MARION ANCILLARY SERVICES, LLC","","","","","","","","","","","","","","","","PO BOX 1827","","MARION","OH","433011827","US","7403838022","7403837942","1050 DELAWARE AVE","","MARION","OH","433026416","US","7403838022","7403837942","05/23/2005","08/22/2020","","","","","MILLER","DAVID","PAUL","EXECUTIVE DIRECTOR","7403837922","247100000X","257689","OH","X","246Q00000X","35057879","OH","X","246ZE0500X","RCP0800","OH","X","225100000X","PT003405","OH","X","225000000X","LO.10","OH","X","225B00000X","RCP.0800","OH","X","225X00000X","OT.002441","OH","X","246ZE0500X","2239705","OH","X","222Z00000X","4326110001","OH","X","291U00000X","","OH","X","","","","","","","","","","","","","","","","","","","","","2239705","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","" -"1659374858","2","","","ELJ INC","","","","","","","MILLENNIUM / COMPASS MEDICAL SUPPLY","3","","","","","","","","1500 CLARKSVILLE ST","","PARIS","TX","754606076","US","9037398539","9037398206","1500 CLARKSVILLE ST","","PARIS","TX","754606076","US","9037398539","9037398206","05/23/2005","12/22/2009","","","","","JETTON","LATRISHIA","","VICE PRESIDENT","9037398539","332B00000X","0056496","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","147982601","05","TX","","147981801","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1275536476","2","","","VILLA ST JOSEPH OF BADEN INC","","","","","","","","","","","","","","","","1030 STATE STREET","","BADEN","PA","150051338","US","7248696300","7248696399","1030 STATE STREET","","BADEN","PA","150051338","US","7248696300","7248696399","05/23/2005","01/14/2016","","","","","MURRAY","MARY","M","ADMINISTRATOR","7248696310","314000000X","069302","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0016442270002","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","NHA, MPH","","","","","","","","","","","","","","","","" -"1801899000","2","","","WESTVIEW MANOR HEALTH CARE ASSOCIATES INC","","","","","","","BELLEVILLE HEALTH CARE CENTER","3","","","","","","","","3073 HORSESHOE DR S","SUITE 102","NAPLES","FL","341046144","US","2399633400","2399633401","2626 WESLEYAN DR","","BELLEVILLE","KS","669352440","US","7855275636","7855275419","05/23/2005","06/13/2008","","","","","HUDSON","GAYLE","","ADMINISTRATOR","7855275636","314000000X","N079001","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100109670A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1710980917","2","","","OCEAN HEALTH INITIATIVES","","","","","","","","","","","","","","","","101 2ND ST","","LAKEWOOD","NJ","087013324","US","7323636655","7323636656","101 2ND ST","","LAKEWOOD","NJ","087013324","US","7323636655","7323636656","05/23/2005","08/22/2020","","","","","BERGER","THERESA","","CEO","7323636655","261QF0400X","23027","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0026590","05","NJ","","311842","01","NJ","UGS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1083617286","2","","","CAREFIRST OF FORT WAYNE INC.","","","","","","","ADVANCED HEALTHCARE","3","","","","","","","","3204 CONGRESSIONAL PKWY","","FORT WAYNE","IN","468084417","US","2603731600","2603731601","3204 CONGRESSIONAL PKWY","","FORT WAYNE","IN","468084417","US","2603731600","2603731601","05/23/2005","12/15/2009","","","","","BECHERT","CHAD","B","PRESIDENT","2603731600","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200234680","05","IN","","69000127A","01","IN","STATE LICENSE NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1528061728","2","","","CITY OF BLACKWELL","","","","","","","BLACKWELL FIRE DEPARTMENT AMBULANCE","3","","","","","","","","PO BOX 350","","BLACKWELL","OK","746310350","US","5803637200","5803633091","221 W BLACKWELL AVE","","BLACKWELL","OK","746312807","US","5803637200","5803633091","05/23/2005","08/22/2020","","","","","BELIEL","TOM","","DIRECTOR","5803635490","3416L0300X","EMS031","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1609879808","2","","","HEALTH DEPOT PHARMACIES, LLC","","","","","","","HEALTH DEPOT","3","","","","","","","","7700 HWY 271 S.","","FT. SMITH","AR","72908","US","4796499500","4796499504","7700 HWY 271 S","","FT. SMITH","AR","72908","US","4796499500","4796499504","05/23/2005","11/08/2018","","","","","MASHBURN","BREANN","","BILLING DIRECTOR","4796467875","332BX2000X","","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","221611716","05","AR","","100245080A","05","OK","","110632716","05","AR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1336142538","2","","","ATRIUM CARE AND REHABILITATION","","","","","","","","","","","","","","","","9960 ATRIUM WAY","","JACKSONVILLE","FL","32225","US","9047244004","9047246690","9960 ATRIUM WAY","","JACKSONVILLE","FL","322256487","US","9047244004","9047246690","05/23/2005","08/22/2020","","","","","YOUNG","TRACY","A","NURSING HOME ADMINISTRATOR","9047244001","314000000X","SNF1648096","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","NHA","","","","","","","","","","","","","","","","" -"1063415263","2","","","NATURAL LIVING, INC","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","2226 WHITE PLAINS RD","","BRONX","NY","104679404","US","7185470077","","05/23/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","16501","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","01465012","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1144223330","2","","","DARE COUNTY ADMINISTRATIVE OFFICES","","","","","","","COUNTY OF DARE","5","","","","","","","","PO BOX 1000","","MANTEO","NC","279541000","US","2524755712","","954 MARSHALL COLLINS DR","","MANTEO","NC","279548007","US","2524755731","","05/23/2005","03/11/2020","","","","","CLAWSON","DAVID","","FINANCE DIRECTOR","2524755731","3416A0800X","","","N","3416L0300X","","","N","341600000X","1002","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1011307910001","05","PA","","908500900","05","FL","","0723W","01","NC","BCBS NC","3406787","05","NC","","099460","01","VA","ANTHEM","220506","01","VA","CAREFIRST","404317100","05","MD","","0225964000","05","WV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","03/11/2020" -"1962405159","2","","","COUNTY OF HYDE OFFICE OF ACCOUNTANT","","","","","","","HYDE COUNTY HEALTH DEPARTMENT","4","","","","","","","","1151 MAIN STREET","PO BOX 100","SWANQUARTER","NC","278850100","US","2529264200","2529263702","1151 MAIN STREET","","SWANQUARTER","NC","278850100","US","2529264200","2529263702","05/23/2005","10/17/2018","","","","","GIBBS","LUANA","CARAWAN","HEALTH DIRECTOR","2529264387","251S00000X","","","N","261QC1500X","","","N","261QD0000X","","","N","261QF0050X","","","N","261QM2500X","","","N","251B00000X","","","N","291U00000X","","","N","3336C0002X","","","N","261QP2300X","","","N","261QP0905X","","","Y","","","","","","","","","","","","","","","","","","","","","07213","01","NC","BCBS","34DO865324","01","NC","CLIA LICENSE","3404348","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1598768780","2","","","LITTLE COMPANY OF MARY HOSPITAL INC","","","","","","","","","","","","","","","","2800 W 95TH ST","","EVERGREEN PARK","IL","608052746","US","7084226200","7084998510","2800 W 95TH ST","","EVERGREEN PARK","IL","608052746","US","7084226200","7084998510","05/23/2005","03/22/2010","","","","","BAKER","CANDACE","ANN","MANAGER BUSINESS OFFICE","7082295126","282N00000X","1744976","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","030","01","IL","BLUE CROSS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1083617245","2","","","ST MARY'S HOSPITAL, CENTRALIA, ILLINOIS","","","","","","","SSM HEALTH ST. MARY'S HOSPITAL - CENTRALIA","3","","","","","","","","1195 CORPORATE LAKE DR","","SAINT LOUIS","MO","631321716","US","3149893524","3149893695","400 N PLEASANT AVE","","CENTRALIA","IL","62801","US","6184368000","","05/23/2005","11/26/2019","","","","","HARBISON","DAMON","R","PRESIDENT","6184368000","273R00000X","0002642","IL","N","282N00000X","0002642","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0182","01","IL","BLUE CROSS BLUE SHIELD","133046300","01","IL","ACS OWCP","003578","01","IL","HEALTH ALLIANCE","35110","01","IL","GROUP HEALTH PLAN","105814","01","IL","HEALTHLINK","30045800","01","IL","BLACK LUNG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1306849567","2","","","VILLAGE OF ARLINGTON HEIGHTS A","","","","","","","","","","","","","","","","PO BOX 95349","","PALATINE","IL","600950349","US","8475778811","8475779515","33 S ARLINGTON HEIGHTS RD","","ARLINGTON HEIGHTS","IL","600051403","US","8473685000","8473685995","05/23/2005","12/02/2009","","","","","ERICKSON","GLEN","","CHIEF","8473685000","3416L0300X","98178","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1670140","01","IL","BCBS PROVIDER NUMBER","792590164","01","IL","MEDICARE RAILROAD","132855900","01","IL","DEPT OF LABOR OWCP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","CHIEF","","","","","","","","","","","","","","","","" -"1588667745","2","","","BALANCED LIVING CHIROPRACTIC CLINIC, INC","","","","","","","","","","","","","","","","708 E SMITH RD","","MEDINA","OH","442562662","US","3307255277","3307254241","708 E SMITH RD","","MEDINA","OH","442562662","US","3307255277","3307254241","05/23/2005","08/22/2020","","","","","BITSKAY","JEANINE","A","PRESIDENT","3307255277","111N00000X","1734","OH","N","111N00000X","1685","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","34177451400","01","OH","BWC-DR. JEANINE","0857210","05","OH","","200505615-006","01","OH","MEDICAL MUTUAL-DR.JEANINE","000000139760","01","OH","ANTHEM-DR.MARK","0221638","05","OH","","0826020","05","OH","","131566870-005","01","OH","MEDICAL MUTUAL-DR. MARK","000000139761","01","OH","ANTHEM-DR.JEANINE","34178207500","01","OH","BWC- DR. MARK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.C.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1023011285","2","","","QUEENS MEDICAL IMAGING, PC","","","","","","","","","","","","","","","","6915 AUSTIN ST","","FOREST HILLS","NY","113754238","US","7185445100","7185751926","6915 AUSTIN ST","","FOREST HILLS","NY","113754238","US","7185445100","7185751926","05/23/2005","03/20/2008","","","","","WINAKOR","ANDREW","","DIRECTOR, MANAGED CARE","5166165000","2086S0129X","","","N","2085R0202X","H98099818578","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02526089","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1932102191","2","","","MEDFUND LLC","","","","","","","HORIZON OPEN MRI OF PEMBROKE PINES LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","8384 PINES BLVD","","PEMBROKE PINES","FL","330246616","US","9544504020","9544328674","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5201","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00056753","01","","RAILROAD MCARE PROV #","105715-13","01","FL","CITRUS HMO","V2300","01","FL","BCBS PROVIDER #","225507","01","FL","AVMED HMO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1902809155","2","","","RANDLE RESPIRATORY CARE, INC.","","","","","","","","","","","","","","","","812 S WALNUT ST","","STILLWATER","OK","740744225","US","4056246363","4056246677","812 S WALNUT ST","","STILLWATER","OK","740744225","US","4056246363","4056246677","05/23/2005","08/22/2020","","","","","RANDLE","RICHARD","CLARKE","PRESIDENT","4056246363","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RRT,RCP","","","","","","","","","","","","","","","","" -"1548263791","2","","","RENEW HEALTH HOME AND HOME MEDICAL SUPPLY, LLC","","","","","","","","","","","","","","","","PO BOX 1603","","MONTICELLO","MN","553621603","US","7632956888","7632956777","103 PINE ST","STE 103","MONTICELLO","MN","553628564","US","7632956888","7632956777","05/23/2005","08/22/2020","","","","","KYLOCHKO","VICTOR","","OWNER","7632956888","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1275536427","2","","","HOSPICE OF CLEVELAND COUNTY, INC.","","","","","","","HOSPICE & PALLIATIVE CARE CLEVELAND COUNTY","3","","","","","","","","951 WENDOVER HEIGHT DR","","SHELBY","NC","281503565","US","7044874677","7044818050","951 WENDOVER HEIGHT DR","","SHELBY","NC","281503565","US","7044874677","7044818050","05/23/2005","08/18/2009","","","","","BEAM","JASON","K","DIRECTOR OF ADMINISTRATIVE SERVICES","7044874677","251G00000X","HOS0371","NC","N","251G00000X","HPC-065","SC","N","251G00000X","HOS1413","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2497670","01","","AETNA","3401520","05","NC","","0022W","01","","BLUE CROSS BLUE SHIELD","355808","01","","CIGNA","HSP045","05","SC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1265435416","2","","","PAIN MANAGEMENT SPECIALISTS MEDICAL GROUP","","","","","","","INTERVENTIONAL PAIN MANAGEMENT","4","","","","","","","","PO BOX 4659","","SAN LUIS OBISPO","CA","934034659","US","8057828132","8055978350","10 SANTA ROSA ST","STE 201","SAN LUIS OBISPO","CA","934055825","US","8057828132","8055978350","05/23/2005","12/29/2010","","","","","GRIBANOVA","INNA","","MANAGER","8057828132","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GR0105740","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1174526321","2","","","M&F MEDICAL EQUIPMENT, INC.","","","","","","","","","","","","","","","","PO BOX 2497","","GUAYAMA","PR","007852497","US","7872711691","7872711820","193 CALLE MORSE","","ARROYO","PR","007142330","US","7872711691","7872711820","05/23/2005","08/22/2020","","","","","MORALES MORALES","YVETTE","","PRESIDENT","7872711691","332B00000X","001118","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1083617237","2","","","M A CULASSO, LLC","","","","","","","","","","","","","","","","PO BOX 729","","SLIDELL","LA","704590729","US","9856460945","9856438510","1520 GAUSE BLVD","","SLIDELL","LA","704582208","US","9856490945","9856438510","05/23/2005","04/05/2011","","","","","CULASSO","MIGUEL","A","OWNER/PHYSICIAN","9856460945","207Q00000X","013032","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1444278","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1619970860","2","","","TOWN OF ST. JOHN","","","","","","","","","","","","","","","","10955 W 93RD AVE","","SAINT JOHN","IN","463738824","US","2193656034","2195582080","10955 W 93RD AVE","","SAINT JOHN","IN","463738824","US","2193656034","2195582080","05/23/2005","09/23/2010","","","","","KIL","STEVE","","TOWN MANAGER","2193656043","3416L0300X","0566","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200367650A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1437152683","2","","","GRAMERCY MRI AND DIAGNOSTIC RADIOLOGY, PC","","","","","","","","","","","","","","","","380 2ND AVE","","NEW YORK","NY","100105615","US","2124778180","2124777907","380 2ND AVE","","NEW YORK","NY","100105615","US","2124778180","2124777907","05/23/2005","09/24/2007","","","","","WINAKOR","ANDREW","","DIRECTOR, MANAGED CARE","5166165000","2085R0202X","","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02517137","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1700889839","2","","","GARBER EMERGENCY MEDICAL SERVICE (GEMS)","","","","","","","GARBER EMS","3","","","","","","","","19907 E PHILLIPS RD","","GARBER","OK","737380497","US","5808632961","5808635271","19907 E PHILLIPS RD","","GARBER","OK","737380497","US","5808632961","5808635271","05/23/2005","12/29/2008","","","","","LONG","RAYMOND","HAL","TREASURER","5808632961","3416L0300X","EMS424","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100818930A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1982607016","2","","","CITY OF PENDLETON","","","","","","","","","","","","","","","","911 SW COURT AVE","","PENDLETON","OR","978011912","US","5412761442","5412769171","1455 SE COURT AVE","","PENDLETON","OR","978013212","US","5412761442","","05/23/2005","10/07/2019","","","","","HOEFT","KAREN","","SR ACCOUNT CLERK","5412761442","3416L0300X","3005-05","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","28045","01","OR","WASHINGTON LABOR AND INDU","9571407","01","OR","WASHINGTON MEDICAID","590133278","01","OR","RAILROAD MEDICARE","085387000","01","OR","BLUE CROSS","149393","05","OR","","8060348000","05","OR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1154324283","2","","","DREXEL HEIGHTS FIRE DISTRICT","","","","","","","","","","","","","","","","5950 S CARDINAL AVE","","TUCSON","AZ","857463710","US","5208834341","5208833314","5030 S CAMINO VERDE","","TUCSON","AZ","857358971","US","5208834341","5208833314","05/23/2005","05/04/2020","","","","","CHAPPELL","DOUGLAS","E","FIRE CHIEF","5208834341","3416L0300X","11","AZ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","071241","05","AZ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","05/04/2020" -"1063415198","2","","","PROVIDENCE HEALTH & SERVICES WASHINGTON","","","","","","","PROVIDENCE SOUNDHOMECARE AND HOSPICE","3","","","","","","","","PO BOX 24666","","SEATTLE","WA","981240666","US","5038937120","4252763215","4200 6TH AVE SE","SUITE 201","LACEY","WA","985031042","US","3604598311","3604934657","05/23/2005","11/08/2018","","","","","ANDERSON","DONALD","","ASST CORP SEC FOR ENROLLMENTS","4255255392","251E00000X","IS-420","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9048661","05","WA","","9040460","05","WA","","9040478","05","WA","","9040452","05","WA","","9040486","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","","","","","","","","","","","","","","","","","" -"1417950544","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","912 W BELMONT AVE","","CHICAGO","IL","606576466","US","7736658990","","05/23/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336H0001X","","","N","3336C0003X","0054013257","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2384147","05","OH","","1463544","05","MI","","200356880C","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1982607123","2","","","MEMORIAL HOME SERVICES","","","","","","","MEMORIAL HOME HEALTH","5","","","","","","","","701 N 1ST ST","","SPRINGFIELD","IL","627814952","US","2177884663","","701 N 1ST ST","","SPRINGFIELD","IL","627814952","US","2177884663","2177885557","05/23/2005","08/05/2019","","","","","KING","CHRISTINA","ANN","DIRECTOR- HOME HEALTH","2177884663","251E00000X","1002377","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","137487","01","IL","HEALTHLINK","9866","01","IL","BLUE CROSS BLUE SHIELD HH","009326","01","IL","HEALTH ALLIANCE MED PLAN","L016474","01","IL","TRICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN, BSN","","","","","","","","","","","","","","","","" -"1609879840","2","","","HUGHES COUNTY EMERGENCY MEDICAL SERVICES","","","","","","","","","","","","","","","","PO BOX 671","","HOLDENVILLE","OK","748480671","US","4053797046","4053796369","114 N OAK ST","","HOLDENVILLE","OK","748483214","US","4053797046","4053796369","05/23/2005","08/19/2008","","","","","PRUITT","KYLE","","DIRECTOR","4053797046","3416L0300X","EMS051","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","736063754-001","01","OK","BCBS PROVIDER #","100819260A","05","OK","","826590524","01","OK","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1841293982","2","","","MEDFUND LLC","","","","","","","HORIZON ST. AUGUSTINE LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","200 SOUTHPARK BLVD","STE 210","ST AUGUSTINE","FL","320863101","US","9048190920","9048190299","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5205","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2302684","01","","AETNA HMO #","105715-15","01","FL","CITRUS HMO","7008104","01","","AETNA PPO/POS #","V2456","01","FL","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1396748430","2","","","EAST TEXAS MEDICAL CENTER QUITMAN","","","","","","","","","","","","","","","","117 N WINNSBORO ST","","QUITMAN","TX","757832144","US","9037636300","9037636140","117 N WINNSBORO ST","","QUITMAN","TX","757832144","US","9037636300","9037636140","05/23/2005","08/06/2014","","","","","HENDERSON","WILLIAM","P","ADMINISTRATOR","9037636336","282NC0060X","000411","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","017624003","05","TX","","017624002","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1831192970","2","","","GREENE REHAB SERVICES PA","","","","","","","","","","","","","","","","333 S. TAMIAMI TRL","SUITE 207","VENICE","FL","342852424","US","9414842471","9414845487","333 S. TAMIAMI TRL","SUITE 207","VENICE","FL","342852424","US","9414842471","9414845487","05/23/2005","08/27/2009","","","","","GREENE","CHRISTINE","ANN","ADMINISTRATOR","9414842471","261QP2000X","","","N","261QR0400X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","880244100","05","FL","","R75","01","FL","BLUE CROSS BLUESHIELD","QW6","01","FL","BLUE CROSS BLUE SHIELD","HOR75","01","FL","BLUE CROSS BLUE SHIELD","N8882","01","FL","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","PHYSICAL THERAPIST","","","","","","","","","","","","","","","","" -"1568465607","2","","","VALLEY VIEW NURSING HOME OF HOUSTON, INC.","","","","","","","","","","","","","","","","510 E CEDAR ST","","HOUSTON","MN","559438618","US","5078963125","5078963289","510 E CEDAR ST","","HOUSTON","MN","559438618","US","5078963125","5078963289","05/23/2005","08/22/2020","","","","","LINDH","THOMAS","","ADMINISTRATOR","5078963125","314000000X","328214","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","140012","01","MN","UCARE","306GVA","01","MN","BLUE PLUS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1821091968","2","","","CONVACARE INC","","","","","","","LAKERIDGE REHABLILTATION AND NURSING CENTER","3","","","","","","","","4403 74TH ST","","LUBBOCK","TX","794242307","US","8067950668","8067954250","4403 74TH ST","","LUBBOCK","TX","794242307","US","8067950668","8067954250","05/23/2005","04/29/2010","","","","","RUBLE","RICHARD","","PRESIDENT","8067807000","314000000X","109070","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4942","05","TX","","171013901","05","TX","","001001028","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1639172778","2","","","RENAISSANCE HOSPITALS INC","","","","","","","RENAISSANCE HOSPITAL GROVES","5","","","","","","","","PO BOX 11527","","HOUSTON","TX","772931527","US","8328861900","2812271039","5500 39TH ST","","GROVES","TX","776192905","US","4099625733","4099635388","05/23/2005","06/24/2008","","","","","SMESNEY","MICHAEL","","CFO","8328861900","282N00000X","000515","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","167224803","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1093718132","2","","","SOUTH MIAMI PAIN & REHAB CENTER, INC","","","","","","","","","","","","","","","","468 W 51ST PL","","HIALEAH","FL","330123620","US","3058197770","9544730211","468 W 51ST PL","","HIALEAH","FL","330123620","US","3058197770","9544730211","05/23/2005","04/29/2009","","","","","DELACRUZ","ANTHONY","","PRESIDENT","3058197770","261QR0401X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","DC","","","","","","","","","","","","","","","","" -"1083617120","2","","","ESSENTIA HEALTH VIRGINIA, LLC","","","","","","","ESSENTIA HEALTH VIRGINIA","3","","","","","","","","901 9TH ST N","","VIRGINIA","MN","55792","US","2187413340","2187497955","901 9TH ST N","","VIRGINIA","MN","557922325","US","2187413340","2187499427","05/23/2005","12/05/2016","","","","","FELTMAN","STEVE","","CFO","2187428662","282N00000X","327573","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","ST. MARY'S DULUTH CLINIC HEALTH SYSTEM","","","","","","","","","","","","","","","","","","","","" -"1073516118","2","","","LIVINGSTON COUNTY TREASURER","","","","","","","LIVINGSTON COUNTY EMS","5","","","","","","","","1911 TOOLEY RD","","HOWELL","MI","488558703","US","5175466220","","1911 TOOLEY RD","","HOWELL","MI","488558703","US","5175466220","","05/23/2005","09/02/2020","","","","","FELDPAUSCH","DAVID","D","DIRECTOR","5175407865","3416L0300X","471001","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","182696246","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","09/02/2020" -"1891798930","2","","","UCHEE PINES LIFESTYLE CENTER","","","","","","","ANVWODI","5","","","","","","","","30 UCHEE PINES ROAD","#75","SEALE","AL","368755715","US","3348554763","3348559014","30 UCHEE PINES RD","LOT 75","SEALE","AL","368755726","US","3348554763","3348559014","05/23/2005","08/22/2020","","","","","HORSLEY","JAMES","IRWIN","MEDICAL DIRECTOR","3348554764","174400000X","4123","AL","N","174400000X","025873","GA","N","174400000X","007539","GA","N","174400000X","04837","GA","N","174400000X","00019762","AL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","" -"1336142470","2","","","HILLCREST CONVALESCENT CENTER, INC.","","","","","","","","","","","","","","","","1417 W PETTIGREW ST","","DURHAM","NC","277054820","US","9192867705","9192863772","1417 W PETTIGREW ST","","DURHAM","NC","277054820","US","9192867705","9192863772","05/23/2005","01/23/2020","","","","","SMITH","THOMAS","TED","ADMINISTRATOR","9192867705","261QR0400X","NH0038","NC","N","314000000X","NH0038","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3405001","01","NC","SKILLED MEDICAID","3496052","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","NHA","","","","","","","","","","","","","","","","01/23/2020" -"1063415107","2","","","YORKTOWN EMERGENCY MEDICAL SERVICE","","","","","","","","","","","","","","","","PO BOX 142","","YORKTOWN","TX","781640142","US","3615649410","3615649476","508 N RIEDEL ST","","YORKTOWN","TX","781641810","US","3615649410","3615649476","05/23/2005","03/27/2018","","","","","GREEN","JOHN","WILLIAM","AOR","3619387080","3416L0300X","062008","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","514705","01","TX","BCBS PROVIDER NUMBER","000404601","05","TX","","062008","01","TX","TDH LICENSE NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1508869645","2","","","FRESNO CA ENDOSCOPY ASC, LP","","","","","","","CENTRAL CALIFORNIA ENDOSCOPY CENTER","3","","","","","","","","20 BURTON HILLS BLVD","SUITE 500","NASHVILLE","TN","372156197","US","6152403820","6152341720","7055 N FRESNO ST","SUITE 100","FRESNO","CA","937202957","US","5594409100","5594488362","05/23/2005","01/24/2014","","","","","CLENDENIN","PHILLIP","","PRESIDENT OF LLC","6156651280","261QA1903X","040000525","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","SUR01536F","05","CA","","AS1536","01","CA","BLUE CROSS","ZZZH1020Z","01","CA","BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1871596916","2","","","FORT SMITH REGIONAL DIALYSIS CENTER LLC","","","","","","","","","","","","","","","","2201 BROOKEN HILL DR","","FORT SMITH","AR","729088611","US","4797556700","4797556704","2201 BROOKEN HILL DR","","FORT SMITH","AR","729088611","US","4797556700","4797556704","05/23/2005","06/13/2012","","","","","PALMER","LAURA","","EXECUTIVE DIRECTOR","4797556750","261QE0700X","","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100728340A","05","OK","","134859734","05","AR","","140066002","05","AR","","12501","01","AR","AR BLUE CROSS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1699778738","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","4620 J C NICHOLS PKWY","STE 417","KANSAS CITY","MO","641121624","US","8165611933","","05/23/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","006007","MO","N","3336C0003X","6007","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","622771400","05","MO","","100438130A","05","KS","","100850770B","05","OK","","602771404","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1043213184","2","","","C AND H HEALTHCARE LLC","","","","","","","SHARON LANE HEALTH SERVICES","3","","","","","","","","10315 JOHNSON DR","","SHAWNEE","KS","662033065","US","9136318200","9136317723","10315 JOHNSON DR","","SHAWNEE","KS","662033065","US","9136318200","9136317723","05/23/2005","10/01/2019","","","","","MOORE","ANGELA","LYNN","ADMINISTRATOR","9136318200","314000000X","314000000X","KS","N","314000000X","N046011","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100111860A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN, LNHA","","","","","","","","","","","","","","","","" -"1952304099","2","","","PUBLIC HEALTH DISTRICT 1","","","","","","","","","","","","","","","","8500 N ATLAS RD","","HAYDEN","ID","838357677","US","2084155160","2084155161","8500 N ATLAS RD","","HAYDEN","ID","838357677","US","2084155160","2084155161","05/23/2005","03/06/2012","","","","","DETIENNE","MARY","","HOME HEALTH ADMINISTRATOR","2084155160","251E00000X","HH-164","ID","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","002470700","05","ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1598768632","2","","","NORTHWEST OUTPATIENT CANCER CENTER","","","","","","","NORTHWEST CANCER CENTER","3","","","","","","","","P.O. BOX 4356, DEPT 664","","HOUSTON","TX","772104356","US","2814405006","2814406149","17323 RED OAK DR","","HOUSTON","TX","770901243","US","2814405006","2814406149","05/23/2005","05/20/2010","","","","","CASIMIR","MIRTHA","T","MEDICAL DIRECTOR","2814405006","261QM2500X","F5854","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","I","M.D.","","","","","","","","","","","","","","","","" -"1215930359","2","","","CITY OF KINGFISHER","","","","","","","KINGFISHER AMBULANCE SERVICE","3","","","","","","","","301 N MAIN ST","","KINGFISHER","OK","737502749","US","4053754070","4053753374","301 N MAIN ST","","KINGFISHER","OK","737502749","US","4053754070","4053753374","05/23/2005","08/22/2020","","","","","HENDRICKS","TOM","","DIRECTOR","4053754070","3416L0300X","EMS147","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1124021266","2","","","ALVERNO LAKESIDE CORPORATION","","","","","","","ALVERNO ADVANCED LIFE SUPPORT SERVICE","3","","","","","","","","20201 CRAWFORD AVE","","OLYMPIA FIELDS","IL","604611010","US","7087474000","7087553392","20201 CRAWFORD AVE","","OLYMPIA FIELDS","IL","604611010","US","7087561200","7084815583","05/23/2005","01/10/2011","","","","","SLYKAS","JOHN","","MANAGER","7087474000","341600000X","77967","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1626513","01","IL","BCBS PROVIDER NUMBER","590014070","01","IL","MEDICARE RAILROAD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","ST. JAMES HOSPITAL, UNITED STATES CATHOLIC CONFERENCE","","MR.","","","","","","","","","","","","","","","","","","" -"1942203088","2","","","HENDERSONVILLE EMERGENCY CONSULTANTS PC","","","","","","","","","","","","","","","","PO BOX 11807","","COLUMBIA","SC","292111807","US","8004768646","9193823210","800 N JUSTICE ST","","HENDERSONVILLE","NC","287913410","US","8004768646","9193823210","05/23/2005","08/22/2020","","","","","BOLEMAN","ROBERT","CHARLES","VICE-PRESIDENT","8284730754","207P00000X","9501180","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","015WK","01","NC","BCBS OF NC GROUP NUMBER","89015WK","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1851394993","2","","","HENDRICK ANESTHESIA NETWORK","","","","","","","","","","","","","","","","PO BOX 975503","","DALLAS","TX","753975503","US","3256704220","3256728292","1900 PINE ST","","ABILENE","TX","796012432","US","3256704220","3256728292","05/23/2005","03/11/2010","","","","","POLK","KARI","","ADMINISTRATOR","3256704393","174400000X","=========","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","095027103","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1215930342","2","","","SHACKELFORD COUNTY RURAL HEALTH","","","","","","","RURAL CARE CLINIC","3","","","","","","","","PO BOX 1567","","ALBANY","TX","764301567","US","3257623661","3257623859","450 KENSHALO ST.","","ALBANY","TX","764301567","US","3257623661","3257623859","05/23/2005","08/22/2020","","","","","SHERMAN","JO ANN","","BUSINESS MANAGER","3257622892","207Q00000X","L5335","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RMC","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1942203070","2","","","ELLIS COUNTY EMS","","","","","","","","","","","","","","","","PO BOX 591","","SHATTUCK","OK","738580591","US","5807894512","5807894512","1201 E 1ST","","SHATTUCK","OK","738580591","US","5807894512","5807894512","05/23/2005","04/29/2020","","","","","LONGHOFER","DENISE","B","BILLING COORDINATOR","5807894512","3416L0300X","EMS042","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","=========","01","OK","BCBS PROVIDER #","590002072","01","OK","RAILROAD MEDICARE","100818840A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","04/29/2020" -"1487657516","2","","","HELEN B BENTLEY FAMILY HEALTH CENTER","","","","","","","COCONUT GROVE FAMILY HEALTH CENTER","4","","","","","","","","3090 SW 37TH AVE","","MIAMI","FL","331334311","US","3054474950","3054447866","3090 SW 37TH AVE","","MIAMI","FL","331334311","US","3054474950","3054447866","05/23/2005","08/22/2020","","","","","DAVIS","CALEB","A","PRESIDENT CEO","3053511314","261QF0400X","719670","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0295553100","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHD","","","","","","","","","","","","","","","","" -"1912900044","2","","","FORT SMITH REGIONAL DIALYSIS CENTER, LLC","","","","","","","POTEAU DIALYSIS CENTER","3","","","","","","","","2201 BROOKEN HILL DR","","FORT SMITH","AR","729088611","US","4797556700","4797556704","1200 CENTRAL ST","","POTEAU","OK","749532320","US","9186479373","","05/23/2005","06/13/2012","","","","","PALMER","LAURA","","EXECUTIVE DIRECTOR","4797556700","261QE0700X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","900522191","01","OK","PHYSICIAN'S","100707620A","05","OK","","146670734","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1922001049","2","","","CALAIS REGIONAL HOSPITAL","","","","","","","","","","","","","","","","24 HOSPITAL LN","","CALAIS","ME","046191329","US","2074547521","2074543616","24 HOSPITAL LN","","CALAIS","ME","046191329","US","2074547521","2074543616","05/23/2005","09/30/2019","","","","","BARNETT","MARY","","COMPLIANCE OFFICER","2074549228","282NC0060X","37339","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000008","01","ME","ANTHEM BLUE CROSS","0439887","01","ME","CIGNA","900800","01","ME","HARVARD PILGRIM","0012304","01","ME","AETNA","101960100","05","ME","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1740283860","2","","","BEULAH COMMUNITY NURSING HOME","","","","","","","KNIFE RIVER CARE CENTER","3","","","","","","","","118 22ND ST NE","","BEULAH","ND","585236134","US","7018734322","7018733182","118 22ND ST NE","","BEULAH","ND","585236134","US","7018734322","7018733182","05/23/2005","08/01/2011","","","","","CZYWCZYNSKI","LINDA","L","CHIEF OPERATING OFFICER/CFO","7018734322","314000000X","1002A","ND","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000030002","05","ND","","1740283860","01","ND","NPI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1386647402","2","","","PHYSICIANS DAY SURGERY CENTER, LLC","","","","","","","PHYSICIANS DAY SURGERY CENTER, INC.","4","","","","","","","","850 111TH AVE N","","NAPLES","FL","341081803","US","2395962557","2395962563","850 111TH AVE N","","NAPLES","FL","341081803","US","2395962557","2395962563","05/23/2005","02/06/2018","","","","","CANNIZZARO","KAREN","","CHIEF ADMINISTRATIVE OFFICER","2395962557","261QA1903X","1065","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","070466100","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1821091943","2","","","CHEYNE EYE CENTER P.A.","","","","","","","","","","","","","","","","223 S MORGAN ST","","GRANBURY","TX","760481953","US","8175737153","8175735640","223 S MORGAN ST","","GRANBURY","TX","760481953","US","8175737153","8175735640","05/23/2005","08/05/2013","","","","","CHEYNE","CHRIS","DAVID","PRESIDENT","8175737153","332H00000X","5017230001","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","O.D.","","","","","","","","","","","","","","","","" -"1053314179","2","","","MERCY HOSPITAL SOUTH","","","","","","","ST. ANTHONY'S HOME CARE","3","","","","","","","","10010 KENNERLY RD","","SAINT LOUIS","MO","631282106","US","3145251000","3145254269","9735 LANDMARK PARKWAY DR STE 2N","","SAINT LOUIS","MO","631271666","US","3145251045","3145254269","05/23/2005","10/04/2018","","","","","MATEJKA","CHERYL","","CFO EAST COMMUNITIES & SFO","3142511958","251E00000X","234-19","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","580161008","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","MD","","","","","","","","","","","","","","","","" -"1598768608","2","","","DELNOR COMMUNITY HOSPITAL","","","","","","","DELNOR COMMUNITY HOSPITAL HOME HEALTH CARE SERVICES","3","","","","","","","","964 N 5TH AVE","BUILDING C","SAINT CHARLES","IL","601741204","US","6305130370","6305138462","964 N 5TH AVE","BUILDING C","SAINT CHARLES","IL","601741204","US","6305130370","6305138462","05/23/2005","05/26/2009","","","","","KITTOE","MICHAEL","","VP/CHIEF FINANCIAL OFFICER","6302084172","251E00000X","1001627","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","DELNOR COMMUNITY HOSPITAL","","MR.","","","","","","","","","","","","","","","","","","" -"1215930326","2","","","LIVINGSTON PHYSICAL THERAPY INC","","","","","","","VIVIAN B. ELLIS, LPT LIVINGSTON PHYSICAL THERAPY","4","","","","","","","","305 W MILL ST","","LIVINGSTON","TX","773513226","US","9363274084","9363271201","305 W MILL ST","","LIVINGSTON","TX","773513226","US","9363274084","9363271201","05/23/2005","03/07/2011","","","","","ELLIS","VIVIAN","BEATRICE","OWNER &PRESIDENT","9363274084","225100000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","109663801","05","TX","","0070HE","01","TX","BCBS PAR PLAN GROUP #","0070HE","01","TX","BCBS PAR PLAN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","P.T.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1033112149","2","","","MEDFUND LLC","","","","","","","HORIZON WEST PALM BEACH LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","1117 N OLIVE AVE","STE 101","WEST PALM BEACH","FL","334013520","US","5616517410","5616517417","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5184","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2651","01","FL","BCBS PROVIDER #","105715-20","01","FL","CITRUS HMO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1013910124","2","","","HOSPICE OF AMERICA, INC.","","","","","","","","","","","","","","","","1N131 COUNTY FARM RD","","WINFIELD","IL","601902000","US","6306823871","","1N131 COUNTY FARM RD","","WINFIELD","IL","601902000","US","6306823871","","05/23/2005","04/05/2018","","","","","LOWE","MATTHEW","","CFO","6306823871","251G00000X","2001428","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CPA","","","","","","","","","","","","","","","","" -"1609879717","2","","","TOWN OF KEYES OKLAHOMA","","","","","","","","","","","","","","","","PO BOX 121","","KEYES","OK","739470121","US","5805467651","5805467617","106 E THIRD","","KEYES","OK","73947","US","5805467651","5805467617","05/23/2005","05/28/2009","","","","","MOSER","JOHN","C","EMS DIRECTOR","5805467651","3416L0300X","EMS347","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100819540A","05","OK","","731593614-001","01","OK","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1518960624","2","","","FARMACIA M&F","","","","","","","","","","","","","","","","PO BOX 2497","","GUAYAMA","PR","007852497","US","7878648060","7878648061","CARR #3 KM 149.9","BO PUENTE DE JOBOS","GUAYAMA","PR","00784","US","7878648060","7878648061","05/23/2005","08/22/2020","","","","","FARRARO SANTIAGO","FRANCISCO","","OWNER","7878648060","333600000X","32357","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1427051531","2","","","PHOENIX MEDICAL SERVICES, INC.","","","","","","","","","","","","","","","","PO BOX 674553","","DETROIT","MI","482674553","US","8668978588","6516365746","2483 15TH ST NW STE B","","NEW BRIGHTON","MN","551125604","US","6516360848","6516365746","05/23/2005","09/02/2020","","","","","BANG","GARY","R","PRESIDENT AND DIRECTOR","8668978588","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100095642","05","WI","","1427051531","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","JR.","","","","","","","","","","","","","","","","","08/17/2020" -"1063415172","2","","","CITY OF EMPORIA","","","","","","","LYON COUNTY AMBULANCE SERVICE","3","","","","","","","","PO BOX 928","","EMPORIA","KS","668010928","US","6203434232","6203414395","120 E 5TH AVE","","EMPORIA","KS","668013918","US","6203434232","6203414395","05/23/2005","09/16/2008","","","","","BECK","BRANDON","","SERVICE DIRECTOR","6203434235","146L00000X","1130","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","590077784","01","KS","RAILROAD MEDICARE","5880","01","KS","BLUE CROSS/BLUE SHIELD KS","100092330A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","MICT","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1972506087","2","","","PHILIP PADEN EYE CARE CENTER M D","","","","","","","PADEN EYE CARE CENTER, PC","3","","","","","","","","221 STEWART AVE","SUITE 110","MEDFORD","OR","97501","US","5417769026","5417769096","221 STEWART AVE","SUITE 110","MEDFORD","OR","97501","US","5417769026","5417769096","05/23/2005","01/11/2012","","","","","PADEN","PHILIP","Y","OWNER/PHYSICIAN","5417769026","207W00000X","13653","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1790788891","2","","","HOUSING & REDEVELOPMENT AUTHORITY OF MORRIS","","","","","","","GRANDVIEW ASSISTED LIVING","3","","","","","","","","100 S COLUMBIA AVE","","MORRIS","MN","562671540","US","3205893142","3205893008","100 S COLUMBIA AVE","","MORRIS","MN","562671540","US","3205893142","3205893008","05/23/2005","08/22/2020","","","","","FOHL","MELANIE","A","EXECUTIVE DIRECTOR","3205893142","251E00000X","","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1487657581","2","","","WOODWORTH ENTERPRISES, INC.","","","","","","","ELMHAVEN EAST","3","","","","","","","","1217 S 15TH ST","","PARSONS","KS","673575125","US","6204211430","6204211437","1400 S 15TH ST","","PARSONS","KS","673575130","US","6204211430","6204211437","05/23/2005","02/03/2010","","","","","WOODWORTH","BRAD","","GENERAL MANAGER","6204212431","314000000X","N050008","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0005136","01","KS","TRADING PARTNER","100109540A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","WOODWORTH ENTERPRISES, INC","","MR.","","","","","","","","","","","","","","","","","","" -"1619970712","2","","","HOWARD R. STRAUSS, DDS, PA","","","","","","","","","","","","","","","","925 BISHOP WALSH RD","STE 2","CUMBERLAND","MD","215021845","US","3017771100","3017773135","925 BISHOP WALSH RD","STE 2","CUMBERLAND","MD","215021845","US","3017771100","3017773135","05/23/2005","11/01/2012","","","","","STRAUSS","HOWARD","ROBERT","PRESIDENT","3017771100","261QS0112X","5688","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","421588","01","MD","RENDERING BC/BS CARE 1ST","221289","01","MD","MAMSI/MDIPA","F512-0001","01","MD","BLUE CHOICE (GHMSI)","DG9717","01","MD","GBA MEDICARE GROUP","406198476","01","MD","MEDICARE GBA","331331000","05","MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","","","","","","","","","","","","","","","","" -"1700889896","2","","","ASSOCIATION FOR RETARDED CITIZENS","","","","","","","THE ARC OF GREATER NEW ORLEANS","5","","","","","","","","925 LABARRE RD","","METAIRIE","LA","70001","US","5048375105","5048314107","5700 LOYOLA AVE","","NEW ORLEANS","LA","701155015","US","5048970134","5048956496","05/23/2005","08/22/2020","","","","","LEVESQUE","VANCE","","CONTROLLER","5048375105","251C00000X","","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1956546","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1811990930","2","","","BOSTON HOME INC","","","","","","","THE BOSTON HOME INC","3","","","","","","","","2049 DORCHESTER AVE","","BOSTON","MA","021244742","US","6178253905","6178251951","2049 DORCHESTER AVE","","BOSTON","MA","021244742","US","6178253905","6178251951","05/23/2005","07/01/2020","","","","","REILLY","CHRISTINE","","CHIEF EXECUTIVE OFFICER","6173264265","314000000X","0463","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0900613","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","LNHA","","","","","","","","","","","","","","","","07/01/2020" -"1275536393","2","","","MEDICAL CENTER SURGERY ASSOCIATES, LP","","","","","","","","","","","","","","","","11377 CORTEZ BLVD","","BROOKSVILLE","FL","34613","US","3525973060","3525973077","11377 CORTEZ BLVD","","BROOKSVILLE","FL","34613","US","3525973060","3525973077","05/23/2005","02/13/2018","","","","","SWINNEY","WILLIAM","GREGORY","VP","9727892877","261QA1903X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","490001842","01","FL","MEDICARE RAILROAD","8030382001","01","FL","CIGNA HEALTHCARE","20898","01","FL","WELLCARE","6806444","01","FL","UNITED HEALTH CARE","079081800","05","FL","","61X","01","FL","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1184627200","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","3826 CEDAR SPRINGS RD","","DALLAS","TX","752194136","US","2145224006","","05/23/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","3336H0001X","","","N","332B00000X","","","N","3336C0003X","17222","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","144464","05","TX","","82539243","05","NM","","100850770A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1093718116","2","","","MITCHELL WICKER JR MD PSC","","","","","","","HAZARD CLINIC","3","","","","","","","","PO BOX 719","","HAZARD","KY","417020719","US","6064391316","6064350752","271 E MAIN ST","","HAZARD","KY","417011939","US","6064391316","6064350752","05/23/2005","01/17/2014","","","","","WICKER","MITCHELL","","OWNER","6064391316","207R00000X","21790","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","31001035","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","JR.","MD","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1528061645","2","","","PLEASANT VALLEY HOSPITAL, INC","","","","","","","PLEASANT VALLEY HOME HEALTH","3","","","","","","","","1011 VIAND STREET","","POINT PLEASANT","WV","25550","US","3046757400","3046757401","1011 VIAND STREET","","POINT PLEASANT","WV","25550","US","3046757400","3046757401","05/23/2005","01/06/2017","","","","","BEST","MISTIE","DAWN","DIRECTOR","3046757400","251E00000X","2514H0200Z","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0001300002","05","WV","","0370807","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","PLEASANT VALLEY HOSPITAL, INC","","","","RN, MSN, MHA","","","","","","","","","","","","","","","","" -"1154324275","2","","","SENIORS FIRST INC.","","","","","","","","","","","","","","","","PO BOX 633079","","CINCINNATI","OH","452633079","US","5138911006","5137931032","619 OAK ST","RM 645","CINCINNATI","OH","452061613","US","5135696780","5135696555","05/23/2005","12/08/2009","","","","","AHMED","AMAN","","PRESIDENT","5135696780","207R00000X","","","N","363AM0700X","","","N","207RG0300X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2984114","05","OH","","CK5408","01","","RR MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1053314161","2","","","CHOICE MEDICAL, INC.","","","","","","","","","","","","","","","","314 ERIN DR","SUITE 102","KNOXVILLE","TN","379196209","US","8655881643","8655884355","314 ERIN DR","SUITE 102","KNOXVILLE","TN","379196209","US","8655881643","8655884355","05/23/2005","10/23/2009","","","","","HENSON","RICHARD","","PRESIDENT","8655881643","332BC3200X","127397","TN","N","335E00000X","127397","TN","N","332B00000X","127397","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1454378","05","TN","","7703857","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1699778704","2","","","WEBSTER COUNTY MEMORIAL HOSPITAL","","","","","","","","","","","","","","","","PO BOX 312","324 MILLER MOUNTAIN DRIVE","WEBSTER SPRINGS","WV","26288","US","3048475682","3048475985","324 MILLER MOUNTAIN DR","","WEBSTER SPRINGS","WV","262881026","US","3048475682","3048475985","05/23/2005","07/20/2015","","","","","RIFFLE","TINA","LOUISE","CREDENTIALING","3048475682","282NC0060X","1449","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1720243769","01","WV","NPI","1013203058","01","WV","NPI","1992078380","01","WV","NPI","1053679282","01","WV","NPI","1437453719","01","WV","NPI","1639264582","01","WV","NPI","1760776272","01","WV","NPI","1174788111","01","WV","NPI","1255661955","01","WV","NPI","1730415332","01","WV","NPI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","","","","","","","","","","","","","","","","" -"1861495954","2","","","HERITAGE HOSPICE, INC.","","","","","","","","","","","","","","","","PO BOX 1213","","DANVILLE","KY","404231213","US","8592362425","8592366152","120 ENTERPRISE DR","","DANVILLE","KY","404221870","US","8592362425","8592366152","05/23/2005","02/07/2017","","","","","WHEELER","JANELLE","LANE","EXECUTIVE DIRECTOR","8592362425","207QH0002X","400010","KY","N","364SA2100X","400010","KY","N","364SA2200X","400010","KY","N","364SC2300X","400010","KY","N","364SG0600X","400010","KY","N","364SL0600X","400010","KY","N","251G00000X","400010","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","44011013","05","KY","","000000175142","01","KY","PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","L.C.S.W.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","" -"1770586869","2","","","EMERGENCY ROOM ASSOCIATES LIMITED","","","","","","","","","","","","","","","","P.O. BOX 12730","","TUCSON","AZ","85732","US","5206478854","","350 N WILMOT RD","","TUCSON","AZ","85711","US","5208735429","","05/23/2005","01/16/2015","","","","","EVANS","KIMBERLY","","OFFICE MANAGER","5206478854","207P00000X","0134888","AZ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","747933","05","AZ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1598768681","2","","","STERLING COUNTY NURSING HOME","","","","","","","","","","","","","","","","PO BOX 46","","STERLING CITY","TX","769510046","US","3253782134","3253782170","309 5TH STREET","","STERLING CITY","TX","76951","US","3253782134","3253782170","05/23/2005","08/28/2015","","","","","KING","BURT","ALLEN","CFO","9036578969","314000000X","=========","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000488901","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1417950593","2","","","VILLAGE OF FERTILE","","","","","","","FAIR MEADOW NURSING HOME","5","","","","","","","","PO BOX 8","300 GARFIELD AVE. SE","FERTILE","MN","565400008","US","2189456194","2189456459","300 GARFIELD AVE. SE","","FERTILE","MN","565400008","US","2189456194","2189456459","05/23/2005","10/20/2009","","","","","ROBERTSON","BARRY","J.","ADMINISTRATOR","2189456194","314000000X","327713","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","804740500","05","MN","","4541FA","01","MN","BLUE CROSS/BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1407859580","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","CHI NEUROSCIENCE","3","","","","","","","","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8145358885","8145358720","1450 SCALP AVE","","JOHNSTOWN","PA","159043374","US","8145345700","8142695233","05/23/2005","08/22/2020","","","","","LAMBERT","ELAINE","M","CHIEF OPERATING OFFICER","8145331630","2084N0400X","MD418166","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1760485841","2","","","GESSLER DRUG CO INC","","","","","","","GESSLER WESTLINK","3","","","","","","","","1834 MARC AVE","","ANDOVER","KS","670029435","US","3167332136","","8903 W CENTRAL AVE","","WICHITA","KS","672123804","US","3166831318","","05/23/2005","08/18/2016","","","","","SCHWARZ","HAL","","PRESIDENT","3166831318","333600000X","","","N","3336C0003X","2-08300","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100435070A","05","KS","","6013811504","05","KS","","2030648","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPH","","","","","","","","","","","","","","","","" -"1306849484","2","","","NETGROUP HOME PHARMACY, INC.","","","","","","","","","","","","","","","","521 OLD DIXIE HWY","","TEQUESTA","FL","334692344","US","5617439974","5617415220","521 OLD DIXIE HWY","","TEQUESTA","FL","334692344","US","5617439974","5617415220","05/23/2005","08/22/2020","","","","","ROTHENBERG","BRUCE","M","PRESIDENT","5617439974","332B00000X","PH17919","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1396748471","2","","","NORTH WHEELER COUNTY HOSPITAL DISTRICT","","","","","","","PARKVIEW HOSPITAL","3","","","","","","","","901 S. SWEETWATER STREET","BOX 1030","WHEELER","TX","790961030","US","8068265581","8068263201","901 S. SWEETWATER STREET","","WHEELER","TX","790961030","US","8068265581","8068263201","05/23/2005","08/07/2017","","","","","KIDD","MONICA","R","CEO","8068265581","207P00000X","","TX","N","282NC0060X","000116","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1683815","05","TX","","121787905","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN, BSN, MSN","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1295738375","2","","","OREGON SURGICENTER LLC","","","","","","","","","","","","","","","","2400 HARTMAN LN","STE 300","SPRINGFIELD","OR","974771198","US","5413431603","5416870281","2400 HARTMAN LN","STE 300","SPRINGFIELD","OR","974771198","US","5413431603","5416870281","05/23/2005","08/25/2017","","","","","FITZPATRICK","TERRANCE","","ADMINISTRATOR","5413343350","261QA1903X","393786","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","277843","05","OR","","P00175746","01","OR","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1649273723","2","","","ST CHARLES ORTHOPAEDIC SURGERY ASSOCIATES INC.","","","","","","","","","","","","","","","","9323 PHOENIX VILLAGE PKWY","","O FALLON","MO","633664281","US","6365615030","6365615033","400 1ST CAPITOL DR","STE 100","SAINT CHARLES","MO","633012881","US","6369467050","6369463368","05/23/2005","10/13/2009","","","","","CROWDER","SUZANN","","ADMINISTRATOR","6369467050","207X00000X","=========","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","370199300","01","","DOL","134766","01","MO","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1003819186","2","","","CENTRAL OHIO FOOT AND ANKLE INC","","","","","","","","","","","","","","","","393 E TOWN ST","SUITE 229","COLUMBUS","OH","432154741","US","6142528637","","393 E TOWN ST","SUITE 229","COLUMBUS","OH","432154741","US","6142528637","","05/23/2005","03/21/2016","","","","","MOYLER","JOHN","","OWNER","6142528637","213E00000X","36002890","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CD3986","01","OH","RAILROAD MEDICARE","0376249","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","DPM","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1720081805","2","","","HOSPICE OF SOUTHERN ILLINOIS, INC.","","","","","","","","","","","","","","","","305 S ILLINOIS ST","","BELLEVILLE","IL","622202133","US","6182351703","6182353130","305 S ILLINOIS ST","","BELLEVILLE","IL","622202133","US","6182351703","6182353130","05/23/2005","10/05/2015","","","","","WISDOM","REBECCA","J","PRESIDENT & CEO","6182351703","251G00000X","2000115","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","LCSW","","","","","","","","","","","","","","","","" -"1548263619","2","","","AZAR EYE SURGERY CENTER LLC","","","","","","","","","","","","","","","","31519 WINTERPLACE PKWY","STE 3","SALISBURY","MD","218041884","US","4432602828","4432602454","31519 WINTERPLACE PKWY","STE 1","SALISBURY","MD","218041884","US","4105462500","4432602454","05/23/2005","06/28/2012","","","","","AZAR","ALEX","","PRESIDENT","4432602828","261QA1903X","A1355","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","465550800","05","MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1275536344","2","","","ZEELAND COMMUNITY HOSPITAL","","","","","","","SPECTRUM HEALTH ZEELAND COMMUNITY HOSPITAL","3","","","","","","","","8333 FELCH ST","","ZEELAND","MI","494642608","US","6167727513","6167482840","8333 FELCH ST","","ZEELAND","MI","494642608","US","6167727513","6167482840","05/23/2005","09/15/2014","","","","","POWERS","RYAN","","VP FINANCE","6167727513","333600000X","","","N","3336I0012X","5301006735","MI","N","282N00000X","5301006735","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2039479","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1275536385","2","","","ALABAMA EYE & CATARACT CENTER PC","","","","","","","","","","","","","","","","1201 11TH AVE S","STE 501","BIRMINGHAM","AL","352053423","US","2059300930","2059309050","1201 11TH AVE S","STE 501","BIRMINGHAM","AL","352053423","US","2059300930","2059309050","05/23/2005","10/18/2017","","","","","MICHELSON","MARC","A","PRESIDENT","2059300930","174400000X","=========","AL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1174526289","2","","","CAMERON MEMORIAL COMMUNITY HOSPITAL, INC","","","","","","","CAMERON HOME HEALTH CARE AND HOSPICE","5","","","","","","","","416 E MAUMEE ST","","ANGOLA","IN","467032015","US","2606652141","2606658608","416 E MAUMEE ST","","ANGOLA","IN","467032015","US","2606652141","2606658608","05/23/2005","06/06/2016","","","","","BOMBA","DOUGLAS","","CFO","2606652141","251E00000X","05-005308-1","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000000097654","01","IN","BLUE CROSS BLUE SHIELD PI","200056150A","05","IN","","1174526289","01","IN","PECOS","100263930A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","CAMERON MEMORIAL COMMUNITY HOSPITAL, INC","","","","","","","","","","","","","","","","","","","","" -"1083617195","2","","","DYABETIMED LLC","","","","","","","","","","","","","","","","9045 LA FONTANA BLVD","STE C7A","BOCA RATON","FL","334345637","US","8668070024","8668070031","9045 LA FONTANA BLVD","STE C7A","BOCA RATON","FL","334345637","US","8668070024","8668070031","05/23/2005","08/22/2020","","","","","KIKEN","GREGG","A","PRESIDENT","8668070024","332B00000X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1437152543","2","","","MEDFUND LLC","","","","","","","HORIZON PLANTATION LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","150 N UNIVERSITY DR","STE 110","PLANTATION","FL","333242004","US","9544233674","9549160674","05/23/2005","08/17/2018","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5202","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105715-19","01","FL","CITRUS HMO","470001847","01","FL","RR MCARE","V2652","01","FL","BCBS PROVIDER #","470001841","01","","RAILROAD MCARE #","103905414","01","","DEPT OF LABOR/ACS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1073516183","2","","","CAPITAL HEALTH SYSTEM, INC.","","","","","","","CAPITAL HEALTH MEDICAL CENTER - HOPEWELL","3","","","","","","","","3131 PRINCETON PIKE","BUILDING 5, SUITE 208","LAWRENCEVILLE","NJ","086482201","US","6098157998","6098157827","1 CAPITAL WAY","","PENNINGTON","NJ","085342520","US","6098157998","6098157827","05/23/2005","09/13/2013","","","","","VISCONTI","DEBORAH","LEIGH","DIRECTOR OF PATIENT ACCOUNTS","6098157998","282N00000X","31DO121851","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4138201","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1144223249","2","","","SPECIALTY NURSING SERVICES INC","","","","","","","","","","","","","","","","620 S 9500 E","","HUNTSVILLE","UT","84317","US","8017322178","8017322173","620 S 9500 E","","HUNTSVILLE","UT","84317","US","8017322178","8017322173","05/23/2005","01/03/2018","","","","","BUTCHER","TAWSHAWNI","K","OFFICE MANAGER","8017322168","291U00000X","46D0925016","UT","N","251E00000X","2004-HHA-844","UT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","467110","01","","MEDICARE OSCAR NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1043213143","2","","","PHILIP Y PADEN EYE CARE OPTICAL","","","","","","","PADEN EYE CARE OPTICAL","3","","","","","","","","221 W STEWART AVE","STE 110","MEDFORD","OR","975013647","US","5417769026","5417769096","221 W STEWART AVE","STE 110","MEDFORD","OR","975013647","US","5417769026","5417769096","05/23/2005","09/17/2008","","","","","BROOKS","VIRGINIA","M","SYSTEMS ADMINISTRATOR","5414945322","332H00000X","13653","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1952304057","2","","","MEDFUND LLC","","","","","","","HORIZON MANDARIN LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","3753 CARDINAL POINT DR","","JACKSONVILLE","FL","322575582","US","9046365674","9044484674","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5218","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105715-16","01","FL","CITRUS HMO","V2380","01","FL","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1689677783","2","","","UNIVERSITY OF MARYLAND MEDICAL SYSTEM CORPORATION","","","","","","","","","","","","","","","","827 LINDEN AVE","","BALTIMORE","MD","212014606","US","4102258240","","827 LINDEN AVE","","BALTIMORE","MD","212014606","US","4102258240","","05/23/2005","11/19/2019","","","","","FLEISCHMANN","CRAIG","ALLEN","VICE PRESIDENT, FINANCE","4103281092","261QR0405X","D0002290","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","284402800","05","MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1598768699","2","","","MEDICAL MALL PHARMACY INC","","","","","","","MEDICAL MALL PHARMACY","3","","","","","","","","1 MEDICAL PARK BLVD STE 106","","BRISTOL","TN","376207430","US","","","1 MEDICAL PARK BLVD","SUITE 106-E","BRISTOL","TN","376207430","US","4238442888","4238442891","05/23/2005","04/30/2009","","","","","HAGEE","KRISTINE","","PHARMACY SYSTEMS ANALYST","4232308432","333600000X","","","N","3336C0003X","2964","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4428719","01","","NCPDP PROVIDER IDENTIFICATION NUMBER","008503257","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1942203047","2","","","HEMATOLOGY ONCOLOGY LIFE CENTER, LLC","","","","","","","","","","","","","","","","605 MEDICAL CENTER DR STE B","","ALEXANDRIA","LA","713018145","US","3184422232","3184422192","605B MEDICAL CENTER DR","","ALEXANDRIA","LA","713018127","US","3184422232","3184422192","05/23/2005","06/25/2020","","","","","BAILEY","APRIL","","PRACTICE ADMINISTRATOR","3184422232","174400000X","","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1441937","05","LA","","CH7899","01","LA","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","06/25/2020" -"1851394951","2","","","CONTINUOUS CARE, INC","","","","","","","","","","","","","","","","162 N MAIN ST","","OLD FORGE","PA","185181726","US","","","162 N MAIN ST","","OLD FORGE","PA","185181726","US","5704576311","5704570465","05/23/2005","03/14/2008","","","","","POTELUNAS","JAMES","P.","C.E.O.","5704576311","332B00000X","","","N","332BP3500X","","","N","335E00000X","","","N","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0011770980001","05","PA","","201598","01","PA","BLUE CROSS PROVIDER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1497758593","2","","","HOSPICE TOUCH, INC.","","","","","","","REMITA HEALTH","3","","","","","","","","3070 BRISTOL ST STE 100","","COSTA MESA","CA","926267334","US","7143271936","7143270151","3070 BRISTOL ST STE 100","","COSTA MESA","CA","92626","US","7143271936","7143270151","05/23/2005","05/23/2018","","","","","SLAGER","RICHARD","","CEO","4805866050","251G00000X","080000769","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HPC01757F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1740283845","2","","","METRO FAMILY PRACTICE, INC.","","","","","","","METRO COMMUNITY HEALTH CENTER","3","","","","","","","","1789 S BRADDOCK AVE","SUITE 410","PITTSBURGH","PA","152181842","US","4122472310","4122474060","1789 S BRADDOCK AVE","SUITE 410","PITTSBURGH","PA","152181842","US","4122472310","4122474060","05/23/2005","04/18/2017","","","","","HUGHES","MARLENE","","CHIEF EXECUTIVE OFFICER","4122472310","261QF0400X","100728002","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1007280020006","05","PA","","725502","01","PA","HIGHMARK BLUES","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1386647485","2","","","VISITING HEALTH SERVICES OF NEW JERSEY INC.","","","","","","","","","","","","","","","","783 RIVERVIEW DR","P.O. BOX 1007","TOTOWA","NJ","075121717","US","9732564636","9732566778","783 RIVERVIEW DR","","TOTOWA","NJ","075121717","US","9732564636","9732566778","05/23/2005","11/23/2010","","","","","LOMBARDO","ANTHONY","","PRESIDENT/CHIEF EXECUTIVE OFFICER","9732564636","251E00000X","71603","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3690903","05","NJ","","3690911","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","VISITING HEALTH SERVICES MANAGEMENT INC.","","","","","","","","","","","","","","","","","","","","" -"1295738391","2","","","CAREMED RESPIRATORY SERVICES INC.","","","","","","","","","","","","","","","","1911 US HWY 301 NORTH","#340","TAMPA","FL","33619","US","8136217799","8136204881","1911 N US HIGHWAY 301","STE 340","TAMPA","FL","336192661","US","8136217799","8136204881","05/23/2005","12/13/2010","","","","","HAUSMAN","MARY","E.","PRESIDENT","8136217799","332B00000X","828","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","R6311","01","FL","BLUE CROSS PROVIDER ID","028948500","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1003819103","2","","","LANCASTER EMERGENCY MEDICAL SERVICES ASSOCIATION","","","","","","","","","","","","","","","","100 E CHARLOTTE ST","","MILLERSVILLE","PA","175511506","US","7178724688","7178722857","100 E CHARLOTTE ST","","MILLERSVILLE","PA","175511506","US","7178724688","7178722857","05/23/2005","01/11/2016","","","","","GREINER","RYAN","","CHIEF FINANCIAL OFFICER","7178724688","3416L0300X","02099-RELICENSE","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0015944100008","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1649273749","2","","","GREENWOOD UROLOGICAL P.A.","","","","","","","","","","","","","","","","109 LINER DRIVE","","GREENWOOD","SC","29646","US","8009224194","","109 LINER DR","","GREENWOOD","SC","296462311","US","8009224194","","05/23/2005","01/19/2015","","","","","KING","CLAUDIA","E.","ADMINISTRATOR","8009224794","208800000X","","SC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GP2105","05","SC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1639172737","2","","","MEDFUND LLC","","","","","","","HORIZON VENICE LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","1370 E VENICE AVE","","VENICE","FL","342859082","US","9414856736","9414833211","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5219","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105715-03","01","","CITRUS HMO","V2653","01","FL","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1639172745","2","","","TRI COUNTY ORTHOPEDIC SURGEONS INCORPORATED","","","","","","","","","","","","","","","","3244 BAILEY ST NW","","MASSILLON","OH","446463616","US","3308378391","3308372221","3244 BAILEY ST NW","","MASSILLON","OH","446463616","US","3308378391","3308372221","05/23/2005","06/16/2010","","","","","MORETTA","DANIEL","NEIL","PRESIDENT","3308378391","207XS0117X","4160","OH","N","213ES0103X","36-003415","OH","N","207X00000X","3505","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0242437","05","OH","","0530956","05","OH","","2599068","05","OH","","0817772","05","OH","","4160","01","OH","JEFFREY COCHRAN LICENSE","36003415","01","OH","LICENSE","3505","01","OH","DANIEL MORETTA LICENSE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.O.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1093718199","2","","","CLEVELAND PHYSICAL THERAPY ASSOCIATES INC","","","","","","","","","","","","","","","","1129 E MARION ST","","SHELBY","NC","281504843","US","7044710001","7044710004","1129 E MARION ST","","SHELBY","NC","281504843","US","7044710001","7044710004","05/23/2005","08/22/2020","","","","","MILLER","DONALD","GLENN","OWNER","7044710001","261QP2000X","","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7210246","05","NC","","7211706","05","NC","","7211360","05","NC","","7211362","05","NC","","7211359","05","NC","","7211364","05","NC","","NC1056","01","NC","SUBMITTER ID","7301634","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","JR.","DPT, MS, PT","","","","","","","","","","","","","","","","" -"1356344451","2","","","GATEWAY FAMILY HEALTH CLINIC, LTD.","","","","","","","","","","","","","","","","4570 CTY HWY 61","","MOOSE LAKE","MN","557679401","US","2184854491","2184854724","4570 CTY HWY 61","","MOOSE LAKE","MN","557679401","US","2184854491","2184854724","05/23/2005","10/16/2015","","","","","NIELSEN","ERIC","","ADMINISTRATOR","2184854491","208000000X","43634","MN","N","363A00000X","11706","MN","N","363LF0000X","R 147424-0","MN","N","363LF0000X","R 137363-9","MN","N","364S00000X","R 108935-0","MN","N","207Q00000X","36731","MN","N","207Q00000X","36725","MN","N","207Q00000X","41745","MN","N","207Q00000X","47303","MN","N","207Q00000X","33016","MN","N","207Q00000X","34715","MN","N","207Q00000X","46671","MN","N","207Q00000X","54207","MN","N","207R00000X","43634","MN","N","207Q00000X","20268","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","" -"1174526271","2","","","ORLANDO SURGERY CENTER II LTD","","","","","","","","","","","","","","","","2000 N ORANGE AVE","","ORLANDO","FL","328045533","US","4078972000","4078975192","2000 N ORANGE AVE","","ORLANDO","FL","328045533","US","4078972000","4078975192","05/23/2005","12/10/2007","","","","","BRUENER","JEFF","","FACILITY ADMINISTRATOR","4078972000","261QA1903X","261QA1903X","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1154324242","2","","","LEWY PHYSICAL THERAPY INC","","","","","","","","","","","","","","","","8448 SIEGEN LANE","","BATON ROUGE","LA","70810","US","2257678182","2257678757","8448 SIEGEN LANE","","BATON ROUGE","LA","70810","US","2257678182","2257678757","05/23/2005","04/07/2014","","","","","PYLE","JAMI","","ACCOUNTS MANAGER","2257678182","225100000X","01629","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5C911","01","LA","MEDICARE PTAN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","I","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1366445751","2","","","MEDFUND LLC","","","","","","","HORIZON CAPE CORAL LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","1003 DEL PRADO BLVD","STE 102","CAPE CORAL","FL","339903601","US","2395736333","2395738674","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5204","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105715-18","01","FL","CITRUS HMO","V2654","01","FL","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1053314146","2","","","BIOTECH CLINICAL LABORATORIES INC","","","","","","","","","","","","","","","","25775 MEADOWBROOK RD","","NOVI","MI","483751849","US","2489121700","2489121730","25775 MEADOWBROOK RD","","NOVI","MI","483751849","US","2489121700","2489121730","05/23/2005","04/27/2015","","","","","KHALIFEH","GIOVANNI","","VICE PRESIDENT","2489121700","291U00000X","23D0709666","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2928322","05","MI","","0F31535","01","MI","BCBS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1962405050","2","","","CLOSER HEALTHCARE GOVERNMENT GROUP, INC.","","","","","","","CLOSER HEALTHCARE, INC.","5","","","","","","","","521 OLD DIXIE HWY","","TEQUESTA","FL","334692344","US","5617439974","5617415220","521 OLD DIXIE HWY","","TEQUESTA","FL","334692344","US","5617439974","5617415220","05/23/2005","08/22/2020","","","","","ROTHENBERG","BRUCE","M","PRESIDENT","5617439974","332B00000X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","R8574","01","FL","BCBS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1508869694","2","","","I V SOLUTIONS INC","","","","","","","IV SOLUTIONS INC","3","","","","","","","","162 N MAIN ST","","OLD FORGE","PA","185181726","US","5704579201","5704570465","162 N MAIN ST","","OLD FORGE","PA","185181726","US","5704579201","5704570465","05/23/2005","08/15/2013","","","","","POTELUNAS","JAMES","","PRESIDENT AND CEO","5704579201","3336S0011X","","","N","3336H0001X","PP414691L","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0013071650001","05","PA","","2081422","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1679576763","2","","","COUNTY OF BEAUFORT","","","","","","","BEAUFORT CO. HD - HEALTH DEPARTMENT","3","","","","","","","","1436 HIGHLAND DR","","WASHINGTON","NC","278893222","US","2529461902","2529468430","1436 HIGHLAND DR","","WASHINGTON","NC","278893222","US","2529461902","2529468430","05/23/2005","07/20/2020","","","","","MADSON","JAMES","","HEALTH DIRECTOR","2529461902","251K00000X","=========","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0728H","01","NC","BLUE CROSS PROVIDER NUMBE","3404307","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF BEAUFORT","","MR.","","RN","","","","","","","","","","","","","","","","07/20/2020" -"1588667679","2","","","TRI RIVERS SURGICAL ASSOCIATES, INC","","","","","","","TRI RIVERS PHYSICAL MEDICINE & REHABILITATION","5","","","","","","","","9104 BABCOCK BLVD","STE 2120","PITTSBURGH","PA","152375818","US","4123670600","4123677079","9104 BABCOCK BLVD","STE 2120","PITTSBURGH","PA","152375818","US","4123670600","4123677079","05/23/2005","11/03/2010","","","","","AGNEW","D.","KELLY","PRESIDENT","4123670600","207XS0117X","","","N","207QS0010X","","","N","208100000X","","PA","N","2081P2900X","","PA","N","363AS0400X","","PA","N","363L00000X","","PA","N","207X00000X","","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0006963180002","05","PA","","0006963180003","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","" -"1215930300","2","","","KIRK'S DRUG, INC","","","","","","","KIRK'S CHS MEDICAL SERVICES","3","","","","","","","","6149 MARTIN WAY E","","LACEY","WA","985165547","US","3604938614","3604938612","6906 MARTIN WAY","","OLYMPIA","WA","985165567","US","3604565475","3604912161","05/23/2005","08/19/2010","","","","","WALETICH","MARVIN","JAMES","CEO","3606947377","332BX2000X","","WA","N","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9011800","05","WA","","1005114","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","KIRK'S DRUG, INC","","","","RPH","","","","","","","","","","","","","","","","" -"1942203039","2","","","HATO REY HEMATOLOGY ONCOLOGY GROUP","","","","","","","","","","","","","","","","PO BOX 11965","","SAN JUAN","PR","009221965","US","7877631788","7877567853","735 AVE PONCE DE LEON","STE 408","SAN JUAN","PR","009175025","US","7877631788","7877567853","05/23/2005","08/22/2020","","","","","RIVERA","RAFAEL","","ADMINISTRATOR","7877631788","207RH0003X","6085","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","MHSA","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1487657573","2","","","INTEGRATED REGIONAL LABORATORIES, LLP","","","","","","","","","","","","","","","","5361 NW 33RD AVENUE","","FT. LAUDERDALE","FL","333096313","US","9547770018","9547773440","5361 NW 33RD AVENUE","","FT. LAUDERDALE","FL","333096313","US","9547770018","9547773440","05/23/2005","04/26/2010","","","","","ALEXANDER","ALMA","J","CHIEF FINANCIAL OFFICER (CFO)","9547770018","291U00000X","10D0964885","FL","N","291U00000X","","FL","N","291U00000X","800014878","FL","N","291U00000X","10D-0964885","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","L9208","01","FL","BLUE SHIELD","030661400","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1932102027","2","","","THERAPATH, LLC","","","","","","","","","","","","","","","","545 W 45TH ST","","NEW YORK","NY","100363409","US","8006814338","9174411116","545 W 45TH ST","","NEW YORK","NY","100363409","US","8006814338","9174411116","05/23/2005","06/19/2013","","","","","PRINCE","LINDA","","MANAGER","8006814338","291U00000X","PFI8042","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1447253521","2","","","PIONEER HEALTH SERVICES OF NEWTON COUNTY, LLC","","","","","","","PIONEER COMMUNITY HOSPITAL OF NEWTON","3","","","","","","","","9421 EASTSIDE DRIVE EXTENTION","","NEWTON","MS","393452613","US","6016830279","6016830366","9421 EASTSIDE DRIVE EXTENTION","","NEWTON","MS","393452613","US","6016832031","6016830264","05/23/2005","09/28/2010","","","","","MCNULTY","JOSEPH","S","CEO","6018496440","275N00000X","","","N","282NC0060X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","III","","","","","","","","","","","","","","","","","" -"1356344436","2","","","GESSLER DRUG CO INC","","","","","","","GESSLER EAST","3","","","","","","","","1834 MARC AVE","","ANDOVER","KS","670029435","US","3167332136","","4817 E DOUGLAS AVE STE 300","","WICHITA","KS","672181019","US","3166831318","","05/23/2005","08/19/2016","","","","","SCHWARZ","HAL","","PRESIDENT","3166831318","333600000X","","","N","3336C0003X","2-10257","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6013811502","05","KS","","2030663","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","PHARMACIST","","","","","","","","","","","","","","","","" -"1982607065","2","","","MEDICAL HOME SPECIALISTS INC","","","","","","","MEDICAL HOME CARE PROFESSIONALS INC","3","","","","","","","","2115 CHURN CREEK RD","","REDDING","CA","960020732","US","5302265577","5302265585","2115 CHURN CREEK RD","","REDDING","CA","960020732","US","5302265577","5302265585","05/23/2005","12/03/2012","","","","","MCKILLOP","KATHY","","PRESIDENT","5302265577","251E00000X","230000178","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZZ33575Z","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","LVN","","","","","","","","","","","","","","","","" -"1619970795","2","","","BIGHORN VALLEY HEALTH CENTER INCORPORATED","","","","","","","","","","","","","","","","PO BOX 309","","CHINOOK","MT","595230309","US","4063572403","4063573252","419 PENNSYLVANIA ST","","CHINOOK","MT","595230309","US","4063572403","4063573252","05/23/2005","03/01/2019","","","","","MARK","DAVID","ANDREW","CEO","4066654103","261QF0400X","9791","MT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","730354","05","MT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1336142413","2","","","TEXAN AMBULATORY SURGERY CENTER, LP","","","","","","","","","","","","","","","","7000 N MOPAC EXPRESSWAY","STE 120","AUSTIN","TX","787313030","US","5123420900","5123420808","7000 N MOPAC EXPRESSWAY","STE 120","AUSTIN","TX","787313030","US","5123420900","5123420808","05/23/2005","04/16/2020","","","","","DANNA","TERESA","","OFFICER/AUTHORIZED OFFICIAL","9727633890","261QA1903X","007965","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HH1519","01","TX","BLUE CROSS BLUE SHIELD","007965","01","TX","STATE ASC LICENSE NUMBER","0879769","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","04/16/2020" -"1245233329","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1201 NE 26TH ST","BAY 110","WILTON MANORS","FL","333051206","US","9545683789","","05/23/2005","09/13/2011","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PH0014061","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10382730001","05","FL","","103827300","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1790788875","2","","","MEDFUND LLC","","","","","","","HORIZON OCALA LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","301 SE 17TH ST","STE 102","OCALA","FL","344714434","US","3526227459","3526229238","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","HCC5200","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V2603","01","FL","BCBS PROVIDER #","196538","01","","WELLCARE HMO","105715-17","01","FL","CITRUS HMO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1962405043","2","","","DRS RIVERA INC","","","","","","","","","","","","","","","","PO BOX 932347","","CLEVELAND","OH","441930001","US","5138912813","5138911039","4460 RED BANK RD","STE 200","CINCINNATI","OH","452272172","US","5132974070","5132974070","05/23/2005","03/23/2011","","","","","RIVERA","ALFREDO","","PRESIDENT","5132974070","2084P0800X","","","N","2084P0805X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200970290 A","05","IN","","65937740","05","KY","","CJ6438","01","OH","RR MEDICARE","2962370","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1265435333","2","","","BLUE RIDGE NURSING CENTER OF MARTINSVILLE AND HENRY COUNTY INC.","","","","","","","BLUE RIDGE REHAB","3","","","","","","","","3073 HORSESHOE DR S","STE 102","NAPLES","FL","341046144","US","2399633400","2399633401","300 BLUE RIDGE ST","","MARTINSVILLE","VA","241127261","US","2766388701","2766382017","05/23/2005","12/23/2010","","","","","FORD","DORENE","M.","DIRECTOR OF MIS","2399633400","314000000X","NH2510","VA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4952812","05","VA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1710980883","2","","","MID FLORIDA EYE CENTER PA","","","","","","","","","","","","","","","","17560 HIGHWAY 441","","MOUNT DORA","FL","327576711","US","3527352020","3527353233","17560 US HIGHWAY 441","","MOUNT DORA","FL","327576711","US","3527352020","","05/23/2005","02/05/2020","","","","","NEAL","GEORGE","L","PRESIDENT","4692140144","152W00000X","","","N","207W00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","376541500","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","02/05/2020" -"1891798963","2","","","CARDIOVASCULAR HOME CARE, INC.","","","","","","","","","","","","","","","","2501 PARKVIEW DR","STE 426","FORT WORTH","TX","761025815","US","8178478888","8178471884","2501 PARKVIEW DR","STE 426","FORT WORTH","TX","761025815","US","8178478888","8178471884","05/23/2005","01/06/2014","","","","","CAMPBELL","BRIDGETTE","","EXECUTIVE DIRECTOR","8178478888","251E00000X","002934","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1427051598","2","","","VISITING NURSE ASSOCIATION OF BOSTON","","","","","","","","","","","","","","","","333 TURNPIKE RD","","SOUTHBOROUGH","MA","017721755","US","8005215539","5087861990","97 LIBBEY INDUSTRIAL PARKWAY","SUITE 301","WEYMOUTH","MA","021893110","US","8005215539","5087861990","05/23/2005","10/02/2019","","","","","CHAFFEE","HOLLY","","CEO","6178866882","251E00000X","227068","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","110024172A","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","","","","","","","","","","","","","","","","" -"1851394928","2","","","ULTIMATE HME, INC.","","","","","","","","","","","","","","","","3250 E 19TH ST","","LONG BEACH","CA","907551244","US","8664858463","8888162999","3250 E 19TH ST","","LONG BEACH","CA","907551244","US","8664858463","8888162999","05/23/2005","04/22/2008","","","","","GRIFFITH","SHELLY","RENEE","GENERAL MANAGER","8664858463","332BX2000X","200699","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DME03222F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1588667653","2","","","CLAIBORNE AMBULANCE INC","","","","","","","","","","","","","","","","606 E COLLEGE ST","","HOMER","LA","710403202","US","3189271141","3189272141","606 E COLLEGE ST","","HOMER","LA","710403202","US","3189271141","3189272141","05/23/2005","08/22/2020","","","","","WATSON","KAY","","PRESIDENT","3189271141","341600000X","25864","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","NREMT PARAMEDIC","","","","","","","","","","","","","","","","" -"1750384822","2","","","SURGICAL SPECIALTIES OF CASA GRANDE","","","","","","","THE SURGERY CENTER OF CASA GRANDE","3","","","","","","","","1760 E FLORENCE BLVD","BLDG 2","CASA GRANDE","AZ","852224776","US","5204212300","5204212411","1760 E FLORENCE BLVD","BLDG 2","CASA GRANDE","AZ","852224776","US","5204212300","5204212411","05/23/2005","08/22/2020","","","","","MARUCCI","BERNARD-DEAN","FRANK","MEDICAL DIRECTOR","5204212300","261QA1903X","OSC-3188","AZ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","750697","05","AZ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","","","","","","","","","","","","","","","","" -"1093718157","2","","","HAND SURGERY CENTER OF LOUISIANA LP","","","","","","","GREATER NEW ORLEANS SUGERY CENTER","3","","","","","","","","3434 HOUMA BLVD","STE 300","METAIRIE","LA","700064279","US","5044542017","5044542142","3434 HOUMA BLVD","STE 300","METAIRIE","LA","700064279","US","5044542017","5044542142","05/23/2005","08/04/2011","","","","","NICHOLS","PENNY","A","ADMINISTRATOR","5044542017","261QA1903X","93","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1436569","05","LA","","490004774","01","","MEDICARE RAILROAD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MISS","","MBA, CASC","","","","","","","","","","","","","","","","" -"1902809064","2","","","BOSTON OPEN MRI, LLC","","","","","","","","","","","","","","","","385 WESTERN AVE","","BRIGHTON","MA","021351005","US","6177821690","6177821735","385 WESTERN AVE","","BRIGHTON","MA","021351005","US","6177821690","6177821735","05/23/2005","08/22/2020","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024771815","2471M1202X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1531760","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1356344410","2","","","SURGERY CENTER OF HAMMOND, LLC","","","","","","","ST. LUKE'S SURGICENTER","3","","","","","","","","42144 VETERANS AVE","","HAMMOND","LA","704031427","US","9855426344","","42144 VETERANS AVE","","HAMMOND","LA","704031427","US","9855426344","","05/23/2005","10/04/2007","","","","","GRECO","JENNIFER","K","ADMINISTRATOR","9855426344","261QA1903X","104","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1108812","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1164425229","2","","","FIRST IMAGE OPTICAL LC","","","","","","","","","","","","","","","","17562 HIGHWAY 441","","MOUNT DORA","FL","327576711","US","3527352020","3527353233","17562 HIGHWAY 441","","MOUNT DORA","FL","327576711","US","3527352020","","05/23/2005","02/05/2020","","","","","NEAL","GEORGE","","PRESIDENT","8443776468","332H00000X","0656250005","FL","N","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","02/05/2020" -"1073516134","2","","","MEDFUND LLC","","","","","","","HORIZON AUGUSTA LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","2803 WRIGHTSBORO RD","STE 18","AUGUSTA","GA","309093917","US","7067299800","7067298980","05/23/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","52070692","01","","BCBS PROVIDER #","SL0069","05","SC","","7487068","01","GA","AETNA PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1427051580","2","","","MRI RADIOLOGY NEWTORK, PA","","","","","","","UNIVERSITY MRI -- PET NUCLEAR","3","","","","","","","","3848 FAU BLVD","SUITE 200","BOCA RATON","FL","334316437","US","5613629191","5613945674","3998 FAU BLVD","SUITE 200","BOCA RATON","FL","334316437","US","5613629191","5613945674","05/23/2005","08/12/2009","","","","","STEINBERG","FRED","","PRESIDENT/MEDICAL DIRECTOR","5613629191","261QR0200X","ME56655","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","256395900","05","FL","","256395904","05","FL","","256395901","05","FL","","256395902","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","","","","","","","","","","","","","","","","" -"1972506038","2","","","FAMILY HOME HEALTH PLUS, INC.","","","","","","","OHIO VALLEY HOME HEALTH, INC.","3","","","","","","","","1480 JACKSON PIKE","","GALLIPOLIS","OH","456312602","US","7404411393","7404411398","1480 JACKSON PIKE","","GALLIPOLIS","OH","456312602","US","7404411393","7404411398","05/23/2005","07/16/2013","","","","","BURGETT","APRIL","MICHELLE","VP, COO, ADMINISTRATOR, RN","7404411393","251E00000X","=========","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2158052","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MISS","","","","","","","","","","","","","","","","","","" -"1053314112","2","","","GULFCOAST SURGERY CENTER PA","","","","","","","","","","","","","","","","4947 CLARK RD","","SARASOTA","FL","342333252","US","9419249282","9419270797","4947 CLARK RD","","SARASOTA","FL","342333252","US","9419249282","9419270797","05/23/2005","04/23/2013","","","","","ASKINS","PHILIP","H","ADMINISTRATOR","9419249282","261QA1903X","1147","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5657489001","01","FL","CIGNA","6A4","01","FL","BLUECROSS BLUESHIELD FLOR","758256","05","FL","","490005687","01","FL","MEDICARE RAILROAD","286412","01","FL","AVMED","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1508869660","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","4101 GREENBRIAR ST","STE 235","HOUSTON","TX","770985244","US","7135211700","","05/23/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336H0001X","","","N","3336C0003X","17223","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","133336107","05","TX","","100850770C","05","OK","","144465","05","TX","","46859845","05","NM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1861495921","2","","","HEMATOLOGY ONCOLOGY LIFE CENTER PRESCOTT","","","","","","","","","","","","","","","","PO BOX 8255","","ALEXANDRIA","LA","713061255","US","3184422232","3184422192","2003 MACARTHUR DR","STE 5","ALEXANDRIA","LA","713013720","US","3186197707","3186197771","05/23/2005","06/19/2008","","","","","WOLD","HOWARD","G","LABORATORY DIRECTOR","3184422232","291U00000X","19D1020000","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","19D1020000","01","LA","CLIA ID #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1770586836","2","","","LIVINGSTON JOB INC","","","","","","","MEDICAL RENTALS AND SALES","3","","","","","","","","506B N WASHINGTON AVE","","LIVINGSTON","TX","773512840","US","9363277176","9363277178","506B N WASHINGTON AVE","","LIVINGSTON","TX","773512840","US","9363277176","9363277178","05/23/2005","07/11/2011","","","","","HAWKINS","BONNIE","","ASSISTANT MANAGER","9363277176","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","015616801","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1407859564","2","","","SOUTH COVE MANOR, INC","","","","","","","SOUTH COVE MANOR","3","","","","","","","","120 SHAWMUT AVENUE","","BOSTON","MA","021182293","US","6174230590","6172927922","120 SHAWMUT AVENUE","","BOSTON","MA","021182293","US","6174230590","6172927922","05/23/2005","04/01/2014","","","","","WONG","RICHARD","","PRESIDENT / CEO","6174230590","314000000X","0876","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0916056","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1124021282","2","","","TENDER TOUCH HOME CARE INC.","","","","","","","","","","","","","","","","150 E MARKET ST","","ELKIN","NC","286213464","US","3365268866","3368353220","150 E MARKET ST","","ELKIN","NC","286213464","US","3365268866","3368353220","05/23/2005","08/22/2020","","","","","HICKS","CYNTHIA","","OFFICE MANAGER","3365268866","251E00000X","HC1884","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3409206","05","NC","","6600706","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1942203005","2","","","LIFE CARE AT HOME OF TUCSON, INC","","","","","","","","","","","","","","","","3001 KEITH ST NW","","CLEVELAND","TN","373123713","US","4234735256","4233398356","1820 E RIVER RD","SUITE D 100","TUCSON","AZ","857185888","US","5204982288","5204984693","05/23/2005","09/22/2008","","","","","RAU","PAMELA","","VICE PRESIDENT OF FINANCE","4234735280","251E00000X","HHA 3307","AZ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","779051","01","AZ","AHCCCS","AZ0702780","01","AZ","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1023011186","2","","","SOSAR PHYSICAL THERAPY, LLC","","","","","","","","","","","","","","","","649 S GARFIELD AVE","","FRACKVILLE","PA","179312427","US","5708742125","5708744019","649 S GARFIELD AVE","","FRACKVILLE","PA","179312427","US","5708742125","5708744019","05/23/2005","08/22/2020","","","","","CONSTANTINE","REGINA","A.","BUSINESS MANAGER","5708742125","225100000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DA2003","01","PA","RAILROAD MEDICARE GROUP #","02642000","01","PA","CAPITAL BLUE CROSS GROUP","SO1425969","01","PA","BLUE SHIELD GROUP NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1487657540","2","","","TRANQUILITY HOME CARE, INC","","","","","","","","","","","","","","","","4231 GATE CRST","","SAN ANTONIO","TX","782174807","US","2109670100","2109670118","4231 GATE CRST","","SAN ANTONIO","TX","782174807","US","2109670100","2109670118","05/23/2005","08/22/2020","","","","","ALBERTHAL","PAULA","JEANETTE","ADMINISTRATIVE ASSOCIATE","2109670100","251E00000X","008068","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","019210-0001","01","TX","SECURE HORIZONS PROVIDER","2964632","01","TX","AETNA HMO PROVIDER NUMBER","7504380","01","TX","AETNA PPO PROVIDER NUMBER","HH309H","01","TX","BCBS PROVIDER NUMBER","019210-0001","01","TX","PACIFICARE PROVIDER NUMBE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","L.V.N.","","","","","","","","","","","","","","","","" -"1396748455","2","","","ALLEGHENY HOME HEALTH, INC.","","","","","","","","","","","","","","","","1100 W HIGH ST","SUITE 105","EBENSBURG","PA","159311706","US","8144712877","8144712876","1100 W HIGH ST","SUITE 105","EBENSBURG","PA","159311706","US","8144712877","8144712876","05/23/2005","01/20/2009","","","","","BRADLEY","STACY","","ADMINISTRATOR","8144712877","251E00000X","742705","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","01026576","05","PA","","850","01","PA","HIGHMARK BLUE CROSS PROVI","1009041910001","01","PA","PDAWAIVER PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1114920279","2","","","UNIVERSITY MRI RADIOLOGY ASSOCIATES, PL","","","","","","","","","","","","","","","","3848 NW 8TH AVE","STE 200","BOCA RATON","FL","334316437","US","5613629191","5613945674","3848 NW 8TH AVE","STE 200","BOCA RATON","FL","334316437","US","5613629191","5613945674","05/23/2005","09/27/2007","","","","","STEINBERG","FRED","","PRESIDENT","5613629191","174400000X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1922001080","2","","","MOBILE DIAGNOSTIC SYSTEMS, INC.","","","","","","","DIAGNOSTIC HEALTH SERVICES","3","","","","","","","","5055 KELLER SPRINGS RD","STE 500","ADDISON","TX","750016220","US","2142428500","2142428600","5055 KELLER SPRINGS RD","STE 500","ADDISON","TX","750016220","US","2142428500","2142428600","05/23/2005","07/27/2009","","","","","TURNER","CHRISTOPHER","","CEO","2142428500","261QR0208X","","","N","293D00000X","","","N","261QR0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0084DC","01","","BCBS OF TEXAS","088007201","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1295738359","2","","","ACCU-BIL MANAGEMENT LLC","","","","","","","OHIO CARE HOME CARE","3","","","","","","","","3070 PRESIDENTIAL DR","SUITE 250","FAIRBORN","OH","45324","US","9374264422","9373206243","3070 PRESIDENTIAL DR","SUITE 250","FAIRBORN","OH","45324","US","9374264422","9373206243","05/23/2005","05/20/2008","","05/05/2008","05/20/2008","","WEBSTER","LILLIE","M","ADMINISTRATIVE DIRECTOR","9374264422","251E00000X","0","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2537295","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","ACCU-BIL MANAGEMENT LLC","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1740283811","2","","","BEST MED INC","","","","","","","","","","","","","","","","116 S PARK DR","","BROWNWOOD","TX","768015918","US","3256469414","3256468275","116 S PARK DR","","BROWNWOOD","TX","768015918","US","3256469414","3256468275","05/23/2005","09/12/2017","","","","","RILEY","JOE","W","OWNER","3256469414","333600000X","16860","TX","N","3336L0003X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","350069","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RPH","","","","","","","","","","","","","","","","" -"1477556546","2","","","PULASKI MEMORIAL HOSPITAL","","","","","","","THE HERITAGE OF HUNTINGTON","3","","","","","","","","616 E 13TH ST","","WINAMAC","IN","469961117","US","5749462103","5749462129","1180 W 500 N","","HUNTINGTON","IN","467501661","US","2603552750","2603552759","05/23/2005","11/28/2016","","","","","MALOTT","GREGG","","DIRECTOR OF BUSINESS DEVELOPMENT","5749462103","313M00000X","15-002910-1","IN","N","314000000X","15-002910-1","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200345390A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1295738367","2","","","EMERGENCY MEDICAL SPECIALISTS OF JACKSONVILLE","","","","","","","","","","","","","","","","PO BOX 863026","","ORLANDO","FL","328863026","US","8002888325","4198665453","1 SHIRCLIFF WAY","","JACKSONVILLE","FL","322044778","US","9043087300","4198665453","05/23/2005","02/19/2013","","","","","LUCEY","PAUL","","PARTNER","9043087300","207P00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","99356","01","FL","BCBS GROUP NUM","038371600","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1104829274","2","","","CAN COMMUNITY HEALTH, INC.","","","","","","","COMPREHENSIVE CARE CENTER DBA COMMUNITY AIDS NETWORK","4","","","","","","","","4440 FRUITVILLE RD","","SARASOTA","FL","342321926","US","9413660134","9414041760","1231 N TUTTLE AVE","","SARASOTA","FL","342373116","US","9413660134","9419511795","05/23/2005","07/29/2020","","","","","CARLISLE","RICHARD","E.","PRESIDENT / CEO","9413660134","122300000X","","","N","207Q00000X","","","N","207R00000X","","","N","207RI0200X","","","N","261QM1300X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","057256000","05","FL","","21725","01","FL","BCBS FL GROUP #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","07/29/2020" -"1376546440","2","","","ROME MEMORIAL HOSPITAL, INC.","","","","","","","","","","","","","","","","1500 N JAMES ST","","ROME","NY","134402844","US","3153387000","","1500 N JAMES ST","","ROME","NY","134402844","US","3153387000","","05/23/2005","03/19/2012","","","","","ARIGLIO","BASIL","","PRESIDENT/CEO","3153387000","282N00000X","=========","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","10023563","01","NM","CDPHP","0392","01","NY","MVP","352534","05","NY","","0009","01","NY","HMOBLUE","03001434","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1831192988","2","","","MD RADIOLOGICAL SERVICES, PSC","","","","","","","","","","","","","","","","HC 5 BOX 9950","","COROZAL","PR","007839509","US","7878594443","7877927598","CARRETERA 891 KM 15.1","BO. PUEBLO","COROZAL","PR","007839509","US","7878594443","7877927598","05/23/2005","06/02/2008","","","","","BELTRAN","WANDA","M","INTERNAL MEDICINE","7878594443","261QR0200X","110","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1740283894","2","","","CALDWELL COUNTY HOSPITAL, INC","","","","","","","CALDWELL COUNTY HOSPITAL HOME HEALTH AGENCY","3","","","","","","","","1310 US HIGHWAY 62 W","","PRINCETON","KY","424456106","US","2703652011","2703659433","1310 US HIGHWAY 62 W","","PRINCETON","KY","424456106","US","2703652011","2703659433","05/23/2005","03/01/2010","","","","","LOVELL","CHARLES","D","CEO","2703650321","251E00000X","150099","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","42001172","05","KY","","000000054481","01","KY","BC/BS SUPPLIER NUMBER","34001172","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","","","","","","","","","","","","","","","","","" -"1104829258","2","","","AVAMERE MEDICAL SUPPLY LLC","","","","","","","SIGNATURE MEDICAL SUPPLY","3","","","","","","","","25117 SW PARKWAY AVE","STE F","WILSONVILLE","OR","970709697","US","5037832483","5037832480","25117 SW PARKWAY AVE","STE F","WILSONVILLE","OR","970709697","US","5037832483","5037832480","05/23/2005","01/21/2010","","","","","DILLON","RICHARD","A.","OWNER/COO","9712242819","332BP3500X","","","N","332BN1400X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9052515","05","WA","","MS001OR","05","AK","","230869","05","OR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1720081870","2","","","ORTHOPAEDIC AMBULATORY SURGICAL INTERVENTION SERVICES, LLC","","","","","","","OASIS","3","","","","","","","","4889 MUNSON ST NW","","CANTON","OH","447183614","US","3304989898","3304984065","4889 MUNSON ST NW","","CANTON","OH","447183614","US","3304989898","3304984065","05/23/2005","08/06/2020","","","","","WARD","JODY","","BUSINESS OFFICE & FINANCIAL MANAGER","3304989898","261QA1903X","261QA1903X","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2167435","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","08/06/2020" -"1275536328","2","","","BELLAIRE OUTPATIENT SURGERY CENTER, LLP","","","","","","","BAYLOR SCOTT & WHITE SURGICARE - OAKMONT","3","","","","","","","","7200 OAKMONT BOULEVARD","","FORT WORTH","TX","761323902","US","8177323300","8177320110","7200 OAKMONT BOULEVARD","","FORT WORTH","TX","761323902","US","8177323300","8177320110","05/23/2005","03/26/2020","","","","","BLACH","PETER","","OFFICER/AUTHORIZED OFFICIAL","7133430832","261QA1903X","007890","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00090576","01","TX","RAILROAD MEDICARE","163516101","05","TX","","HH1393","01","","BCBS","202158900","01","","US DEPT OF LABOR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","03/26/2020" -"1184627234","2","","","CHESAPEAKE-POTOMAC HOME HEALTH AGENCY, INC","","","","","","","","","","","","","","","","7627 LEONARDTOWN RD","","HUGHESVILLE","MD","206373005","US","3012749000","3012744731","7627 LEONARDTOWN RD","","HUGHESVILLE","MD","206373005","US","3012749000","3012744731","05/23/2005","07/29/2013","","","","","ALBERTSON","DARLENE","J","EXECUTIVE DIRECTOR","3012749000","251E00000X","HH7138","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","404458400","05","MD","","MG2","01","MD","BCBS FED, XIP, XIC, XIA","995500300","05","MD","","02YY","01","MD","BCBS","58365401","01","MD","BCBS NASCO, XW","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1902809056","2","","","OMEGA HEALTH SUPPLY & DELIVERY, INC","","","","","","","","","","","","","","","","9909 S SHORE DR","SUITE 1F","PLYMOUTH","MN","554415037","US","6512989799","8664547922","9909 S SHORE DR","STE 1F","PLYMOUTH","MN","554415037","US","6512989799","8664547922","05/23/2005","08/22/2020","","","","","THOMPSON","GEORGE","","CEO","6512989799","332B00000X","5157430001","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1704686","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1811990963","2","","","FIRST COAST EYEWEAR INC","","","","","","","","","","","","","","","","2001 COLLEGE ST","","JACKSONVILLE","FL","322043703","US","9043555555","9043559966","2001 COLLEGE ST","","JACKSONVILLE","FL","322043703","US","9043555555","9043559966","05/23/2005","11/28/2011","","","","","SCHNIPPER","ROBERT","I","OWNER","9043555555","332H00000X","07702800003","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D7173","01","FL","BCBS","078661600","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1629071774","2","","","UNIVERSITY IMAGED GUIDED THERAPHY CENTERS","","","","","","","","","","","","","","","","3848 NW 8TH AVE","STE 200","BOCA RATON","FL","334316437","US","5613629191","5613945674","3848 NW 8TH AVE","STE 200","BOCA RATON","FL","334316437","US","5613629191","5613945674","05/23/2005","09/27/2007","","","","","STEINBERG","FRED","","PRESIDENT","5613629191","174400000X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1801899950","2","","","HOSPICE OF AMERICA, INC","","","","","","","","","","","","","","","","1N131 COUNTY FARM RD","","WINFIELD","IL","601902000","US","6306823871","","1229 ARROWHEAD CT","","CROWN POINT","IN","463078222","US","2196613100","","05/23/2005","04/05/2018","","","","","LOWE","MATTHEW","","CFO","6306823871","251G00000X","022044","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200121780B","05","IN","","200121780A","05","IN","","200121780C","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CPA","","","","","","","","","","","","","","","","" -"1346243490","2","","","LIFE CARE AT HOME OF RHODE ISLAND, INC.","","","","","","","","","","","","","","","","3001 KEITH ST NW","","CLEVELAND","TN","373123713","US","4234735256","4233398356","63 SOCKANOSSET CROSS RD","STE 1C","CRANSTON","RI","029205557","US","5082386878","5082386980","05/23/2005","03/30/2011","","","","","RAU","PAMELA","","VP OF FINANCE","4234735280","251E00000X","02286","RI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","58748","01","RI","BLUECROSS BLUE SHIELD","409746","01","RI","BLUE CHIP PROVIDER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1073516126","2","","","LUIS F GONZALEZ, III, MD, PC","","","","","","","CHAMPLAIN VALLEY OPEN MRI","3","","","","","","","","118 CONSUMER SQ","","PLATTSBURGH","NY","129016507","US","5185623650","5185623801","118 CONSUMER SQ","","PLATTSBURGH","NY","129016507","US","5185623650","5185623801","05/23/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024771815","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1718890","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1518960665","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","14847 COLLECTION CENTER DR","","CHICAGO","IL","606930148","US","8007535995","9523526698","115A N. EUCLID AVE","","ST. LOUIS","MO","63108","US","3144546676","3143671881","05/23/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","006064","MO","N","3336C0003X","006064","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","54013115","05","KY","","628567802","05","MO","","2378716","05","OH","","608567806","05","MO","","100850770F","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1245233121","2","","","SKIFF MEDICAL CENTER","","","","","","","","","","","","","","","","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","05/24/2005","08/15/2014","","","","","ALTMAN","BRETT","A","CEO","6417921273","207P00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0185876","05","IA","","18587","01","IA","BCBS ER PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","SKIFF MEDICAL CENTER","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1790788677","2","","","PHYSICIANS EYEWEAR, L.L.C.","","","","","","","","","","","","","","","","711 N CUSTER AVE","STE 2","GRAND ISLAND","NE","688034311","US","3083827223","3083826299","711 N CUSTER AVE","STE 2","GRAND ISLAND","NE","688034311","US","3083827223","3083826299","05/24/2005","04/21/2011","","","","","PROFFITT","ROBERT","S.","OWNER","3083827223","332B00000X","","","N","332H00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100249654-00","05","NE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1235132119","2","","","VIA CHRISTI HOME HEALTH WICHITA, LLC","","","","","","","ASCENSION AT HOME","3","","","","","","","","555 S WASHINGTON ST","SUITE 103","WICHITA","KS","672112424","US","3162688588","3162641265","1035 N EMPORIA AVE STE 230","","WICHITA","KS","672142972","US","3162688588","3162641265","05/24/2005","07/23/2020","","","","","SCOTT","STEVEN","","VP REVENUE CYCLE","4086582768","251E00000X","A87006","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100241930A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","07/23/2020" -"1417950395","2","","","GRAND VALLEY SURGICAL CENTER, LLC","","","","","","","","","","","","","","","","2680 LEONARD ST NE","STE 1","GRAND RAPIDS","MI","495256902","US","6162241110","","2680 LEONARD ST NE","STE 1","GRAND RAPIDS","MI","495256902","US","6162241110","","05/24/2005","08/16/2012","","","","","DUNWOODY","KARA","","CUSTOMER SERVICES MANAGER","6169492410","261QM1300X","416829","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","40362","01","MI","BCBS","490004173","01","MI","MEDICARE RAILROAD","OD17003","01","MI","BCBS SECONDARY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1922001809","2","","","ALTA LOS ANGELES HOSPITALS, INC.","","","","","","","LOS ANGELES COMM HOSP, NORWALK COMM HOSP & LA COMM HOSP AT BELLFLOWER","3","","","","","","","","4081 E OLYMPIC BLVD","","LOS ANGELES","CA","900233330","US","3232670477","3232610809","4081 E OLYMPIC BLVD","","LOS ANGELES","CA","900233330","US","3232670477","3232610809","05/24/2005","08/20/2015","","","","","SHIN","ELLEN","J","GENERAL COUNSEL","3109434500","273R00000X","930000039","CA","N","314000000X","930000039","CA","N","282N00000X","930000039","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZZD1917Z","01","CA","BLUE SHEILD","HSP40663F","05","CA","","LTC70086F","05","CA","","ZZZC8919Z","01","CA","BLUE SHIELD","HSC30663F","05","CA","","HSP30663F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","ALTA HOSPITALS SYSTEM, LLC","","MS.","","","","","","","","","","","","","","","","","","" -"1891798765","2","","","USC PPA, INC.","","","","","","","","","","","","","","","","1520 SAN PABLO ST","STE 4100","LOS ANGELES","CA","900335316","US","3234426000","3234426001","1520 SAN PABLO ST","STE 4100","LOS ANGELES","CA","900335316","US","3234426000","3234426001","05/24/2005","08/22/2020","","","","","BANGARA","SURESH","","C.E.O.","3234426000","103T00000X","PSY5097","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1780687657","2","","","SKIFF MEDICAL CENTER","","","","","","","","","","","","","","","","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","05/24/2005","08/15/2014","","","","","ALTMAN","BRETT","A","CEO","6417921273","367500000X","500041H","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","26546","01","IA","BCBS CRNA PROVIDER #","0265462","05","IA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","SKIFF MEDICAL CENTER","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1699778563","2","","","HEMOPHILIA OF GEORGIA","","","","","","","HEMOPHILIA OF GEORGIA","3","","","","","","","","8607 ROBERTS DR STE 150","","SANDY SPRINGS","GA","303502237","US","7705188272","7705183310","8607 ROBERTS DR STE 150","","SANDY SPRINGS","GA","303502237","US","7705188272","7705183310","05/24/2005","06/05/2020","","","","","ROSATO","EDITH","A","CEO","7705188272","333600000X","","","N","3336S0011X","PHRE007480","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00528393A","05","GA","","2018678","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","06/05/2020" -"1508869470","2","","","ST LUKES MEDICAL CENTER WOOD RIVER LTD","","","","","","","ST LUKES WOOD RIVER","3","","","","","","","","PO BOX 2777","","BOISE","ID","837012777","US","2087065000","","100 HOSPITAL DRIVE","","KETCHUM","ID","833409999","US","2087278100","","05/24/2005","11/28/2018","","","","","TAYLOR","JEFF","","CFO","2083812520","282NC0060X","62","ID","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","805909800","05","ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1417950387","2","","","ST. JOSEPH DRUGS, INC.","","","","","","","ST. JOSEPH APOTHECARY","3","","","","","","","","PO BOX 500","","SAINT JOSEPH","IL","618730500","US","2174692232","2174692381","204 N. MAIN ST.","","SAINT JOSEPH","IL","618730500","US","2174692232","2174692381","05/24/2005","05/14/2008","","","","","MUNDAY","KATHLEEN","A.","OWNER/PHARMACIST","2174692232","183500000X","054011849","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","032004839","01","IL","CONTROLLED SUBSTANCE LIC","054011849","01","IL","PHARMACY LICENSE","1427726","01","IL","NABP #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RPH.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1326041294","2","","","FRANKLIN WILLIAMSON BICOUNTY HEALTH DEPT","","","","","","","","","","","","","","","","8160 EXPRESS DR","","MARION","IL","62959","US","6189938111","6189936455","8160 EXPRESS DR","","MARION","IL","62959","US","6189938111","6189936455","05/24/2005","06/23/2016","","","","","MCENTIRE","TONY","","ADMINISTRATOR","6189938111","251E00000X","1001437","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.S.","","","","","","","","","","","","","","","","" -"1134122005","2","","","ST. MARY'S HEALTH INC","","","","","","","ST. VINCENT EVANSVILLE URGENT CARE-EPWORTH","3","","","","","","","","3700 WASHINGTON","","EVANSVILLE","IN","47750","US","8124856940","8124856949","100 ST. MARY'S EPWORTH CROSSING","SUITE B100","NEWBURGH","IN","476309161","US","8128539651","8128539899","05/24/2005","03/27/2017","","","","","BRIGGELER","LOIS","ANN","CREDENTIALING REPRESENTATIVE","8124856946","261QU0200X","","","N","261QU0200X","","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200394440A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1043213911","2","","","CONDELL MEDICAL CENTER","","","","","","","","","","","","","","","","900 GARFIELD AVE","","LIBERTYVILLE","IL","600483141","US","8473622900","8475734304","801 S MILWAUKEE AVE","","LIBERTYVILLE","IL","600483199","US","8473622900","8475734304","05/24/2005","04/20/2008","","","","","STEFO","ANDREW","","EXECUTIVE VICE PRESIDENT","8479905202","282N00000X","0000422","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1952304826","2","","","RML HEALTH PROVIDERS LIMITED PARTNERSHIP","","","","","","","RML SPECIALTY HOSPITAL","3","","","","","","","","5601 SOUTH COUNTY LINE ROAD","","HINSDALE","IL","60521","US","6302864220","6302864247","5601 SOUTH COUNTY LINE ROAD","","HINSDALE","IL","60521","US","6302864220","6302864247","05/24/2005","01/17/2017","","","","","PRISTER","JAMES","R","C.E.O.","6302864120","282E00000X","0004804","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2221273","01","IL","BLUE SHIELD","305","01","IL","BLUE CROSS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1689677551","2","","","TC HUDSON VALLEY AMBULANCE CORP.","","","","","","","TRANSCARE","3","","","","","","","","1 METROTECH CTR","20TH FLOOR","BROOKLYN","NY","112013949","US","7187638888","","16 MIDDLEBUSH RD","","WAPPINGERS FALLS","NY","125904004","US","8452258888","8454718084","05/24/2005","11/20/2012","","","","","O'CONNOR","JAMES","","PRESIDENT & CEO","7185109080","3416L0300X","0667","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02320854","05","NY","","P00019259","01","NY","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCARE CORP.","","MR.","","","","","","","","","","","","","","","","","","" -"1497758361","2","","","ACCURATE MEDICAL EQUIPMENT & SUPPLY CO INC","","","","","","","","","","","","","","","","550 HEMPHILL ST","","FORT WORTH","TX","761042252","US","8178821111","8178821118","550 HEMPHILL ST","","FORT WORTH","TX","761042252","US","8178821111","8178821118","05/24/2005","08/22/2020","","","","","REEVES","SHANNON","MICHAEL","PRESIDENT CEO","8178785030","333600000X","13285","TX","X","332B00000X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0014052730002","05","PA","","1531677","05","LA","","0220255","05","OH","","6014617","05","WA","","509449","01","TX","BCBS PROVIDER NUMBER","81602800","05","WI","","143915","05","TX","","4581931","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","","","","","","","","","","","","","","","","","" -"1306849278","2","","","MEDCENTRAL HOMECARE AND HOSPICE","","","","","","","","","","","","","","","","335 GLESSNER AVE","","MANSFIELD","OH","449032269","US","4195268442","4197562298","1020 CRICKET LN","LOWR LEVEL","MANSFIELD","OH","449064104","US","4195268442","4197562298","05/24/2005","08/22/2020","","","","","ALSLEBEN","MARTE","D","DIRECTOR","4195268442","251E00000X","251E00000X","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN, JD","","","","","","","","","","","","","","","","" -"1124021092","2","","","JACKSON PARISH AMBULANCE SERVICE DISTRICT","","","","","","","","","","","","","","","","115 WATTS ST","","JONESBORO","LA","712512053","US","3182592891","3182592099","115 WATTS ST","","JONESBORO","LA","712512053","US","3182592891","3182592099","05/24/2005","08/30/2010","","","","","WOLD","TRACY","BRANDON","EMS DIRECTOR","3182592877","3416L0300X","9110021","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","F4632","01","LA","BLUE CROSS BLUE SHIELD","P00634556","01","LA","RAILROAD MEDICARE (PALMETTO GBA)","1550426","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","BS EMT-P","","","","","","","","","","","","","","","","" -"1841293719","2","","","MOON LAKE PHARMACY, INC.","","","","","","","","","","","","","","","","1399 W SCHAUMBURG RD","","SCHAUMBURG","IL","601944134","US","8478953900","","1399 W SCHAUMBURG RD","","SCHAUMBURG","IL","601944134","US","8478953900","","05/24/2005","08/22/2020","","","","","YANOW","MARC","","PRESIDENT","8478953900","333600000X","","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","R.PH.","","","","","","","","","","","","","","","","" -"1750384624","2","","","L&B PHARMACY INC.","","","","","","","MEDICAP PHARMACY","3","","","","","","","","103 E 18TH ST","","CEDAR FALLS","IA","50613","US","3192771829","3192771870","103 E 18TH ST","","CEDAR FALLS","IA","50613","US","3192771829","3192771870","05/24/2005","09/19/2008","","","","","HARMS","BRADLEY","JOSEPH","OWNER MANAGER","3192771829","332B00000X","1095","IA","N","332BC3200X","1095","IA","N","332BP3500X","1095","IA","N","332BX2000X","1095","IA","N","335E00000X","1095","IA","N","3336C0003X","1095","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1620132","01","IA","NABP NUMBER","0196493","05","IA","","BM6527711","01","IA","DEA NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RPH","","","","","","","","","","","","","","","","" -"1154324929","2","","","OKANOGAN BEHAVIORAL HEALTHCARE","","","","","","","","","","","","","","","","PO BOX 3208","","OMAK","WA","988413208","US","5098266191","","107 W. APPLE","","OMAK","WA","988413028","US","5098266191","","05/24/2005","08/22/2020","","","","","BAUER","ROGER","","CEO","5098266191","101YM0800X","","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1063415834","2","","","ADVANCED DIABETIC SERVICES","","","","","","","","","","","","","","","","PO BOX 10327","","MURFREESBORO","TN","371290000","US","6158964237","6158481026","151 HERITAGE PARK DR","STE 403","MURFREESBORO","TN","371290505","US","6158964237","6158481026","05/24/2005","03/31/2008","","","","","SAALFELD","BEN","JAMES","CO-OWNER","6158964237","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9000649500","05","KY","","XDME03007","05","CA","","1158950","05","LA","","2403063","05","OH","","1454235","05","TN","","9058850","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1881697654","2","","","NORTH COUNTRY EMERGENCY MEDICAL SERVICES","","","","","","","","","","","","","","","","PO BOX 189","","YACOLT","WA","986750299","US","3606863271","3606868127","300 W HOAG ST","","YACOLT","WA","986755604","US","3606863271","","05/24/2005","01/09/2018","","","","","PITTS","KIM","","ADMINISTRATIVE ASSISTANT","3606863271","3416L0300X","601009935","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","911357973","01","OR","REGENCE BC/BS","166025","01","OR","OMAP","27228","01","WA","DEPT OF LABOR & INDUSTRIE","9063603","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1205839065","2","","","HEALTH CARE ALLIANCE, INC D/B/A/ BLAIR MANOR","","","","","","","BLAIR MANOR","3","","","","","","","","1157 HIGHLAND AVE","STE 102","CHESHIRE","CT","064101600","US","2032502030","2032502034","612 HAZARD AVE","","ENFIELD","CT","060824225","US","8607498388","8607634382","05/24/2005","08/22/2020","","","","","HARRISON","GLADYS","","CONTROLLER","2032502030","314000000X","2155C","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1477556231","2","","","UNIVERSITY OPHTHALMOLOGY ASSOCIATES","","","","","","","","","","","","","","","","2500 N STATE ST","STE B329","JACKSON","MS","392164500","US","6018153931","6018153773","2500 N STATE ST","STE B329","JACKSON","MS","392164500","US","6018153931","6018153773","05/24/2005","09/09/2009","","","","","CHEN","CHING","JYGH","MANAGING PARTNER","6019845022","207W00000X","08640","MS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","09015396","05","MS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M. D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1467455220","2","","","COUNTY OF WASHINGTON","","","","","","","WASHINGTON COUNTY HEALTH CENTER","3","","","","","","","","36 OLD HICKORY RIDGE RD","","WASHINGTON","PA","153018613","US","7242285010","7242237187","36 OLD HICKORY RIDGE RD","","WASHINGTON","PA","153018613","US","7242285010","7242237187","05/24/2005","01/18/2012","","","","","SNYDER","LYNN","M","FISCAL DIRECTOR","7242285010","314000000X","751102","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1002272960004","05","PA","","100227960004","05","PA","","1502821","01","PA","GATEWAY","V0023A","01","PA","UPMC FOR YOU","53252","01","PA","ADVANTRA","0561","01","PA","BLUE CROSS","1296031","01","PA","UMWA","90851","01","PA","THREE RIVERS MED PLUS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1457354219","2","","","ELIZUR CORPORATION","","","","","","","","","","","","","","","","9800A MCKNIGHT RD","STE 200","PITTSBURGH","PA","152376003","US","4123584523","4123584518","9800A MCKNIGHT RD","STE 200","PITTSBURGH","PA","152376003","US","4123584523","4123584518","05/24/2005","11/09/2017","","","","","GRANT","JAMES","","OWNER","4123584523","335E00000X","6000005948","PA","N","332B00000X","6000005948","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0018789880002","05","PA","","602435000","01","PA","DEPARTMENT OF LABOR","308521","01","","UPMC HEALTH PLAN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1720081581","2","","","M & R OF FREDERICKTOWN","","","","","","","MEDICAL SOLUTIONS & SUPPLIES","3","","","","","","","","895 HOME AVE","","AKRON","OH","443104115","US","8009984199","","895 HOME AVE","","AKRON","OH","443104115","US","8009984199","","05/24/2005","10/02/2009","","","","","HOUSKA","MICHAEL","J","OWNER","8009984199","332B00000X","NONE REQUIRED","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2263821","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1255334017","2","","","PALOMBARO, FARRELL & HILL, DDS, PC","","","","","","","","","","","","","","","","151 RIVERSIDE DR","","BINGHAMTON","NY","139054218","US","6077241389","","151 RIVERSIDE DR","","BINGHAMTON","NY","139054218","US","6077241389","","05/24/2005","08/22/2020","","","","","PALOMBARO","ANTHONY","","VICE PRESIDENT","6077241379","1223G0001X","0384251","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1164425922","2","","","TRANSCARE MARYLAND, INC.","","","","","","","TRANSCARE","3","","","","","","","","1 METROTECH CTR","20TH FLOOR","BROOKLYN","NY","112013949","US","7187638888","","1125 DESOTO RD","SUITE A","BALTIMORE","MD","212233222","US","4102422279","4102429525","05/24/2005","11/20/2012","","","","","O'CONNOR","JAMES","","PRESIDENT","7185109080","3416L0300X","586916","MD","N","3416L0300X","586918","MD","N","3416L0300X","586917","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","407462900","05","MD","","P00231052","01","MD","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCARE CORP","","MR.","","","","","","","","","","","","","","","","","","" -"1619970472","2","","","CYPRESS OUTPATIENT SURGICAL CENTER, INC.","","","","","","","","","","","","","","","","1665 DOMINICAN WAY","STE 120","SANTA CRUZ","CA","950651528","US","8314766943","","1665 DOMINICAN WAY","STE 120","SANTA CRUZ","CA","950651528","US","8314766943","","05/24/2005","04/07/2010","","","","","ALLAMAN","CHRISTEN","","PRESIDENT","8314766943","261QA1903X","70000225","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","","","","","","","","","","","","","","","","" -"1972506731","2","","","COMMONWEALTH OF KENTUCKY","","","","","","","GLASGOW STATE NURSING FACILITY","5","","","","","","","","207 STATE AVE","","GLASGOW","KY","421411400","US","2706594700","2706511726","207 STATE AVE","","GLASGOW","KY","421411400","US","2706594700","2706511726","05/24/2005","06/09/2017","","","","","ALLEN","AMANDA","","FACILITY DIRECTOR","2706594707","313M00000X","100483","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","12400016","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COMMONWEALTH OF KENTUCKY","","MS.","","","","","","","","","","","","","","","","","","" -"1790788552","2","","","UHRICHSVILLE HEALTH CARE CENTER, INC.","","","","","","","CLAYMONT HEALTH & REHABILITATION","3","","","","","","","","782 W ORANGE RD","","DELAWARE","OH","430158922","US","3302041040","","5166 SPANSON DR SE","","UHRICHSVILLE","OH","446831346","US","7409222208","7409220285","05/24/2005","05/04/2018","","","","","SPEELMAN","ROBERT","","PRESIDENT","3302041040","314000000X","1756N","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2444822","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1609879469","2","","","LIGHTHOUSE HOSPICE PARTNERS LLC","","","","","","","GIRLING HOSPICE TEXAS BY HARDEN HEALTHCARE","3","","","","","","","","12900 FOSTER","SUITE 400","OVERLAND PARK","KS","660622696","US","9138142800","5126344966","715 E MAIN ST","SUITE 100","TOMBALL","TX","773756720","US","2812907727","2812908460","05/24/2005","10/31/2014","","","","","SCHWARTZ","RUTH","C.","ASSISTANT SECRETARY","9138142288","251G00000X","013033","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001017960","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1427051283","2","","","SLEEPCARE DIAGNOSTICS, INC.","","","","","","","","","","","","","","","","4780 SOCIALVILLE FOSTER RD","","MASON","OH","450408265","US","5134597750","5134598030","4780 SOCIALVILLE FOSTER RD","","MASON","OH","450408265","US","5134597750","5134598030","05/24/2005","08/22/2020","","","","","SNIDER","JAMES","C.","CEO","5134597750","261QS1200X","NA","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2650162","05","OH","","2354063","05","OH","","DB6698","01","","MEDICARE RAILROAD","000000011746","01","","BCBS - OH","5459138","01","","AETNA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1144223900","2","","","BOISE MEMORIAL HOSPICE LLC","","","","","","","BOISE MEMORIAL HOSPICE","3","","","","","","","","600 E STATE ST","SUITE 300","EAGLE","ID","836166081","US","2089384100","2089384564","600 E STATE ST","SUITE 300","EAGLE","ID","836166081","US","2089384100","2089384564","05/24/2005","05/20/2009","","","","","CAMPBELL","LAURIE","KAY","OWNER/DIRECTOR","2089384100","251G00000X","","ID","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","804269500","05","ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1962405720","2","","","HEALTH CARE VENTURES INC DBA CRESCENT MANOR","","","","","","","CRESCENT MANOR","3","","","","","","","","1157 HIGHLAND AVE","STE 102","CHESHIRE","CT","064101600","US","2032502030","2032502034","1243 W MAIN ST","","WATERBURY","CT","067083101","US","2037570561","2037555998","05/24/2005","08/22/2020","","","","","HARRISON","GLADYS","","CONTROLLER","2032502030","314000000X","2156C","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1134122997","2","","","YARMOUTH AUDIOLOGY","","","","","","","","","","","","","","","","163 MAIN ST","","YARMOUTH","ME","040966720","US","2078461380","2078469701","163 MAIN ST","","YARMOUTH","ME","040966720","US","2078461380","2078469701","05/24/2005","08/22/2020","","","","","HYDE","CAROLINE","C","OWNER","2078461380","237600000X","ME51244","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","018055","01","ME","ANTHEM PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","MSC","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1043213804","2","","","INDEPENDENCE REHAB EQUIPMENT INC.","","","","","","","","","","","","","","","","8844 TRADEWAY ST","","SAN ANTONIO","TX","782176115","US","2108329770","2108320010","8844 TRADEWAY ST","","SAN ANTONIO","TX","782176115","US","2108329770","2108320010","05/24/2005","08/22/2020","","","","","HEALY","KEN","C","PRESIDENT","2108329770","332B00000X","","","X","332BP3500X","","","X","261QA3000X","","","X","332BC3200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1376546366","2","","","COUNTY OF BAY","","","","","","","BAY COUNTY MEDICAL CARE FACILITY","3","","","","","","","","564 W HAMPTON RD","","ESSEXVILLE","MI","487329710","US","9898923591","9898926991","564 W HAMPTON RD","","ESSEXVILLE","MI","487329710","US","9898923591","9898926991","05/24/2005","04/26/2010","","","","","MACALPINE","RUTH","","ADMINISTRATOR","9898923591","314000000X","098510","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2085123","05","MI","","690353780","01","MI","STATE I.D.","09567","01","MI","BCBS OF MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","BAY COUNTY MEDICAL CARE FACILITY","","MRS.","","","","","","","","","","","","","","","","","","" -"1720081656","2","","","PECOS STREET PHARMACY, INC.","","","","","","","MEDICAL ARTS PHARMACY","3","","","","","","","","2102 PECOS ST","STE 4","SAN ANGELO","TX","769013061","US","3259494636","3259420761","2102 PECOS ST","STE 4","SAN ANGELO","TX","769013061","US","3259494636","3259420761","05/24/2005","11/09/2007","","","","","EAKMAN","DOYLE","DOUGLAS","PRESIDENT","3259494636","333600000X","01053","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4529965","01","TX","NABP NUMBER","130205","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","R. PH.","","","","","","","","","","","","","","","","" -"1710980644","2","","","MEDFUND LLC","","","","","","","HORIZON MRI OF LUBBOCK LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","3501 22ND ST","","LUBBOCK","TX","794101307","US","8067856740","8067856744","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0276DC","01","TX","BCBS PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1255334181","2","","","BELMONT MEDICAL ASSOCIATES PLLC","","","","","","","","","","","","","","","","1818 RICHARDSON DR","STE A","REIDSVILLE","NC","273205450","US","3363495040","3363695368","1818 RICHARDSON DR","STE A","REIDSVILLE","NC","273205450","US","3363495040","3363695368","05/24/2005","03/22/2018","","","","","THOMPSON","SANDRA","C","CPC, DO","3363495040","207R00000X","","","N","363A00000X","","","N","207Q00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8902523","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1285637090","2","","","CUNNINGHAM PHYSICAL MEDICINE","","","","","","","","","","","","","","","","880 GREENLEAF RD","","COLDWATER","MS","386188133","US","9012912400","","7601 SOUTHCREST PKWY","","SOUTHAVEN","MS","386714739","US","9012912400","","05/24/2005","04/13/2015","","","","","CUNNINGHAM","MARK","L","OWNER","9012912400","208100000X","MD 16101","TN","N","208100000X","MD 11905","MS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1194728907","2","","","HILLCREST INVESTMENTS, LC","","","","","","","THERAPY SOLUTIONS AND HEALTHCARE","3","","","","","","","","7500 212TH ST SW","STE 209","EDMONDS","WA","980267617","US","4257756547","4257782797","425 SW 41ST ST","","RENTON","WA","980554926","US","4252919200","4252919300","05/24/2005","08/22/2020","","","","","WHITE","ROBERT","N","OWNER/ADMINISTRATOR","4257756457","235Z00000X","LL00002929","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1457354268","2","","","COUNTY OF ALLEGAN","","","","","","","ALLEGAN COUNTY MEDICAL CARE COMMUNITY","3","","","","","","","","3265 122ND AVE","","ALLEGAN","MI","490109511","US","2696732102","2696736199","3265 122ND AVE","","ALLEGAN","MI","490109511","US","2696732102","2696736199","05/24/2005","01/16/2017","","","","","TURCOTT","KIMBERLY","","ADMINISTRATOR","2696732102","314000000X","038510","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2085132","05","MI","","09517","01","MI","BCBS PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF ALLEGAN","","MR.","","NHA","","","","","","","","","","","","","","","","" -"1548263346","2","","","CANCER HEALTHCARE ASSOCIATES","","","","","","","","","","","","","","","","7979 WURZBACH RD","","SAN ANTONIO","TX","782294427","US","2104505840","2106929822","7979 WURZBACH RD","","SAN ANTONIO","TX","782294427","US","2104505840","2106929822","05/24/2005","07/18/2007","","","","","IVY","DEBORAH","","PRACTICE MANAGER","2104505840","207ND0101X","00U97M","TX","N","207RX0202X","00U97M","TX","N","207ZP0102X","00U97M","TX","N","208600000X","00U97M","TX","N","207RH0003X","00U97M","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","" -"1275536070","2","","","ADVANCED ANESTHESIA ASSOCIATES, PC","","","","","","","","","","","","","","","","PO BOX 48076","","NEWARK","NJ","071014876","US","2018042800","","1 E NEW YORK AVE","","SOMERS POINT","NJ","082442340","US","6096534300","","05/24/2005","08/22/2020","","","","","DEARBORN","PEYTON","","PRESIDENT","6096533500","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8782903","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1811990617","2","","","MEDFUND LLC","","","","","","","HORIZON TEXAS CITY LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","9300 EMMETT F LOWRY EXPY","STE 148","TEXAS CITY","TX","775912133","US","4093160577","4093160150","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0352DC","01","TX","BCBS PROV #","7320646","01","","AETNA/MEDSOLUTIONS","P00035830","01","","RAILROAD MCARE","2241658","01","","FIRST HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1720081524","2","","","MIDWEST RADIOLOGY AND IMAGING PC","","","","","","","","","","","","","","","","1200 1ST AVE E","","SPENCER","IA","513014342","US","7122627511","7122623658","1200 1ST AVE E","","SPENCER","IA","513014342","US","7122627511","7122623658","05/24/2005","08/31/2009","","","","","CROUCH","CHARLES","ALLEN","PHYSICIAN/OWNER","7122627511","261QM2500X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CN6278","01","IA","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1538162334","2","","","TENNESSEE IMAGING ALLIANCE LLC","","","","","","","","","","","","","","","","2628 N MOUNT JULIET RD","","MOUNT JULIET","TN","371228015","US","6157582606","6157582604","2628 N MOUNT JULIET RD","","MOUNT JULIET","TN","371228015","US","6157582606","6157582604","05/24/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024771815","261QR0208X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3791297","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TENNESSEE IMAGING ALLIANCE LLC","","MRS.","","","","","","","","","","","","","","","","","","" -"1447253240","2","","","BAPTIST VILLAGE RETIREMENT COMMUNITIES OF OKLAHOMA INC","","","","","","","T.B. LACKEY HEALTH CARE CENTER","3","","","","","","","","9700 MASHBURN BLVD","","OKLAHOMA CITY","OK","731625509","US","4057212466","4057210668","9700 MASHBURN BLVD","","OKLAHOMA CITY","OK","731625509","US","4057212466","4057210668","05/24/2005","07/31/2017","","","","","SHORT","WENDELL","J","VP PLANNING & PROJECT MANAGEMENT","4059423000","314000000X","CC55015501","OK","N","313M00000X","CC55015501","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100774330A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","BAPTIST VILLAGE RETIREMENT COMMUNITIES OF OKLAHOMA INC","","MR.","","","","","","","","","","","","","","","","","","" -"1356344154","2","","","ATHENS HELPING HANDS INC","","","","","","","BETHANY PLACE","3","","","","","","","","305 S PALESTINE ST","","ATHENS","TX","757512515","US","3256735101","","305 S PALESTINE ST","","ATHENS","TX","757512515","US","8067714124","","05/24/2005","08/22/2020","","","","","LANGE","STEVEN","J","PRESIDENT","9729067391","313M00000X","4009","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4009","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1710980511","2","","","OPEN MRI OF FEDERAL WAY, L.L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-FEDERAL WAY","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2017754306","33301 9TH AVE S","STE 105","FEDERAL WAY","WA","980032600","US","2539528833","2539528866","05/24/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","","X","261QR0200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8922466","01","WA","WA WC-CRIME VICTIMS","115994","01","WA","WASHINGTON WC","16-50184","01","WA","UNITED HEALTHCARE","5574678","01","WA","AETNA US HEALTHCARE","1069170","01","WA","FIRST HEALTH NETWORK","115994","01","WA","BWC","A-70849","01","WA","MULTIPLAN","2504","01","WA","MEDFOCUS","OP8664","01","WA","REGENCE BS","7085962","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1437152238","2","","","SUMMIT TRADING CO INC","","","","","","","SUMMIT TRADING PHARMACY","3","","","","","","","","10409 CANYON RD E","","PUYALLUP","WA","983734252","US","2538402098","2538400308","10409 CANYON RD E","","PUYALLUP","WA","983734252","US","2538402098","2538400308","05/24/2005","10/04/2011","","","","","CRUTCHER","JENNIFER","","PIC","2538402098","333600000X","","","N","3336C0003X","CF00005161","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4924266","01","","NCPDP PROVIDER IDENTIFICATION NUMBER","6015192","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPH","","","","","","","","","","","","","","","","" -"1982607784","2","","","DANIEL D. SHIRBROUN, PHD, INC, PSYCHOLOGIST","","","","","","","","","","","","","","","","54045 RIDGE RD","","YUCCA VALLEY","CA","922848311","US","7603652588","7603697167","7293 DUMOSA AVE","STE 8","YUCCA VALLEY","CA","922843700","US","7603697166","7603697167","05/24/2005","08/22/2020","","","","","SHIRBROUN","DANIEL","DEAN","CLINICAL PSYCHOLOGIST","7603697166","103TC0700X","PSY4161","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1891798690","2","","","DR. THOMAS MATSUI, D.D.S., P.C.","","","","","","","","","","","","","","","","1526 COLE BLVD","STE 120","LAKEWOOD","CO","804013410","US","3032340505","3032340226","1526 COLE BLVD","STE 120","LAKEWOOD","CO","804013410","US","3032340505","3032340226","05/24/2005","06/18/2008","","","","","MATSUI","THOMAS","KENNETH","C.E.O.","3032340505","1223G0001X","105042","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.D.S.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1619970415","2","","","ADVANCED CARDIOLOGY CENTER","","","","","","","","","","","","","","","","PO BOX 1838","","MAYAGUEZ","PR","006811838","US","7872653900","7872653952","AVE HOSTOS # 410 CARRETERA #2 CENTRO MEDICO","BO. SABALOS","MAYAGUEZ","PR","006826353","US","7872653900","7872653952","05/24/2005","02/06/2008","","","","","ANDINO-RODRIGUEZ","JULIO","","EXECUTIVE DIRECTOR","7872653900","282N00000X","6","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","MHSA","","","","","","","","","","","","","","","","" -"1245233048","2","","","PREFERRED ANESTHESIA ASSOCIATES, PC","","","","","","","","","","","","","","","","PO BOX 48245","","NEWARK","NJ","071014800","US","2018042800","","3205 FIRE RD","","EGG HARBOR TOWNSHIP","NJ","082345884","US","6094071113","","05/24/2005","01/07/2008","","","","","SALKELD","CHARLES","","DIRECTOR OF ANESTHESIA","6094071113","207L00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","D.O.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1154324952","2","","","LIBERTY COUNTY HOSPITAL DISTRICT NO 1","","","","","","","LIBERTY DAYTON REGIONAL MEDICAL CENTER","3","","","","","","","","1353 NORTH TRAVIS STREET","","LIBERTY","TX","775753549","US","9363367316","9363367772","1353 NORTH TRAVIS STREET","","LIBERTY","TX","775753549","US","9363367316","9363367772","05/24/2005","09/08/2020","","","","","CAMPBELL","RHONDA","","CEO","9363367316","282NC0060X","000089","TX","N","282NC0060X","100072","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","09/08/2020" -"1184627978","2","","","NOVAMED SURGERY CENTER OF ORLANDO LLC","","","","","","","DOWNTOWN SURGERY CENTER","3","","","","","","","","801 N ORANGE AVE","SUITE 630","ORLANDO","FL","328011026","US","8666317890","4076500019","801 N ORANGE AVE","SUITE 630","ORLANDO","FL","328011026","US","8666317890","4076500019","05/24/2005","02/21/2020","","","","","BALDOCK","JENNIFER","BOYD","OFFICER AND AUTHORIZED OFFICIAL","6152345900","261QA1903X","1056","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00253670","01","FL","RR MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","02/21/2020" -"1093718884","2","","","CENTRAL COAST VNA AND HOSPICE, INC.","","","","","","","CENTRAL COAST VISITING NURSE ASSOCIATION, INC.","4","","","","","","","","5 LOWER RAGSDALE DR","","MONTEREY","CA","939405740","US","8313726668","8316484225","5 LOWER RAGSDALE DR","","MONTEREY","CA","939405740","US","8313726668","8316484225","05/24/2005","05/07/2019","","","","","NAVARRO","SUZANNE","","EXECUTIVE ADMINISTRATIVE ASSISTANT","8316483797","251E00000X","070000067","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZR07002F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1174526966","2","","","MEDFUND LLC","","","","","","","HORIZON OPEN MRI OF LAS COLINAS LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","6550 N MACARTHUR BLVD","STE 120","IRVING","TX","750392823","US","9724440100","9724440282","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","268489","01","","AMERIGROUP","0410DC","01","TX","BCBS PROV","7416610","01","","AETNA/MEDSOLUTIONS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1508869397","2","","","OPEN MRI OF MISSOURI II LLC","","","","","","","NYDIC OPEN MRI OF AMERICA-INDEPENDENCE","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2015058905","3431 S HWY 291","","INDEPENDENCE","MO","640572341","US","8167956266","8167956966","05/24/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","","X","261QR0200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16-00435","01","MO","UNITED HC OF THE MIDWEST","5057623","01","MO","AETNA PPOS","24822013","01","MO","BCBS OF KANSAS CITY","1151126","01","MO","FIRST HEALTH NETWORK","428178","01","MO","HEALTHLINK","742299","01","MO","COVENTRY HC OF KANSAS","2042557","01","MO","AETNA HMO","402227","01","MO","BCBS OF KANSAS","11720","01","MO","HEALTHCARE USA","17065","01","MO","MEDFOCUS","3987","01","MO","FIRSTGUARD HEALTH PLAN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1689677478","2","","","COUNTY OF DOUGLAS","","","","","","","DOUGLAS COUNTY PUBLIC HEALTH","3","","","","","","","","725 ELM ST","STE 1200","ALEXANDRIA","MN","563081760","US","3207636018","3207634127","725 ELM ST","STE 1200","ALEXANDRIA","MN","563081760","US","3207636018","3207634127","05/24/2005","03/30/2009","","","","","TUBBS","SANDRA","L","DIRECTOR","3207636018","251K00000X","","MN","N","251B00000X","","MN","N","251G00000X","326907","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","122917","01","MN","UCARE MINNESOTA","03072603200","01","MN","PRIMEWEST","8276DO","01","MN","BLUE CROSS/BLUE SHIELD","83-02316","01","MN","MEDICA","1006413","01","MN","PREFERRED ONE","59-00162","01","MN","MEDICA HOME CARE","758353200","05","MN","","76523DO","01","MN","BLUE CROSS/BLUE SHIELD","31359","01","MN","HEALTH PARTNERS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","PHN","","","","","","","","","","","","","","","","" -"1598768384","2","","","AB MEDICAL OF OKLAHOMA, INC.","","","","","","","","","","","","","","","","PO BOX 3185","","MCALESTER","OK","745023185","US","9183020094","9184290072","415 N MAIN ST","","MCALESTER","OK","745014605","US","9183020094","9184290072","05/24/2005","08/22/2020","","","","","HUNT","TOM","","OWNER","9183020094","332B00000X","815001","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1679576466","2","","","COLUMBUS PRESCRIPTION WEST LLC","","","","","","","COLUMBUS PRESCRIPTION WEST LLC","3","","","","","","","","2849 W BROAD ST","","COLUMBUS","OH","432042643","US","","","2849 W BROAD ST","","COLUMBUS","OH","432042643","US","6143510062","6143510358","05/24/2005","03/07/2008","","","","","GROSSMAN","JARROD","","CHIEF PHARMACIST","6143510062","3336C0003X","","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3672931","01","","OTHER ID NUMBER-COMMERCIAL NUMBER","2503633","05","OH","","3672931","01","","OTHER ID NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPL PHARMD","","","","","","","","","","","","","","","","" -"1245233907","2","","","DR. TONY Y. TAO, OPTOMETRIST & ASSOCIATES P.A.","","","","","","","YU TAO","5","","","","","","","","1150 N WATTERS RD","SUITE 107","ALLEN","TX","750135508","US","9723598828","9723599010","1150 N WATTERS RD","SUITE 107","ALLEN","TX","750135508","US","9723598828","9723599010","05/24/2005","10/05/2011","","","","","TAO","YU","","PRESIDENT","9723598828","152WP0200X","5886TG","TX","N","152WS0006X","5886TG","TX","N","152WX0102X","5886TG","TX","N","152WC0802X","5886TG","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1655797-01","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","" -"1760485411","2","","","STARFIRE EMS INC","","","","","","","","","","","","","","","","PO BOX 4104","","ALVIN","TX","775124104","US","","","1275 W HIGHWAY 6","","ALVIN","TX","775119660","US","2813881411","","05/24/2005","07/28/2008","","","","","BURFORD","PATRICK","","OWNER","2813881411","3416L0300X","300146","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000648801","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1396748042","2","","","CAREGIVERS, INC.","","","","","","","","","","","","","","","","3536 WASHINGTON BLVD","","INDIANAPOLIS","IN","462053719","US","3172525958","3177265223","3536 WASHINGTON BLVD","","INDIANAPOLIS","IN","462053719","US","3172525958","3177265223","05/24/2005","04/16/2015","","","","","CHAVIS","CLAUDIA","J","CEO","3172525958","251E00000X","005941","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100108840A","01","NE","MEDICAID WAIVER","100265760A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1023011772","2","","","OMNICURE HOME HEALTH","","","","","","","MUNZER HAQUE","3","","","","","","","","3814 TIMBERLAKE DR","","PLANO","TX","750237727","US","9728814374","9725164952","3814 TIMBERLAKE DR","","PLANO","TX","750237727","US","9728814374","9725164952","05/24/2005","12/01/2017","","","","","HAQUE","MUNZER","","OWNER","9729715593","251E00000X","009121","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","182339501","05","TX","","673190","01","","MEDICARE PROV ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1659374304","2","","","HOWARD P. DAMBROSE, D.D.S., INC.","","","","","","","DEPENDENTS DENTAL CENTER OF HOWARD P. DAMBROSE, DDS, INC","5","","","","","","","","10715 TIERRASANTA BLVD","STE C","SAN DIEGO","CA","921242610","US","8582786444","8582796444","10715 TIERRASANTA BLVD","STE C","SAN DIEGO","CA","921242610","US","8582786444","8582796444","05/24/2005","08/17/2018","","","","","DAMBROSE","HOWARD","PARKER","PRESIDENT","8582786444","1223G0001X","37409","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","37409","01","CA","DELTA DENTAL","37409","01","CA","INSURANCE CARRIERS","B37409-01","01","CA","DENTI-CAL","000753449","01","CA","TRICARE-TDP (UCCI)","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.D.S.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1497758312","2","","","TEN BROECK JACKSONVILLE LLC","","","","","","","","","","","","","","","","6300 BEACH BLVD","","JACKSONVILLE","FL","322162708","US","9047249202","9047243797","6300 BEACH BLVD","","JACKSONVILLE","FL","322162708","US","9047249202","9047243797","05/24/2005","05/08/2008","","","","","CORDDRY","DAVID","","VICE PRESIDENT OF FINANCE","4078762200","283Q00000X","4011","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","075144816","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1306849229","2","","","PROFESSIONAL PULMONARY SERVICE, INC","","","","","","","","","","","","","","","","27 E CENTRE ST","","WOODBURY","NJ","080962415","US","8568482440","8568531146","27 E CENTRE ST","","WOODBURY","NJ","080962415","US","8568482440","8568531146","05/24/2005","03/09/2011","","","","","DAVIDS","JOEL","","VICE PRESIDENT","8568481146","332B00000X","","","N","332BP3500X","","","N","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2901501","05","NJ","","0002629000","01","","KEYSTONE HEALTH PLANS","000200291","01","","AMERIHEALTH PPO","0017453","01","","AETNA/USHC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1215930136","2","","","ALL-MED EXPRESS, INC.","","","","","","","","","","","","","","","","3804 BRENNEN ROBERT PL","","GLEN ALLEN","VA","230602505","US","8043149610","8043814247","3804 BRENNEN ROBERT PL","","GLEN ALLEN","VA","230602505","US","8043149610","8043814247","05/24/2005","07/10/2020","","","","","BRADLEY","CYNTHIA","WILBORNE","PRESIDENT","8043149610","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","259880","01","VA","SOUTHERN HEALTH","16738","01","VA","VIRGINIA PREMIER","A588286250002","01","VA","CIGNA","VA009116788","05","VA","","11660","01","VA","CARENET-SOUTHERN HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","07/10/2020" -"1124021043","2","","","CLAY COUNTY HEALTH DEPARTMENT","","","","","","","","","","","","","","","","202 W FAIRFIELD ST","","CLAY CENTER","NE","689331439","US","4027623571","4027623573","202 W FAIRFIELD ST","","CLAY CENTER","NE","689331439","US","4027623571","4027623573","05/24/2005","11/18/2019","","","","","SHERIDAN","LAURIE","F","DIRECTOR","4027623571","251E00000X","161001","NE","N","261QP0905X","","NE","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000676","01","NE","BCBS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","R.N., B.S.N.","","","","","","","","","","","","","","","","" -"1932102852","2","","","PALM VALLEY HEALTH CARE, INC.","","","","","","","","","","","","","","","","209 E. CANTON","SUITE B","EDINBURG","TX","78539","US","9562920900","9562920918","209 E. CANTON","SUITE B","EDINBURG","TX","78539","US","9562920900","9562920918","05/24/2005","11/03/2020","","","","","CANALES","IDALIA","","OWNER","9562920900","3747P1801X","","","N","251E00000X","005158","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","024267901","05","TX","","1932102852","01","TX","NPI","459167","01","TX","MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","11/03/2020" -"1841293768","2","","","COUNTY OF LINCOLN","","","","","","","LINCOLN COUNTY EMS","3","","","","","","","","801 N SALES ST","SUITE 201","MERRILL","WI","544521633","US","7155361019","7155398054","801 N SALES ST","SUITE 201","MERRILL","WI","544521633","US","7155391019","7155398054","05/24/2005","11/11/2008","","","","","RAUCHLE","DEBORAH","A","ADMINISTRATIVE SECRETARY","7155391019","3416L0300X","6020121","WI","N","3416L0300X","6000121","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","41329500","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1578566493","2","","","NEWLIFETHERAPY CENTERS, INC.","","","","","","","","","","","","","","","","3335 MEIJER DR","STE 400","TOLEDO","OH","436173105","US","4198823060","4197241059","3335 MEIJER DR","STE 400","TOLEDO","OH","436173105","US","4198823060","4197241059","05/24/2005","08/22/2020","","","","","ORRA","KATHY","JO","ADMINISTRATOR","4198823060","225100000X","PT007442","OH","X","225200000X","PTA02073","OH","X","225700000X","3301293","OH","X","225X00000X","OT001593","OH","X","227900000X","RCP1936","OH","X","227900000X","RCP5021","OH","X","227800000X","RCP4738","OH","X","227800000X","RCP2468","OH","X","104100000X","I0004242","OH","X","","","","","","","","","","","","","","","","","","","","","","","","","2322990","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MISS","","RN","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","" -"1649273566","2","","","OPEN MRI OF COLUMBUS, L.L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-COLUMBUS","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2017754306","6096 E MAIN ST","STE 100","COLUMBUS","OH","432134302","US","6147515000","6147510499","05/24/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","0837-IC","OH","X","261QR0200X","0837-IC","OH","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000000162279","01","OH","ANTHEM","1067796","01","OH","FIRST HEALTH NETWORK","3364","01","OH","MEDFOCUS","175273","01","OH","UNISON","2433558","05","OH","","5688308","01","OH","AETNA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1376546291","2","","","WILLAMETTE FAMILY, INC","","","","","","","WILLAMETTE FAMILY TREATMENT SERVICES","4","","","","","","","","687 CHESHIRE AVE","","EUGENE","OR","974025060","US","5416844100","5416844156","687 CHESHIRE AVE","","EUGENE","OR","974025060","US","5416844100","5416844156","05/24/2005","06/27/2019","","","","","DEY","SUSAN","L.","EXECUTIVE DIRECTOR","5416844100","261QC1500X","","","N","251S00000X","","OR","N","251V00000X","1739","OR","N","324500000X","","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","008891","05","OR","","247573","05","OR","","500678005","05","OR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","QMHP, M.S.","","","","","","","","","","","","","","","","" -"1194728014","2","","","NATIONAL P E T SCAN BROWARD LLC","","","","","","","","","","","","","","","","6622 SOUTHPOINT DR S","SUITE 360","JACKSONVILLE","FL","322168014","US","9043588441","9043582288","6290 N FEDERAL HWY","","FT LAUDERDALE","FL","333081917","US","9543323000","9543322671","05/24/2005","12/05/2012","","","","","AUSTIN","MARGIE","FAYE","ADMINISTRATIVE ASSISTANT","9043588441","261QR0200X","HCC5688","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2630670","01","FL","AETNA - HMO","V2274","01","FL","BLUE CROSS BLUE SHIELD FL","7441285","01","FL","AETNA - PPO","196704","01","FL","WELLCARE","6958176-001","01","FL","CIGNA","SG011169","01","FL","VISTA","593688943","01","FL","TRICARE","593688943","01","FL","HUMANA","67826","01","FL","FOUNDATION","38830","01","FL","NEIGHBORHOOD","CK2451","01","FL","MEDICARE RAILROAD RETIREM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1003819921","2","","","MEDFUND LLC","","","","","","","HORIZON MRI OF DUNCANVILLE LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","4041 W WHEATLAND RD","STE 178","DALLAS","TX","752374061","US","9722834727","9722839766","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7562589","01","","AETNA/MEDSOLUTIONS","242867","01","","AMERIGROUP","P00137434","01","","RAILROAD MCARE","0307DC","01","","BCBS PROV #","2241750","01","","FIRST HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1174526099","2","","","HEALTH CARE INVESTORS, INC. D/B/A/ ALEXANDRIA MANOR","","","","","","","ALEXANDRIA MANOR","3","","","","","","","","1157 HIGHLAND AVE","STE 102","CHESHIRE","CT","064101600","US","2032502030","2032502034","55 TUNXIS AVE","","BLOOMFIELD","CT","060022005","US","8602420703","8602424086","05/24/2005","08/22/2020","","","","","HARRISON","GLADYS","","CONTROLLER","2032502030","314000000X","2095C","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1255334173","2","","","FROEDTERT MEMORIAL LUTHERAN HOSPITAL, INC.","","","","","","","FROEDTERT HOSPITAL","3","","","","","","","","N74 W12501 LEATHERWOOD CT","WOODLAND PRIME 400, PFS, ATTN: T. LEMMERMANN","MENOMONEE FALLS","WI","530514490","US","4147770417","4147770096","9200 W WISCONSIN AVE","","MILWAUKEE","WI","532263522","US","4148053000","4148057790","05/24/2005","03/16/2020","","","","","VAN DE KREEKE","JEFFREY","R","VP FINANCE & TREASURER","4147770968","282N00000X","232; 279","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","404656061","05","MI","","5000021","01","WI","UNITED HEALTHCARE","0095078","05","MS","","100036370A","05","IN","","E61000134","05","NV","","88601544","05","CO","","9000355","01","WI","TOUCHPOINT","923550700","05","MN","","11000400","05","WI","","137793700","01","WI","US DEPT OF LABOR","501166","01","WI","DEAN HEALTH PLAN","01869896","05","NY","","092365600","05","FL","","121634105","05","AK","","2277487","05","OH","","304656043","05","MI","","0939538","05","IA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","03/16/2020" -"1982607800","2","","","ORTHOPRO OF RENO, INC.","","","","","","","","","","","","","","","","487 CASAZZA DR","","RENO","NV","895023388","US","7753241443","7753241663","487 CASAZZA DR","","RENO","NV","895023388","US","7753241443","7753241663","05/24/2005","08/12/2015","","","","","BLACKMAN","DAVID","A.","OWNER","7753241443","224P00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100502693","05","NV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","C.P.O.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1891798716","2","","","SALEM HOSPITAL, INC.","","","","","","","HILLSBORO COMMUNITY MEDICAL CENTER","3","","","","","","","","701 S MAIN ST","","HILLSBORO","KS","670631500","US","6209473114","6209475690","701 S MAIN ST","","HILLSBORO","KS","670631500","US","6209473114","6209475690","05/24/2005","03/02/2015","","","","","REGIER","MARION","A","CHIEF EXECUTIVE OFFICER","6209473114","282NC0060X","H-057-002","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000109","01","KS","BLUE CROSS & BLUE SHIELD","100080570A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1336142249","2","","","ADVANCED AMBULATORY","","","","","","","","","","","","","","","","PO BOX 15275","","NEWARK","NJ","071925275","US","2018042800","","37 E WILLOW ST","","MILLBURN","NJ","070411416","US","9739128111","","05/24/2005","05/12/2011","","","","","STILLMAN","RICHARD","I","PRESIDENT","9739128111","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1063415974","2","","","CITY OF LA PORTE","","","","","","","CITY OF LA PORTE EMS","3","","","","","","","","604 W FAIRMONT PKWY","","LA PORTE","TX","775716215","US","2814719244","2814710688","10428 SPENCER HIGHWAY","","LA PORTE","TX","775716215","US","2814719244","2814710688","05/24/2005","03/01/2012","","","","","NOLEN","RAY","","EMS CHIEF","2814719244","3416L0300X","101077","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","107652301","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","EMT-P","","","","","","","","","","","","","","","","" -"1518960426","2","","","ESCAMBIA CO BOARD OF COUNTY COMMISS","","","","","","","ESCAMBIA COUNTY EMS","3","","","","","","","","6575 N W ST","","PENSACOLA","FL","325051714","US","8504716507","8504716518","6575 N W ST","","PENSACOLA","FL","325051714","US","8504716507","8504716518","05/24/2005","03/28/2013","","","","","KOSTIC","PAT","","EMS MANAGER","8504716426","3416L0300X","002538","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1962405878","2","","","COMPREHENSIVE PAIN CARE MEDICAL CTRS, INC","","","","","","","","","","","","","","","","PO BOX 91989","","LONG BEACH","CA","908091989","US","8187051239","8187050448","2650 ELM AVE","STE 218","LONG BEACH","CA","908061653","US","5624242900","5624243200","05/24/2005","10/03/2007","","","","","ELKHOURY","GEORGES","F","PRESIDENT","8187051239","207LP2900X","A40394","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1134122047","2","","","CAPE MEDICAL SUPPLY, INC.","","","","","","","","","","","","","","","","28 JAN SEBASTIAN DR","","SANDWICH","MA","025632361","US","5088883113","5088886975","28 JAN SEBASTIAN DR","","SANDWICH","MA","025632361","US","5088883113","5088886975","05/24/2005","09/10/2018","","","","","SHEEHAN","GARY","M","PRESIDENT/CEO","5088883113","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","238754","01","MA","BLUE CROSS BLUE SHIELD","801682","01","MA","TUFTS HEALTHCARE","1519344","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1295738045","2","","","HIGH PLAINS LEGENDS, INC.","","","","","","","LEGENDS OF THE PLAINS","3","","","","","","","","202 W. 3RD ST.","","HALE CENTER","TX","79041","US","8068392102","","202 W. 3RD ST.","","HALE CENTER","TX","79041","US","8068392102","","05/24/2005","08/22/2020","","","","","RUBLE","RICHARD","","PRESIDENT","8068392102","314000000X","113593","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4882","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1013910868","2","","","GCMC OF WHARTON COUNTY TEXAS, LLC","","","","","","","GULF COAST MEDICAL CENTER","3","","","","","","","","PO BOX 4869, DEPT 407A","","HOUSTON","TX","772104869","US","4806507534","4802195572","10141 US 59 RD","","WHARTON","TX","774887224","US","9792826141","9792826036","05/24/2005","10/18/2016","","","","","CRANDALL","KEVIN","D","CIO","4806507534","261QA1903X","008330","TX","N","282N00000X","100142","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","178848101","05","TX","","45D0495923","01","TX","CLIA # FOR LABORATORY","621321359774880000","01","TX","CHAMPUS PROVIDER #","1363335 04","05","TX","","178815001","05","TX","","45D0679101","01","TX","CLIA # CARDIO BLOOD GAS","014503","01","TX","TDH BUREAU OF KIDNEY HLTH","178815003","05","TX","","1363335 06","05","TX","","16213213594002","01","TX","TEXAS REHAB VENDOR #","178815002","05","TX","","HH0522","01","TX","BLUE CROSS ACUTE","HH2802","01","TX","BLUE CROSS SNF","TAX ID","01","TX","203745677","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1922001775","2","","","LUBBOCK HEART HOSPITAL, LLC","","","","","","","LUBBOCK HEART HOSPITAL","3","","","","","","","","4810 NORTH LOOP 289","","LUBBOCK","TX","794163025","US","8066877777","8064723763","4810 NORTH LOOP 289","","LUBBOCK","TX","794163025","US","8066877777","8064723763","05/24/2005","08/15/2012","","","","","VINSON","ROY","C.","CEO","8066877777","282N00000X","008015","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HH1038","01","TX","BCBS","163219201","05","TX","","163219202","05","TX","","78174287","05","NM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","FACHE","","","","","","","","","","","","","","","","" -"1730182585","2","","","FORT WORTH NORTHSIDE COMMUNITY HEALTH CENTER","","","","","","","FWNCHC","5","","","","","","","","2100 N MAIN ST","STE 215","FORT WORTH","TX","761068576","US","8173780855","8173780861","2106 N. MAIN","","FORT WORTH","TX","761068570","US","8176254254","","05/24/2005","08/22/2020","","","","","HERRERA","EDDY","L.","CHIEF EXECUTIVE OFFICER","8173780855","251V00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","MSSW","","","","","","","","","","","","","","","","" -"1639172489","2","","","NORTHWEST HORIZONS, INC.","","","","","","","BRENDAN HOUSE","3","","","","","","","","350 CONWAY DR","","KALISPELL","MT","599013148","US","4067516500","4067516544","350 CONWAY DR","","KALISPELL","MT","599013148","US","4067516500","4067516544","05/24/2005","08/22/2020","","","","","SCHWARTZ","JAN","","PATIENT ACCOUNTS/HIM SUPERVISOR","4067516503","313M00000X","10271","MT","X","314000000X","10271","MT","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0310089","05","MT","","40612","01","MT","BCBS OF MT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1205839115","2","","","CML-CHICAGO MARKET LABS, INC.","","","","","","","","","","","","","","","","20 BURTON HILLS BLVD","ATTN: CAROL BAILEY","NASHVILLE","TN","372156197","US","6156656000","6156656184","3231 EUCLID AVE","","BERWYN","IL","604023471","US","7087830737","7087830668","05/24/2005","09/08/2016","","","","","BAILEY","CAROL","A","VICE PRESIDENT","6156656000","291U00000X","D019131","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200194990A","05","IN","","21623281","01","IL","BLUE CROSS","000000221539","01","IN","ANTHEM","690008950","01","IL","RAILROAD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1023011939","2","","","PESHTIGO HEALTH CARE, LLC","","","","","","","WHISPERING OAKS CARE CENTER","3","","","","","","","","620 HARPER AVE","","PESHTIGO","WI","541571134","US","7155824148","7155824756","620 HARPER AVE","","PESHTIGO","WI","541571134","US","7155824148","7155824756","05/24/2005","08/22/2020","","","","","MILLER","SIMONE","M","ADMINISTRATOR","7155824148","314000000X","2989","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4113343","05","MI","","20183500","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","NHA","","","","","","","","","","","","","","","","" -"1740283654","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","3030 1ST AVE N","","ST PETERSBURG","FL","337138607","US","7278967828","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PH17136","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02204770001","05","FL","","022047700","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1962405860","2","","","PMK MEDICAL GROUP, INC.","","","","","","","","","","","","","","","","1700 N ROSE AVE","STE 320","OXNARD","CA","930307648","US","8054858709","8054855521","1700 N ROSE AVE","STE 320","OXNARD","CA","930307648","US","8054858709","8054855521","05/24/2005","06/21/2012","","","","","PARSA","KOOROS","","PRESIDENT","8054858709","261QI0500X","","","N","261QM2500X","","","N","261QX0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZZ45387Z","01","CA","BLUE SHIELD PROVIDER","5628497","01","CA","NCPDP/NPDS","GR0064440","05","CA","","W13337","01","","MEDICARE PTAN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","","","","","","","","","","","","","","","","" -"1871596775","2","","","PROHAB REHABILITATION SERVICES, INC.","","","","","","","","","","","","","","","","1000 REGENCY CT","STE 105","TOLEDO","OH","436233074","US","","","1000 REGENCY CT","STE 105","TOLEDO","OH","436233074","US","4198852322","","05/24/2005","08/22/2020","","","","","CAIRNS","DAMIAN","","VICE PRESIDENT","4198852322","225100000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2093425","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1508869405","2","","","GAINESVILLE RADIOLOGY GROUP WEST, LLC","","","","","","","PUTNAM RADIOLOGY GROUP","3","","","","","","","","4960 W NEWBERRY RD","STE 280","GAINESVILLE","FL","326072201","US","3523713336","3523713372","4960 W NEWBERRY RD","STE 280","GAINESVILLE","FL","326072201","US","3523713336","3523713372","05/24/2005","08/22/2020","","","","","ARVESU","TONY","","MANAGING MEMBER","3523322040","2085R0202X","256176","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","V3013","01","FL","BCBS IDTF NUMBER EAST OFC","V2766","01","FL","BCBS IDTF NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1326041229","2","","","ST MARYS HOSPITAL SISTERS OF THE THIRD ORDER OF ST FRANCIS","","","","","","","ST MARYS HOSPITAL","3","","","","","","","","1800 E LAKE SHORE DR","","DECATUR","IL","625213883","US","2174642966","2174641609","1800 E LAKE SHORE DR","","DECATUR","IL","62521","US","2174642966","2174641616","05/24/2005","01/31/2019","","","","","KITCHENS","SHANE","ANDERSON","DIRECTOR-BUDGET& FINANCE","2174642590","282N00000X","","","N","282N00000X","0002592","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1134122039","2","","","MILLENIUM HOME HEALTH CARE, INC.","","","","","","","","","","","","","","","","370 REED RD STE 319","","BROOMALL","PA","190084018","US","6105434126","6105437952","370 REED RD","SUITE #319","BROOMALL","PA","190084016","US","6105434126","6105437952","05/24/2005","11/01/2020","","","","","RADICS","ROBERT","A","CEO","4046924417","251E00000X","397603","PA","N","251E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","11/01/2020" -"1689677585","2","","","UPPER MISSOURI DISTRICT HEALTH UNIT","","","","","","","","","","","","","","","","110 W BROADWAY","STE 101","WILLISTON","ND","588016056","US","7017746400","7015778536","110 W BROADWAY","STE 101","WILLISTON","ND","588016056","US","7017746400","7015778536","05/24/2005","09/13/2011","","","","","MELIUS","MIKE","","EXECUTIVE OFFICER","7017746418","251K00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","53588","05","ND","","58032","05","ND","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1407859309","2","","","PROHAB PHYSICAL THERAPY EAST, LLC","","","","","","","","","","","","","","","","4725 WOODVILLE RD","STE 4","NORTHWOOD","OH","436191857","US","","","4725 WOODVILLE RD","STE 4","NORTHWOOD","OH","436191857","US","4196982500","","05/24/2005","03/13/2008","","","","","ENCHEFF","NICHOLAS","","DIRECTOR OF PHYSICAL THERAPY","4196982500","225100000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2616771","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1316940216","2","","","PROFESSIONAL HOME HEALTH CARE DE SANTA FE Y LOS ALAMOS","","","","","","","","","","","","","","","","10 CALLE MEDICO","","SANTA FE","NM","875054724","US","5059828581","5059820788","10 CALLE MEDICO","","SANTA FE","NM","875054724","US","5059828581","5059820788","05/24/2005","07/27/2007","","","","","TUCKER","MARK","","DIRECTOR OF OPERATIONS","5059828581","251E00000X","6012 A1","NM","N","251E00000X","6603","NM","N","251E00000X","3068","NM","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","357657","01","NM","JOINT COMMISSION","D2062","05","NM","","62536711","05","NM","","Z7002","05","NM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","R.N.","","","","","","","","","","","","","","","","" -"1851394753","2","","","MEDFUND LLC","","","","","","","HORIZON FORT WORTH LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","7440 OAKMONT BLVD","","FORT WORTH","TX","761323904","US","8172942400","8172942402","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0340DC","01","TX","BCBS PROV #","7195603","01","","AETNA/MEDSOLUTIONS","242885","01","","AMERIGROUP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1679576573","2","","","COMMUNITY LIVING AND SUPPORT SERVICES","","","","","","","","","","","","","","","","1400 S BRADDOCK AVE","","PITTSBURGH","PA","152181264","US","4126837100","4126834160","1400 S BRADDOCK AVE","","PITTSBURGH","PA","152181264","US","4126837100","4126834160","05/24/2005","03/29/2018","","","","","CONDELUCI","AL","","CHIEF EXECUTIVE DIRECTOR","4126837100","251C00000X","11173601","PA","N","253Z00000X","12973601","PA","N","332B00000X","6000005377","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1000026610002","05","PA","","1000026610033","05","PA","","1000026610045","05","PA","","1007170720004","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHD","","","","","","","","","","","","","","","","" -"1215930110","2","","","STONEWALL HOME OXYGEN THERAPY, INC.","","","","","","","","","","","","","","","","456 SUITE A MARKET PLACE MALL","","WESTON","WV","264526938","US","3042690100","3042694559","456 SUITE A MARKET PLACE MALL","","WESTON","WV","264526938","US","3042690100","3042694559","05/24/2005","06/18/2015","","","","","EISENBEIS","M.","JANE","DIRECTOR OF EXTERNAL OPERATIONS","3042690100","335E00000X","","WV","N","332B00000X","=========","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DME278","01","WV","HEALTH PLAN","0147758000","05","WV","","006895400","01","WV","US DEPARTMENT OF LABOR","040003700","01","WV","FEDERAL BLACK LUNG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1841293735","2","","","CASCADE PSYCHIATRIC SERVICES, PLLC","","","","","","","","","","","","","","","","3802 BROADWAY","STE B","EVERETT","WA","982015032","US","4252596665","4252596014","3802 BROADWAY","STE B","EVERETT","WA","982015032","US","4252596665","4252596014","05/24/2005","08/22/2020","","","","","KLAMP","WOLFGANG","W","ADMINISTRATOR/COO","4252596665","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PH.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1487657375","2","","","HOSPICE OF LIMESTONE COUNTY, INC","","","","","","","","","","","","","","","","PO BOX 626","","ATHENS","AL","35612","US","2562325017","2562300085","405 S MARION ST","","ATHENS","AL","35611","US","2562325017","2562300085","05/24/2005","02/04/2010","","","","","KING","PATRICIA","P","EXECUTIVE DIRECTOR","2562325017","251G00000X","10240","AL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PIC1516E","05","AL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1740283639","2","","","NATIONAL PET SCAN DUVAL, LLC","","","","","","","","","","","","","","","","1 INDEPENDENT DR","STE 2201","JACKSONVILLE","FL","322025015","US","9043588441","9043582288","425 N LEE ST","","JACKSONVILLE","FL","322041127","US","9048616000","9048616007","05/24/2005","02/27/2012","","07/26/2011","02/27/2012","","WILSON","DIANA","LYNN","PROJECT MANAGER","9043588441","261QR0200X","HCC5690","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3190985","01","FL","AETNA HMO","1730079-001","01","FL","CIGNA","7051350","01","FL","AETNA NON HMO","593688943","01","FL","TRICARE","V2569","01","FL","BLUE CROSS BLUE SHIELD FL","201709","01","FL","WELLCARE","593688943","01","FL","HUMANA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1477556363","2","","","CARL'S DRUG STORE, INC.","","","","","","","","","","","","","","","","145 N ANTRIM WAY","","GREENCASTLE","PA","172251403","US","7175972426","7175973705","145 N ANTRIM WAY","","GREENCASTLE","PA","172251403","US","7175972426","7175973705","05/24/2005","12/29/2012","","","","","SAVAGE","RODGER","","PRESIDENT","7175972426","333600000X","PP410348L","PA","N","332B00000X","PP410348L","PA","N","3336C0003X","PP410348L","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3914137","01","PA","NCPDP NUMBER","001889589001","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","R.PH.","","","","","","","","","","","","","","","","" -"1386647279","2","","","CANCER CENTER OF SANTA BARBARA","","","","","","","","","","","","","","","","300 W PUEBLO ST","","SANTA BARBARA","CA","931054311","US","8056827300","8055697406","300 W PUEBLO ST","","SANTA BARBARA","CA","931054311","US","8056827300","8055697406","05/24/2005","08/06/2008","","","","","SCOTT","RICHARD","","PRESIDENT","8055697350","174400000X","050000399","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CMM70596F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1295738185","2","","","LUZCEL G TUAZON MD PS","","","","","","","","","","","","","","","","7221 W DESCHUTES AVE","STE C","KENNEWICK","WA","993367807","US","5093743105","5093743108","7221 W DESCHUTES AVE","STE C","KENNEWICK","WA","993367807","US","5093743105","5093743108","05/24/2005","10/18/2007","","","","","TUAZON","LUZCEL","G","MD OWNER","5093743105","207R00000X","MD00040438","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1116631","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1720081607","2","","","MICHAEL J. SCHMIDT MD","","","","","","","","","","","","","","","","5 MEDICAL PARK PLACE","STE 308","BENTON","AR","720153745","US","","","5 MEDICAL PARK PLACE","STE 308","BENTON","AR","720153745","US","5013157808","5013154888","05/24/2005","10/15/2007","","","","","MEE","SANDY","","INSURANCE CONSULTANT","5013157808","174400000X","N8431","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5J267","01","AR","BLUE CROSS BLUE SHIELD","1720037","01","AR","UNITED HEALTHCARE","4095825","01","AR","AETNA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1710980693","2","","","ADVANCED MEDICAL SUPPLY INC.","","","","","","","","","","","","","","","","1915 WELBY WAY","STE 4","TALLAHASSEE","FL","323084595","US","8504223777","8503856403","1915 WELBY WAY","STE 4","TALLAHASSEE","FL","323084595","US","8504223777","8503856403","05/24/2005","08/22/2020","","","","","GRAVES","RYAN","","PRESIDENT","8504223777","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","C. PED.","","","","","","","","","","","","","","","","" -"1346243227","2","","","LANDIS HOMES RETIREMENT COMMUNITY","","","","","","","","","","","","","","","","1001 E OREGON RD","","LITITZ","PA","175439205","US","7175693271","7175813899","1001 E OREGON RD","","LITITZ","PA","175439205","US","7175693271","7175813899","05/24/2005","10/16/2008","","","","","CALDWELL","ETHEL","","HEALTHCARE ADMINISTRATOR","7173813572","314000000X","1206","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0008383510002","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1700889680","2","","","ALLIANCE MEDICAL, INC.","","","","","","","","","","","","","","","","146 E 13065 S","STE F","DRAPER","UT","840208674","US","8015714333","8015714355","146 E 13065 S","STE F","DRAPER","UT","840208674","US","8015714333","8015714355","05/24/2005","08/22/2020","","","","","SCHRIEVER","STEPHANIE","","CEO","8015714333","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1679576557","2","","","TRI-COUNTY MEDICAL SUPPLY & RESPIRATORY SERVICES, INC.","","","","","","","","","","","","","","","","PO BOX 760","","SALEM","AR","725760760","US","8708955022","8708954759","260 HIGHWAY 62 E","","SALEM","AR","725769545","US","8708955022","8708954759","05/24/2005","10/19/2017","","","","","MOSS","RANI","","OFFICE MANAGER","8708955022","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","137760716","05","AR","","BCBS PROVIDER NUM","01","AR","49603","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1588667463","2","","","DRS. HERMAN AND MACK P.C.","","","","","","","ALL YOUR SMILE NEEDS DENTAL CENTERS","3","","","","","","","","1003 7TH ST NE","","DEVILS LAKE","ND","583012719","US","7016628191","7016625757","1003 7TH ST NE","","DEVILS LAKE","ND","583012719","US","7016628191","7016625757","05/24/2005","06/27/2008","","","","","HERMAN","ROLLIN","D","PRES","7016628191","1223G0001X","1654","ND","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1215930193","2","","","TRANSCARE NEW YORK, INC.","","","","","","","TRANSCARE","3","","","","","","","","1 METROTECH CTR","20TH FLOOR","BROOKLYN","NY","112013949","US","7187638888","","25 14TH ST","","BROOKLYN","NY","112154614","US","7187638888","","05/24/2005","11/20/2012","","","","","O'CONNOR","JAMES","","PRESIDENT & CEO","7185109080","3416L0300X","0164","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02994723","05","NY","","590009035","01","NY","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCARE CORP.","","MR.","","","","","","","","","","","","","","","","","","" -"1114920097","2","","","CARIBOU NURSING HOME INC","","","","","","","PRESQUE ISLE REHAB AND NURSING CENTER","3","","","","","","","","162 ACADEMY ST","","PRESQUE ISLE","ME","047693102","US","2077640145","2077647327","162 ACADEMY ST","","PRESQUE ISLE","ME","047693102","US","2077640145","2077647327","05/24/2005","10/29/2009","","","","","LOUTEN","ROSE-MARIE","C","ADMINISTRATOR","2077640145","314000000X","36153","ME","N","313M00000X","36153","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105890001","05","ME","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","MS RD","","","","","","","","","","","","","","","","" -"1659374536","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","826 N PLANKINTON AVE","STE 100","MILWAUKEE","WI","532031832","US","4142787828","","05/24/2005","09/24/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336H0001X","","","N","3336C0003X","8059","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2363651","05","OH","","5126342","05","MI","","33254300","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1013910991","2","","","HOUSTON MEDICAL DIAGNOSTICS","","","","","","","MEDICAL CENTER IMAGING","3","","","","","","","","7227 FANNIN ST","STE 102","HOUSTON","TX","770304848","US","7137976666","7137976677","7227 FANNIN ST","STE 102","HOUSTON","TX","770304848","US","7137976666","7137976677","05/24/2005","08/22/2020","","","","","BUTT","MOIEN","R","PRESIDENT","7137976666","2471M1202X","","","X","2471C3401X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1861495624","2","","","CITY OF CLAUDE","","","","","","","CITY OF CLAUDE VOLUNTEER AMBULANCE SERVICE","3","","","","","","","","PO BOX 231","115 TRICE STREET","CLAUDE","TX","790190231","US","8062263261","8062267019","103 PARKS STREET","","CLAUDE","TX","790190231","US","8062263261","8062267019","05/24/2005","09/25/2013","","","","","MILLER","JUDY","IRENE","CLAUDE CITY SECRETARY","8062263261","341600000X","006001","TX","N","3416L0300X","006001","TX","N","146L00000X","006001","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","102964100","01","TX","AMBULANCE","000003601","05","TX","","TX0000001","01","TX","AMBULANCE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","" -"1598768350","2","","","RECOVER HEALTH OF MINNESOTA, INC.","","","","","","","RECOVER HEALTH","3","","","","","","","","5900 GREEN OAK DR","SUITE 200","MINNETONKA","MN","553434708","US","9529269808","9529264002","2900 E BELTLINE STE 1","","HIBBING","MN","557462345","US","2182625887","2182626228","05/24/2005","11/02/2020","","","","","VON ARX","GREG","","PRESIDENT/CEO","9523583268","251E00000X","328386","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","772555800","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","RECOVER HEALTH, INC.","","","","","","","","","","","","","","","","","","","","11/02/2020" -"1033112883","2","","","COST PLUS PRESCRIPTIONS, INC.","","","","","","","","","","","","","","","","204 N I ST","","TACOMA","WA","984031926","US","2535729018","2536277685","204 N I ST","","TACOMA","WA","984031926","US","2535729018","2536277685","05/24/2005","08/22/2020","","","","","WALKER","KAREN","","PRESIDENT","2535729018","333600000X","026202CF00002490","WA","X","332B00000X","","","X","335E00000X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9040379","05","WA","","14504","01","WA","L&I","6018006","05","WA","","CO3219","01","WA","REGENCE BLUE SHIELD","9045956","05","WA","","AB09090","01","WA","MEDICARE ROSTER BILLER #","7331093","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1942203799","2","","","HEALTH TECHINCAL SERVICES","","","","","","","","","","","","","","","","4 4TH AVE","","GREENVILLE","PA","161251725","US","7245888814","","4 4TH AVE","","GREENVILLE","PA","161251725","US","7245888814","","05/24/2005","08/22/2020","","","","","CHRISTIANSEN","LOUIS","J","PRESIDENT","7245888814","332B00000X","6000003354","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1851394605","2","","","BRUNETT HEALTHCARE,INC","","","","","","","CEDAR FALLS CARE CENTER","3","","","","","","","","1908 6TH ST","","WICHITA FALLS","TX","763012124","US","9403222193","","1908 6TH ST","","WICHITA FALLS","TX","763012124","US","9403222193","","05/24/2005","08/22/2020","","","","","BURNETT","CHRISTINA","L","PRESIDENT","9039486841","314000000X","112724","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1306849153","2","","","WILSON COUNTY MEMORIAL HOSPITAL DISTRICT","","","","","","","CONNALLY MEMORIAL HOME HEALTH","3","","","","","","","","499 10TH STREET","","FLORESVILLE","TX","781142731","US","8303931540","8303931550","497 10TH STREET","STE. 202","FLORESVILLE","TX","781143178","US","8303931540","8303931550","05/24/2005","01/27/2009","","","","","MCGREW","PAMELA","","ADMINISTRATOR","8303931540","251E00000X","002830","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","002830","01","TX","HH LICENSE NUMBER","0238321-01","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1750384509","2","","","BORRE CHIROPRACTIC, LTD.","","","","","","","BORRE CHIROPRACTIC","3","","","","","","","","2S610 STATE ROUTE 59","UNIT 9","WARRENVILLE","IL","605551459","US","6303932828","6303930292","2S610 STATE ROUTE 59","","WARRENVILLE","IL","605551459","US","6303932828","6303930292","05/24/2005","11/01/2007","","","","","BORRE","AMANDA","BETH","PRESIDENT","6303932828","111N00000X","","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02232251","01","IL","BLUE CROSS BLUE SHIELD","661636","01","IL","AMERICAN CHIROPRACTIC NET","2122346216301","01","IL","BEECH STREET","7282480","01","IL","DR BORRE ID-AETNA","661636","01","IL","UNITED HEALTH CARE","7466464","01","IL","CLINIC ID-AETNA","996513","01","IL","GALAXY","6937","01","IL","UNITED HEALTH SERVICE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.C.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1578566329","2","","","COF TRAINING SERVICES, INC","","","","","","","","","","","","","","","","PO BOX 459","","OTTAWA","KS","660670459","US","7852425035","7852422118","1516 N DAVIS AVE","","OTTAWA","KS","660679781","US","7852425035","7852422118","05/24/2005","08/22/2020","","","","","NEFF","LINDA","S","CONTROLLER","7852425035","251C00000X","","","X","320600000X","","","X","320900000X","","","X","385HR2060X","","","X","251J00000X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1487657235","2","","","ANTELOPE VALLEY HOSPITAL DISTRICT","","","","","","","ANTELOPE VALLEY HOME CARE","5","","","","","","","","44335 LOWTREE AVE","","LANCASTER","CA","935344167","US","6619495938","6619514248","44335 LOWTREE AVE","","LANCASTER","CA","935344167","US","6619495938","6619514248","05/24/2005","04/07/2008","","","","","SHELDON","PATTI","","ADMINISTRATOR","6619495938","251E00000X","","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HHA07786F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN","","","","","","","","","","","","","","","","" -"1740283597","2","","","IMR OF MN., LLC","","","","","","","INTEGRATED MEDICAL REHABILITATION OF MN, LLC","3","","","","","","","","PO BOX 390216","","EDINA","MN","554390216","US","","","7250 FRANCE AVE S","STE 111","EDINA","MN","554354311","US","9528378991","9528378992","05/24/2005","06/20/2008","","","","","HANSON","DOUGLAS","","PRESIDENT/CEO","9529255687","261QP2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1659374403","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","2100 LYNDALE AVE S","SUITE A","MINNEAPOLIS","MN","554053686","US","6128727808","","05/24/2005","02/27/2012","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","2621047","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","21487","05","ND","","2383979","05","OH","","0720193","05","IA","","33282100","05","WI","","366237300","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1427051242","2","","","BEHAVIORAL HEALTH CENTER","","","","","","","SEDGWICK COUNTY HEALTH DEPT","5","","","","","","","","714 S HILLSIDE ST","","WICHITA","KS","672113002","US","3166607411","3166515901","714 S HILLSIDE ST","","WICHITA","KS","672113002","US","3166607411","3166515901","05/24/2005","08/22/2020","","","","","BYRNE-LUTZ","ADRIENNE","","PROGRAM MANAGER","3166607411","251K00000X","050","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","116065","01","KS","BCBS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","MS RAODAC","","","","","","","","","","","","","","","","" -"1699778415","2","","","KENNEDY KRIEGER INSTITUTE","","","","","","","","","","","","","","","","700 N BROADWAY","","BALTIMORE","MD","212051806","US","4439239200","4439231875","700 N BROADWAY","","BALTIMORE","MD","212051806","US","4439239200","4439231875","05/24/2005","08/22/2020","","","","","NEUMAN","MICHAEL","","VICE PRESIDENT OF FINANCE","4439239200","284300000X","30036","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1417950239","2","","","NEBRASKA HEALTH IMAGING LLC","","","","","","","","","","","","","","","","840 CRESCENT CENTRE DR","SUITE 200","FRANKLIN","TN","370674626","US","6152612306","6155506004","7819 DODGE ST","","OMAHA","NE","681143411","US","4023848882","4023848886","05/24/2005","03/28/2017","","","","","BAKER","WILLIAM","PERRY","SECRETARY/CFO","6152612306","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1225031040","2","","","HORIZON PASADENA LLC","","","","","","","","","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","4001 PRESTON AVE","STE 130","PASADENA","TX","775052062","US","2819981514","2819981420","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2241760","01","","FIRST HEALTH","7300429","01","","AETNA/MEDSOLUTIONS","P00035826","01","","RAILROAD MCARE PROV #","0351DC","01","TX","BCBS PROV #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1538162383","2","","","THREE RIVERS AMBULANCE SERVICE, INC","","","","","","","THREE RIVERS AMBULANCE SERVICE","5","","","","","","","","PO BOX 2444","","STEPHENVILLE","TX","76401","US","2549185388","8667113793","203 NORTH MAIN STREET","","CROWELL","TX","792279800","US","2549185388","8667113793","05/24/2005","12/03/2014","","","","","FEEMSTER","BOBBY","","BILLING MANAGER","2549185388","3416L0300X","078002","TX","N","341600000X","","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","515724","01","TX","BLUE CROSS BLUE SHIELD","000474901","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1265435010","2","","","SOUTHERN EYE CENTER P.A. II","","","","","","","SOUTHERN EYE CENTER OF EXCELLENCE","3","","","","","","","","1420 S 28TH AVE","","HATTIESBURG","MS","394023107","US","6012643937","6012645930","1420 S 28TH AVE","","HATTIESBURG","MS","394023107","US","6012643937","6012645930","05/24/2005","08/15/2008","","","","","WEEMS","JOHN","","ADMINISTRATOR","6012643937","261QM2500X","010","MS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00770066","05","MS","","09014315","05","MS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1992708747","2","","","WILMINGTON ANESTHESIOLOGISTS PLLC","","","","","","","","","","","","","","","","PO BOX 3686","","WILMINGTON","NC","284060686","US","9104421100","9104421199","2131 S 17TH ST","","WILMINGTON","NC","284017407","US","9104421100","9104421199","05/24/2005","08/22/2020","","","","","HAHN","CHARLES","MICHAEL","EXECUTIVE COMMITTEE CHAIRMAN","9104421100","207L00000X","1234","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8902117","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1437152287","2","","","WINDHAM NURSING & REHABILITATION LLC","","","","","","","DOUGLAS MANOR","3","","","","","","","","103 NORTH RD","","WINDHAM","CT","062801311","US","8604234636","8604235105","103 NORTH RD","","WINDHAM","CT","062801311","US","8604234636","8604235105","05/24/2005","07/11/2018","","","","","SBRIGLIO","MARTIN","","CEO","2033811327","314000000X","2188C","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000006932","05","CT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1255334009","2","","","KEYSTONE SUBSTANCE ABUSE SERVICES","","","","","","","YORK COUNTY COUNCIL ON ALCOHOL AND DRUG ABUSE","4","","","","","","","","PO BOX 4437","","ROCK HILL","SC","297326437","US","8033241800","8033283831","199 S HERLONG AVE","","ROCK HILL","SC","297321186","US","8033241800","8033283831","05/24/2005","10/14/2020","","","","","RUSSELL","DANIELLE","","EXECUTIVE DIRECTOR","8033241800","261QR0405X","DHEC OTP-44","SC","N","324500000X","DHEC ITP-025","SC","N","101YA0400X","","","N","251S00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","19121","01","","CARF CERTIFICATION NUMBER","AD12YK-SC","05","SC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","MPH,MCHES,CPS","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","10/14/2020" -"1982607735","2","","","WACO CARDIOLOGY ASSOCIATES","","","","","","","","","","","","","","","","PO BOX 21327","","WACO","TX","767021327","US","2543995400","2547728669","7125 NEW SANGER RD","STE A","WACO","TX","767124054","US","2543995400","2547728669","05/24/2005","03/28/2013","","","","","BECKNER","VICKI","M","CHIEF OPERATING OFFICER","2543995434","363L00000X","","","N","207RC0000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00P851","01","","BLUE CROSS BLUE SHIELD","084432602","05","TX","","084432601","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1700889557","2","","","PINEHURST NEPHROLOGY ASSOCIATES, PC","","","","","","","","","","","","","","","","293 OLMSTED BLVD STE 7","","PINEHURST","NC","283749191","US","9102953344","9102953165","293 OLMSTED BLVD STE 7","","PINEHURST","NC","283749191","US","9102953344","9102953165","05/24/2005","12/01/2009","","","","","HOEHN-SARIC","EDWARD","W","PRESIDENT","9102953344","207RN0300X","9700591","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","890249K","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1699778340","2","","","FERRARO ENTERPRISES INC","","","","","","","RELIACARE FAMILY PHARMACY","3","","","","","","","","2313 OAKLAWN BLVD","","HOPEWELL","VA","238605032","US","8044580691","8044587377","2313 OAKLAWN BLVD","","HOPEWELL","VA","238605032","US","8044580691","8044587377","05/24/2005","08/22/2020","","","","","FERRARO","JOHN","R","PRESIDENT/OWNER","8044580691","333600000X","0201002083","VA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8514381","05","VA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RPH","","","","","","","","","","","","","","","","" -"1417950163","2","","","GRANCELL VILLAGE OF THE LOS ANGELES JEWISH HOME FOR THE AGING","","","","","","","GRANCELL VILLAGE","5","","","","","","","","7150 TAMPA AVE","","RESEDA","CA","913353700","US","8187743000","","7150 TAMPA AVE","","RESEDA","CA","913353700","US","8187743000","","05/24/2005","07/22/2016","","","","","FORREST","MARY","M","CHIEF EXECUTIVE OFFICER","8187743208","313M00000X","920000013","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZT05900F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1407859150","2","","","WILLIAM ZUCKER & KENNETH WYNESKI, DENTAL PARTNERS, INC.","","","","","","","","","","","","","","","","3708 COLUMBUS AVE","STE 10","SANDUSKY","OH","448705776","US","4196868853","4196258023","3708 COLUMBUS AVE","STE 10","SANDUSKY","OH","448705776","US","4196868853","4196258023","05/24/2005","08/22/2020","","","","","ZUCKER","WILLIAM","JOHN","PRESIDENT","4196268853","261QD0000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","","","","","","","","","","","","","","","","" -"1275536195","2","","","TERRE HAUTE MEDICAL LABORATORY, INC","","","","","","","MEDLAB","3","","","","","","","","PO BOX 9359","634 BEECH STREET","TERRE HAUTE","IN","478089359","US","8122440100","8122321517","1606 N 7TH STREET","","TERRE HAUTE","IN","478042706","US","8122440100","8122321517","05/24/2005","12/02/2010","","","","","DEPOND","WILLIAM","D.","PRESIDENT AND CHIEF MEDICAL OFFICER","8122440100","291U00000X","50000920A","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200131840A","05","IN","","100284700","05","IN","","100468890A","05","IN","","100284610A","05","IN","","100468870A","05","IN","","100284650A","05","IN","","100453080A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","M.D.","","","","","","","","","","","","","","","","" -"1861495772","2","","","PROFESSIONAL PHARMACY OF PENNSBURG INC","","","","","","","PROFESSIONAL PHARMACY OF PENNSBURG","3","","","","","","","","931 MAIN ST","","PENNSBURG","PA","180731603","US","2156799700","2156795410","931 MAIN ST","","PENNSBURG","PA","180731603","US","2156799700","2156795410","05/24/2005","07/19/2018","","","","","STONE","DAVID","","OWNER/PHARM","2156799700","332B00000X","","","N","333600000X","","","N","3336C0004X","","","N","3336C0003X","PP415066L","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2082558","01","","PK","0015359100003","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPH","","","","","","","","","","","","","","","","" -"1316940224","2","","","A BEAUTIFUL SMILE DENTISTRY, L.L.C.","","","","","","","","","","","","","","","","1315 ANDERSON AVE","STE A","FORT LEE","NJ","070241732","US","2012244400","2012244418","1315 ANDERSON AVE","STE A","FORT LEE","NJ","070241732","US","2012244400","2012244418","05/24/2005","08/22/2020","","","","","JIN","DAVID","","OWNER/PROVIDER","2012244400","122300000X","047558-1","NY","N","122300000X","22DI02183600","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.D.S.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1093718900","2","","","SSM HEALTH BUSINESSES","","","","","","","SSM HOSPICE OF ILLINOIS","3","","","","","","","","2 GOOD SAMARITAN WAY STE 325","","MOUNT VERNON","IL","628642486","US","","","2 GOOD SAMARITAN WAY","SUITE 325","MOUNT VERNON","IL","628642408","US","6188991624","6158994744","05/24/2005","01/30/2020","","","","","SHELDON-KRIEGER","SUZANNE","CECILE","DIRECTOR OF CLINICAL EXCELLENCE","3146825650","251G00000X","2002665","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN JD","","","","","","","","","","","","","","","","01/30/2020" -"1073516977","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","2100 NORTH ORANGE AVENUE, SUITES 101B & 201B","","ORLANDO","FL","32804","US","4078975292","","05/24/2005","03/29/2011","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PH17467","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02233010001","05","FL","","022330100","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1427051325","2","","","CATHOLIC HOSPICE, INC","","","","","","","","","","","","","","","","14875 NW 77TH AVE","STUITE 100","MIAMI LAKES","FL","330142568","US","3058222380","3058192281","14875 NW 77TH AVE","STE 100","MIAMI LAKES","FL","330142568","US","3058222380","3058192281","05/24/2005","04/11/2013","","","","","CATANIA","JOSEPH","M.","PRESIDENT/CEO","3058222380","251G00000X","5004095","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","087569400","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1336142181","2","","","BRECKINRIDGE HEALTH INC.","","","","","","","BHI FAMILY CARE CENTER","3","","","","","","","","105 CHAMBLISS DR","","HARDINSBURG","KY","401432575","US","2707562424","2707562525","105 CHAMBLISS DR","","HARDINSBURG","KY","401432575","US","2707562424","2707562525","05/24/2005","01/03/2013","","","","","ARMES","CINDY","","OFFICE MANAGER","2707562424","207Q00000X","38740","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","65941817","05","KY","","CH7872","01","KY","PALMETTO GBA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1053314807","2","","","TRANSCARE ML, INC.","","","","","","","TRANSCARE","3","","","","","","","","1 METROTECH CTR","20TH FLOOR","BROOKLYN","NY","112013949","US","7187638888","","306 W CENTRAL AVE","","PAOLI","PA","193011734","US","6106481648","","05/24/2005","11/20/2012","","","","","O'CONNOR","JAMES","","PRESIDENT","7185109080","3416L0300X","04028","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00128708","01","","RAILROAD MEDICARE","1008989700001","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCARE CORP","","MR.","","","","","","","","","","","","","","","","","","" -"1689677429","2","","","ALTERNATIVE HOME HEALTH, INC.","","","","","","","","","","","","","","","","280 E MAIN ST","","SAINT CLAIRSVILLE","OH","439509157","US","7406997000","7406997012","280 E MAIN ST","","SAINT CLAIRSVILLE","OH","439509157","US","7406997000","7406997012","05/24/2005","10/27/2011","","","","","SMITH","SHEILA","SUE","ADMINISTRATOR","7406997000","251E00000X","NOT APPLICABLE","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN BA","","","","","","","","","","","","","","","","" -"1598768335","2","","","JACKSON COUNTY EMERGENCY MEDICAL SERVICE DISTRICT","","","","","","","JACKSON COUNTY EMS","5","","","","","","","","1309 N PARK LN","","ALTUS","OK","735214552","US","5804774112","5804771070","1309 N PARK LN","","ALTUS","OK","735214552","US","5804774112","5804771070","05/24/2005","08/03/2009","","","","","SAVILLE","TAMMIE","B","OFFICE MANAGER","5804774112","3416L0300X","EMS238","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100819040A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1942203781","2","","","WALLA WALLA HOMEMEDICAL INC","","","","","","","","","","","","","","","","329 S 2ND AVE","","WALLA WALLA","WA","993623034","US","5095251066","5095222361","329 S 2ND AVE","","WALLA WALLA","WA","993623034","US","5095251066","5095222361","05/24/2005","12/21/2012","","","","","BUCKLEY","JAY","","GENERAL MANAGER","5095251066","332B00000X","601013167","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9001710","05","WA","","161646","05","OR","","9012832","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1851394696","2","","","AFFILIATED SURGEONS OF ROCKFORD LLC","","","","","","","","","","","","","","","","PO BOX 15730","","LOVES PARK","IL","611325730","US","8159643333","8159643134","2300 N ROCKTON AVE","STE 304","ROCKFORD","IL","611033619","US","8159643333","8159643134","05/24/2005","02/17/2012","","","","","KLAZURA","PAUL","J","CONTROLLING PARTNER","8154896034","2086S0129X","036063647","IL","N","208C00000X","036064410","IL","N","208600000X","036048085","IL","N","2086S0129X","036101179","IL","N","2086S0129X","036067268","IL","N","208600000X","036064323","IL","N","363AS0400X","085002211","IL","N","363L00000X","209004303","IL","N","2086S0122X","036071666","IL","N","2085R0204X","036104533","IL","N","208600000X","036062833","IL","Y","","","","","","","","","","","","","","","","","204575400","01","IL","OWCP GROUP NUMBER","10132011","01","IL","BCBS GROUP NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","" -"1679576417","2","","","TRANSCARE ML, INC.","","","","","","","TRANSCARE","3","","","","","","","","1 METROTECH CTR","20TH FLOOR","BROOKLYN","NY","112013949","US","7187638888","","306 W CENTRAL AVE","","PAOLI","PA","193011734","US","6106481648","","05/24/2005","11/20/2012","","","","","O'CONNOR","JAMES","","PRESIDENT & CEO","7185109080","3416L0300X","3495","DE","N","3416L0300X","3496","DE","N","3416L0300X","3497","DE","N","3416L0300X","3494","DE","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00100260","01","DE","RAILROAD MEDICARE","1000027198","05","DE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCARE CORP.","","MR.","","","","","","","","","","","","","","","","","","" -"1396748133","2","","","BOWERSTON HILLS NURSING & REHABILITATION, INC.","","","","","","","BOWERSTON HILLS SKILLED NURSING & REHABILITATION","3","","","","","","","","70 PARK AVE W","","MANSFIELD","OH","449021624","US","4195297272","","9076 CUMBERLAND RD SW","","BOWERSTON","OH","446959640","US","7402694000","","05/24/2005","01/09/2012","","","","","BUNNER","MICHAEL","","PRESIDENT","7408270389","314000000X","4745N","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1205839040","2","","","ST. LUKE'S MINERS MEMORIAL HOME CARE","","","","","","","ST. LUKE'S MINERS MEMORIAL HOME CARE","3","","","","","","","","801 E BROAD ST","","TAMAQUA","PA","182522210","US","5709528219","5709528119","801 E BROAD ST","","TAMAQUA","PA","182522210","US","5709528219","5709528119","05/24/2005","03/28/2013","","","","","HALDEMAN-GREEN","NANETTE","ELIZABETH","DIRECTOR","5709528219","251E00000X","","","N","251E00000X","397575","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","THE CARBON SCHUYLKILL COMMUNITY HOSPITAL INC","","","","RN BSN COS-C","","","","","","","","","","","","","","","","" -"1114920956","2","","","LABORATORIOS CLINICOS BACO INC.","","","","","","","MAYAGUEZ ENDOCRINE & CLINICAL LABORATORY","3","","","","","","","","22 CALLE PERAL N","","MAYAGUEZ","PR","006804821","US","7878327190","7878052045","22 CALLE PERAL N","","MAYAGUEZ","PR","006804821","US","7878327190","7878052045","05/24/2005","11/05/2007","","","","","BACO","JORGE","B","PRESIDENT","7878327190","291U00000X","170","PR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","B.S.M.T.(ASCP)","","","","","","","","","","","","","","","","" -"1831192673","2","","","ADAPTIVE HOME THERAPY, INC.","","","","","","","ADAPTIVE HOME SAFETY & ACCESSIBILITY, INC.","4","","","","","","","","PO BOX 1209","","TOMS RIVER","NJ","087541209","US","7328866996","7328868862","3 PLAZA DR STE 12","","TOMS RIVER","NJ","087573765","US","7328866996","7328868862","05/24/2005","11/04/2020","","","","","DEJOHN","TARA","","OFFICE MANAGER","7328866996","225100000X","","","N","225X00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","11/04/2020" -"1912900754","2","","","ANESTHESIA ASSOCIATES OF NEW MEXICO P C","","","","","","","","","","","","","","","","1720 LOUISIANA BLVD NE","STE 401","ALBUQUERQUE","NM","871107020","US","5052604300","5052604338","1100 CENTRAL AVE SE","","ALBUQUERQUE","NM","871064930","US","5058411234","5058411956","05/24/2005","09/27/2007","","","","","MANNE","KISHORE","B.","PRESIDENT","5052604300","174400000X","PT0002685","NM","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","94001930","05","CO","","0747917","05","TX","","002","05","NM","","51227","05","NM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1548263387","2","","","ALASKA INFUSION THERAPY, INC.","","","","","","","","","","","","","","","","PO BOX 32960","","JUNEAU","AK","998032960","US","9077897570","9077897573","9109 MENDENHALL MALL RD","STE 7A","JUNEAU","AK","998017142","US","9077897570","9077897573","05/24/2005","08/22/2020","","","","","FISHEL","KATY","","PRESIDENT/OWNER","9077897570","333600000X","PH407","AK","X","332BP3500X","PH407","AK","X","261QI0500X","PH407","AK","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PH0245","05","AK","","0202236","01","AK","NABP NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RPH","","","","","","","","","","","","","","","","" -"1457354292","2","","","CONIFER CARE,INC.","","","","","","","THERON GRAINGER REHAB & CARE","3","","","","","","","","RR 2","","HUGHES SPRINGS","TX","756569812","US","8067714124","","RR 2","","HUGHES SPRINGS","TX","756569812","US","8067714124","","05/24/2005","08/22/2020","","","","","JEWEL","JAMES","W","PRESIDENT","8067714124","314000000X","111016","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1447253281","2","","","HEALTH CARE RELIANCE LLC D/B/A ELLIS MANOR","","","","","","","ELLIS MANOR","3","","","","","","","","1157 HIGHLAND AVE","STE 102","CHESHIRE","CT","064101600","US","2032502030","2032502034","210 GEORGE ST","","HARTFORD","CT","061142823","US","8602969166","8602968020","05/24/2005","08/07/2008","","","","","HARRISON","GLADYS","","CONTROLLER","2032502030","314000000X","2187C","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000010595","05","CT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1265435002","2","","","ST. BERNARDS BEHAVIORAL HEALTH","","","","","","","","","","","","","","","","2712 E JOHNSON AVE","","JONESBORO","AR","724011874","US","8709322800","8709321189","2712 E JOHNSON AVE","","JONESBORO","AR","724011874","US","8709322800","8709321189","05/24/2005","08/22/2020","","","","","BURNS","BECKY","J","BUSINESS OFFICE MANAGER","8702684104","283Q00000X","AR3552","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","14010","01","AR","AR BLUE CROSS & BLUE SHIE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1083617823","2","","","SHENANDOAH VALLEY MEDICAL SYSTEM, INC.","","","","","","","","","","","","","","","","PO BOX 1146","","MARTINSBURG","WV","254022890","US","3042634999","","99 TAVERN RD","","MARTINSBURG","WV","254012890","US","3042634999","","05/24/2005","10/23/2019","","","","","HASSING","MICHAEL","","CEO","3042634999","261QF0400X","=========","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0035217000","05","WV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1801899646","2","","","BAY EYE MEDICAL GROUP INC.","","","","","","","","","","","","","","","","1665 DOMINICAN WAY","STE 124","SANTA CRUZ","CA","950651528","US","8314757012","","1665 DOMINICAN WAY","STE 124","SANTA CRUZ","CA","950651528","US","8314757012","","05/24/2005","02/12/2008","","","","","HSEI","REX","","PRESIDENT","8314757012","261QM2500X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","","","","","","","","","","","","","","","","" -"1710980552","2","","","BARTLESVILLE CARE CENTER INC.","","","","","","","BARTLESVILLE HEALTH & REHAB COMMUNITY","3","","","","","","","","3434 KENTUCKY PL","","BARTLESVILLE","OK","740062339","US","9183339545","9183339601","3434 KENTUCKY PL","","BARTLESVILLE","OK","740062339","US","9183339545","9183339601","05/24/2005","06/10/2011","","","","","DOUT","ALEX","WADE","ADMINISTRATOR","9183339545","314000000X","NH7403-7403","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100777490A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1154324994","2","","","JOURNEYCARE, INC","","","","","","","HOSPICE OF NORTHEASTERN ILLINOIS, INC.","4","","","","","","","","2050 CLAIRE CT.","","GLENVIEW","IL","600257635","US","8477677423","8475561505","405 LAKE ZURICH RD.","","BARRINGTON","IL","600103141","US","8473815599","8473818042","05/24/2005","06/24/2020","","","","","HOBSON","KIMBERLY","","PRESIDENT & CEO","8474677423","251G00000X","","","N","251G00000X","2000917","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","06/24/2020" -"1063415800","2","","","UNITED METHODIST BEHAVIORAL HEALTH SYSTEM, INC","","","","","","","METHODIST BEHAVIORAL HOSPITAL","5","","","","","","","","1600 ALDERSGATE RD","SUITE 200","LITTLE ROCK","AR","722056676","US","5016610720","5013257938","1601 MURPHY DRIVE","","MAUMELLE","AR","72113","US","5018033388","5018034272","05/24/2005","04/07/2016","","","","","COLE","LESLEY","DON","CFO","5016610720","283Q00000X","AR4089","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","145121125","05","AR","","14017","01","AR","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1881697621","2","","","LEE REGIONAL VISITING NURSE ASSOCIATION, INC.","","","","","","","PORCHLIGHT VNA","3","","","","","","","","32 PARK STREET","","LEE","MA","01238","US","4132431212","4132439707","32 PARK STREET","","LEE","MA","01238","US","4132431212","4132439707","05/24/2005","07/23/2012","","","","","CHAFFEE","HOLLY","ANN","CEO","4132431212","251E00000X","NOT APPLICABLE","MA","N","251E00000X","","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0602051","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN, BSN, MSN","","","","","","","","","","","","","","","","" -"1790788537","2","","","SULLIVAN COUNTY COMMUNITY HOSPITAL","","","","","","","SULLIVAN COUNTY COMMUNITY HOSPITAL HOME HEALTH","3","","","","","","","","PO BOX 10","2110 N. HOSPITAL BLVD, SUITE #3","SULLIVAN","IN","478820010","US","8122684311","8122682654","2110 N HOSPITAL BLVD STE 3","","SULLIVAN","IN","478827656","US","8122684311","8122682654","05/24/2005","07/15/2014","","","","","SIMMONS","KENISHA","J.","DIRECTOR","8122684311","251E00000X","","","N","251E00000X","05-003248-1","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200387670A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","SULLIVAN COUNTY COMMUNITY HOSPITAL","","MS.","","RN","","","","","","","","","","","","","","","","" -"1336142165","2","","","ARROWHEAD DENTAL ASSOCIATES","","","","","","","","","","","","","","","","4995 S COUNTY TRL","","CHARLESTOWN","RI","028133182","US","4013646300","4013649190","4995 S COUNTY TRL","","CHARLESTOWN","RI","028133182","US","4013646300","4013649190","05/24/2005","08/22/2020","","","","","GOUIN","BRUCE","D","OWNER","4013646300","1223G0001X","D1824","RI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1063415891","2","","","HARRISON SURGERY CENTER, LLC","","","","","","","","","","","","","","","","105 SAWGRASS PT","","HARRISON","AR","726013072","US","8707419700","","105 SAWGRASS PT","","HARRISON","AR","726013072","US","8707419700","","05/24/2005","01/05/2010","","","","","KILGORE","KENNETH","MERLE","OWNER/PRESIDENT","8707419700","261QA1903X","AR4264","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","","","","","","","","","","","","","","","","" -"1881697613","2","","","HEARTLAND DIAGNOSTICS, LLC","","","","","","","LINCOLN TRAIL DIAGNOSTICS","3","","","","","","","","840 CRESCENT CENTRE DR","SUITE 200","FRANKLIN","TN","370674626","US","6152612306","6155506004","1111 WOODLAND DR","","ELIZABETHTOWN","KY","427012749","US","2707653700","2707653704","05/24/2005","09/11/2018","","","","","BAKER","WILLIAM","PERRY","SECRETARY/CFO","6152612306","261QR0200X","","","N","293D00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7100330440","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1609879436","2","","","EYE CARE MEDICAL GROUP A PROFESSIONAL CORP","","","","","","","","","","","","","","","","1665 DOMINICAN WAY","STE 122","SANTA CRUZ","CA","950651528","US","8314761298","","1665 DOMINICAN WAY","STE 122","SANTA CRUZ","CA","950651528","US","8314761298","","05/24/2005","06/24/2016","","","","","ALLAMAN","CHRISTEN","","PRESIDENT","8314761298","261QM2500X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","","","","","","","","","","","","","","","","" -"1518960343","2","","","PARMENTER VNA AND COMMUNITY CARE, INC.","","","","","","","","","","","","","","","","266 COCHITUATE RD","","WAYLAND","MA","017783514","US","5083583000","5083583005","266 COCHITUATE RD","","WAYLAND","MA","017783514","US","5083583000","5083583005","05/24/2005","09/19/2012","","","","","MAYHER","CYNTHIA","J","EXECUTIVE DIRECTOR","5083583000","251E00000X","=========","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","602353","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN","","","","","","","","","","","","","","","","" -"1144223975","2","","","NCED MENTAL HEALTH CENTER","","","","","","","","","","","","","","","","1900 DENVER AVE","","EL PASO","TX","799023008","US","9155444000","9155320733","1900 DENVER AVE","","EL PASO","TX","799023008","US","9155444000","9155320733","05/24/2005","02/19/2008","","","","","MORALES","HECTOR","","HOSPITAL ADMINISTRATOR","9155444000","283Q00000X","000724","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1245233170","2","","","COMPANION HOME HEALTH, LLC","","","","","","","","","","","","","","","","1310 E OKLAHOMA AVE","","GUTHRIE","OK","730443757","US","4052939000","4052939001","1310 E OKLAHOMA AVE","","GUTHRIE","OK","730443757","US","4052823402","4052823421","05/24/2005","12/15/2016","","","","","BENNETT","DONNA","","ADMINISTRATOR","4052939000","251E00000X","7790","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000377683001","01","OK","BLUE CROSS BLUE SHIELD","200049690 A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN, CHCA","","","","","","","","","","","","","","","","" -"1063415990","2","","","ADVANCED AMBULATORY ANESTHESIA, LLC","","","","","","","","","","","","","","","","PO BOX 343","","MIDLAND PARK","NJ","074320343","US","8622290559","","1176 HAMBURG TPKE","","WAYNE","NJ","074705054","US","8622290559","","05/24/2005","04/29/2020","","","","","REUVENI","MICHAEL","A","PRESIDENT","8622290559","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8038309","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","04/29/2020" -"1235132150","2","","","EAST HOUSTON SURGERY CENTER, LLC","","","","","","","","","","","","","","","","12950 EAST FRWY.","SUITE 100","HOUSTON","TX","770155710","US","7133303887","7133303897","12950 EAST FRWY.","SUITE 100","HOUSTON","TX","770155710","US","7133303887","7133303897","05/24/2005","11/07/2008","","","","","HOFSTETTER","NORMA","JEAN","BUSINESS OFFICE MANAGER","7133303887","261QA1903X","0376","TX","N","261QA1903X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0879462-01","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1134122054","2","","","LIFESCAN MINNESOTA STAND UP MRI LLC","","","","","","","","","","","","","","","","5023 EXCELSIOR BLVD","STE 9B","ST LOUIS PARK","MN","554163013","US","9529208860","9529208869","5023 EXCELSIOR BLVD","STE 9B","ST LOUIS PARK","MN","554163013","US","9529208860","9529208869","05/24/2005","07/07/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","377120200","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","LIFESCAN MINNESOTA STAND UP MRI LLC","","MRS.","","","","","","","","","","","","","","","","","","" -"1689677502","2","","","A & B HEALTH CARE, INC.","","","","","","","","","","","","","","","","PO BOX 1360","","STANWOOD","WA","982921360","US","3606292977","3606294382","8919 271ST ST NW","","STANWOOD","WA","982925997","US","3606292977","3606294382","05/24/2005","07/17/2020","","","","","VEAZEY","RONALD","EDWARD","PRESIDENT","3606292977","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","45771","01","WA","REGENCE","34629","01","WA","LABOR AND INDUST","9049586","05","WA","","9049594","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","07/17/2020" -"1942203864","2","","","INTERCOUNTY NURSING SERVICE","","","","","","","","","","","","","","","","101 MAIN AVE N","","THIEF RIVER FALLS","MN","567011901","US","2186810876","2186837099","101 MAIN AVE N","","THIEF RIVER FALLS","MN","567011901","US","2186810876","2186837099","05/24/2005","02/20/2020","","","","","JORE","KAYLA","R","DIRECTOR","2186810876","251E00000X","326512","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","8227IN","01","MN","BCBS OF MN/BLUE PLUS","8G493IN","01","MN","BCBS OF MN/BLUE PLUS","167895","01","MN","UCARE WITH ALTRU","458554200","05","MN","","167897","01","MN","UCARE WITH ALTRU","1045280","01","MN","PREFERRED ONE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","PHN","","","","","","","","","","","","","","","","02/20/2020" -"1760485684","2","","","COUNTY OF KIT CARSON","","","","","","","KIT CARSON COUNTY AMBULANCE SERVICE","3","","","","","","","","PO BOX 160","251 16TH ST SUITE 201","BURLINGTON","CO","808071619","US","7193465948","7193467242","257 15TH ST","","BURLINGTON","CO","808071619","US","7193465948","7193467242","05/24/2005","12/07/2009","","","","","FRITZ","CAROL","ANN","FINANCE DIRECTOR","7193468139","3416L0300X","93","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","590010472","01","CO","RAIL ROAD MEDICARE","590010472","01","CO","PALMETTO GBA","06624639","05","CO","","100243030A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1588667406","2","","","COUNTY OF DUNN","","","","","","","DUNN COUNTY DEPARTMENT OF HUMAN SERVICES & ADRC","3","","","","","","","","3001 US HIGHWAY 12 EAST","SUITE 160","MENOMONIE","WI","547513045","US","7152321116","7152325987","3001 US HIGHWAY 12 EAST","SUITE 160","MENOMONIE","WI","547513045","US","7152321116","7152325987","05/24/2005","07/17/2015","","","","","KORPELA","KRISTIN","M","DIRECTOR","7152312750","101YM0800X","1287","WI","N","101YP2500X","1287","WI","N","103TB0200X","1287","WI","N","106H00000X","1287","WI","N","163WP0808X","1287","WI","N","2084P0800X","1287","WI","N","261QM0801X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","67551DU","01","WI","COMPREHENSIVE CARE SERV","260050222","01","WI","RAILROAD MEDICARE","42141400","05","WI","","94112","01","WI","PREFERREDONE FACILITY ID","60011400","05","WI","","9009DU","01","MN","BC & BS OF MN PROVIDER ID","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF DUNN","","MS.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","" -"1114920931","2","","","AMITY HOME HEALTH INC","","","","","","","","","","","","","","","","17042 DEVONSHIRE ST","STE 220","NORTHRIDGE","CA","913251679","US","8188318270","8188318272","17042 DEVONSHIRE ST","STE 220","NORTHRIDGE","CA","913251679","US","8188318270","8188318272","05/24/2005","08/22/2020","","","","","CABANBAN","EDNA","P","ADMINISTRATOR","8188318270","251E00000X","","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HHA08268F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1740283563","2","","","OCALA HEALTHCARE ASSOCIATES, LLP","","","","","","","TIMBERRIDGE NURSING & REHAB. CTR.","4","","","","","","","","9848 SW 110TH ST","","OCALA","FL","344817651","US","3522917253","3522917239","9848 SW 110TH ST","","OCALA","FL","344817651","US","3522917253","3522917239","05/24/2005","10/06/2015","","","","","MARKO","DONNA","","FINANCIAL DIRECTOR","3522917253","314000000X","SNF1560096","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","020333500","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1386647105","2","","","KAY & TABAS OPHTHALMOLOGY ASSOCIATES","","","","","","","","","","","","","","","","601 WALNUT ST STE 210W","","PHILADELPHIA","PA","191063323","US","2159256402","2159250262","601 WALNUT ST STE 210W","","PHILADELPHIA","PA","191063323","US","2159256402","2159250262","05/24/2005","09/02/2020","","","","","KAY","MICHAEL","LEON","OWNER/ OPHTHALMOLOGIST","2159256402","152W00000X","","","N","207W00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","09/02/2020" -"1295738011","2","","","OKLAHOMA EYE CENTER OPTICAL","","","","","","","","","","","","","","","","9343 S MINGO RD","","TULSA","OK","741335702","US","9182504554","9183071943","9343 S MINGO RD","","TULSA","OK","741335702","US","9182504554","9183071943","05/24/2005","06/20/2018","","","","","FISHER","CARL","M.","OWNER","9182504554","332B00000X","=========","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100744180 B","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.O.","","","","","","","","","","","","","","","","" -"1013910835","2","","","ABILENE HELPING HANDS INC","","","","","","","ABILENE CONVALESCENT CENTER","3","","","","","","","","2630 OLD ANSON RD","","ABILENE","TX","796032210","US","9729067391","","2630 OLD ANSON RD","","ABILENE","TX","796032210","US","9729067391","","05/24/2005","08/22/2020","","","","","LANGE","STEVEN","","PRESIDENT","9729067391","313M00000X","4892","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4892","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1003819822","2","","","SOUTHERN OPEN MRI, LLC","","","","","","","AUGUSTA OPEN MRI","3","","","","","","","","840 CRESCENT CENTRE DR","SUITE 200","FRANKLIN","TN","370674626","US","6152612306","6155506004","3685 WHEELER RD","STE 100","AUGUSTA","GA","309096640","US","7068699000","7068698947","05/24/2005","11/12/2014","","","","","BAKER","WILLIAM","PERRY","CFO","6152612306","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GPA997 (GROUP ID#)","05","SC","","SL0062","05","SC","","P01267118","01","GA","RAILROAD MEDICARE","000720398P/00891228B","05","GA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1639172455","2","","","COMFORT CARE HOME HEALTH AGENCY, INC","","","","","","","","","","","","","","","","1415 WALNUT ST","","DONIPHAN","MO","639351016","US","5739963524","5739964531","1415 WALNUT ST","","DONIPHAN","MO","639351016","US","5739963524","5739964531","05/24/2005","06/08/2010","","","","","CROCKETT","KIMBERLIN","SUE","CEO/PRESIDENT","5739963524","251E00000X","546-6","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","588583500","05","MO","","112511","01","MO","BC/BS NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1275536096","2","","","MED-EQUIP, LLC","","","","","","","","","","","","","","","","238 S MERIDIAN ST","STE 205","INDIANAPOLIS","IN","462251024","US","3176372310","3176372328","238 S MERIDIAN ST","STE 205","INDIANAPOLIS","IN","462251024","US","3176372310","3176372328","05/24/2005","04/20/2008","","","","","RIPPERGER","DOUGLAS","EDWARD","PRESIDENT","3176372310","332B00000X","0114552967","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","015966P","01","IN","SIHO","V17061","01","IN","HOMELINK","000000247653","01","IN","ANTHEM BLUE CROSS/ BLUE S","7081415","01","IN","AETNA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1902809726","2","","","MILAN DENTAL ASSOCIATES, D.D.S., P.C.","","","","","","","","","","","","","","","","519 W MAIN ST","","MILAN","MI","481609559","US","7344391543","7344390553","519 W MAIN ST","","MILAN","MI","481609559","US","7344391543","7344390553","05/24/2005","08/22/2020","","","","","GREGG","STEPHEN","R.","OWNER","7344391543","1223G0001X","10131","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4050468","05","MI","","4135430","05","MI","","110788","01","MI","PRUDENTIAL DMO ID","2602947","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1033112834","2","","","OPEN MRI OF FORT WORTH, L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-FORT WORTH","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2017754306","6500 WEST FWY","STE 104","FORT WORTH","TX","761162139","US","8177635900","8177635858","05/24/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","","X","261QR0200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16-14029","01","TX","UNITED HEALTHCARE OF TX","2030111","01","TX","AETNA US HEALTHCARE","3650","01","TX","MEDFOCUS","A-67817","01","TX","MULTIPLAN","10013077","01","TX","AMERIGROUP","25504","01","TX","NYLCARE HEALTH PLANS","0026DC","01","TX","BCBS OF TEXAS","0726397","01","TX","AMERIHEALTH","825242","01","TX","HEALTHSMART PREFERRED CAR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1497758296","2","","","ADVANCED INTERVENTIONAL PAIN MANAGEMENT, LLC","","","","","","","","","","","","","","","","PO BOX 343","","MIDLAND PARK","NJ","074320343","US","2018042800","","350 BOULEVARD","","PASSAIC","NJ","070552840","US","9733654747","","05/24/2005","08/22/2020","","","","","REUVENI","MICHAEL","A","PRESIDENT","9733654747","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7771801","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1215930011","2","","","POTOMAC VALLEY NURSING FACILITIES INC.","","","","","","","POTOMAC VALLEY NURSING AND WELLNESS CENTER","3","","","","","","","","1235 POTOMAC VALLEY RD","","ROCKVILLE","MD","208502757","US","3017620700","3018385103","1235 POTOMAC VALLEY RD","","ROCKVILLE","MD","208502757","US","3017620700","3018385103","05/24/2005","08/22/2020","","","","","BOWDEN","LEAH","T.","PRESIDENT AND ADMINISTRATOR","3017620700","314000000X","0015024","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7100110","01","","EVERCARE PROVIDER NUMBER","RT8","01","MD","GHMSI AND BLUECHOICE PROV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN, LNHA","","","","","","","","","","","","","","","","" -"1124021928","2","","","TOWN OF BERLIN OFFICE OF THE TREASU RER","","","","","","","","","","","","","","","","240 KENSINGTON RD","STE 12","BERLIN","CT","060372655","US","8608287030","8608287420","240 KENSINGTON RD","STE 12","BERLIN","CT","060372655","US","8608287030","8608287420","05/24/2005","08/08/2017","","","","","COLELLA","LINDA","","ADMINISTRATOR","8608287030","251E00000X","C-804010","CT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","60-00077","01","CT","UNITED HEALTH CARE","702016-01","01","CT","MD HEALTH","702016","01","CT","CONNECTICARE","782127","01","CT","AETNA US HEALTHCARE","A785612","01","CT","OXFORD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1437152220","2","","","FIRST CHOICE COMMUNITY HOME CARE, INC.","","","","","","","ANGELS CARE HOME HEALTH","3","","","","","","","","2301 HIGHWAY 1187","SUITE 203","MANSFIELD","TX","760636124","US","8174696739","8178013486","1908 ELMWOOD","SUITE 101","WICHITA FALLS","TX","76308","US","9403221391","9403222967","05/24/2005","05/08/2017","","","","","EDDINS","ANGELA","","OWNER","8174696739","251E00000X","5429","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1700889599","2","","","AMANA ROSE ,LLC","","","","","","","PIONEER NURSING AND REHABILITATION CENTER","3","","","","","","","","225 N SOWERS RD","","IRVING","TX","750617449","US","9722534173","","225 N SOWERS RD","","IRVING","TX","750617449","US","8067714124","","05/24/2005","08/22/2020","","","","","SLAYTON","SHERRILL","ANN","PRESIDENT","9722534173","314000000X","114145","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5141","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1528061314","2","","","SHAMOKIN AREA COMMUNITY HOSPITAL","","","","","","","","","","","","","","","","4200 HOSPITAL RD","","COAL TOWNSHIP","PA","178669668","US","5706444200","5706444351","4200 HOSPITAL RD","","COAL TOWNSHIP","PA","178669668","US","5706444200","5706444351","05/24/2005","02/22/2011","","","","","MORRIS","RANDY","","V.P., CFO","5706444229","282NR1301X","196501","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1007753070010","05","PA","","1012710001","01","PA","HEALTH AMERICA","56137","01","PA","MEDPLUS","25714","01","PA","GEISINGER HEALTH PLAN","56136","01","PA","MEDPLUS","1501462","01","PA","GATEWAY","1516","01","PA","HIGHMARK ACUTE","66283","01","PA","MEDPLUS","1007753070003","05","PA","","1007753070004","05","PA","","030086400","01","PA","FEDERAL BLACK LUNG PROGRA","74340","01","PA","MEDPLUS","1007753070009","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1609879493","2","","","SUNSHINE TERRACE FOUNDATION, INC","","","","","","","","","","","","","","","","248 W 300 N","","LOGAN","UT","843213810","US","4357520411","4357521318","248 W 300 N","","LOGAN","UT","843213810","US","4357520411","4357521318","05/24/2005","06/25/2008","","","","","BALLS","TRINA","","CFO","4357540246","314000000X","2004-NCF-86","UT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1427051218","2","","","FULTON HOME CARE SERVICES LLC","","","","","","","REGIONAL HOME CARE, PURCHASE PARKWAY","3","","","","","","","","9510 ORMSBY STATION RD","STE 300","LOUISVILLE","KY","402234081","US","5028911187","5028918067","17 CONSTRUCTION RD","STE F","MAYFIELD","KY","420666754","US","2702473155","2702470803","05/24/2005","01/07/2017","","","","","LYLES","PATRICK","TODD","SR VICE PRESIDENT","5028911044","251J00000X","150122","KY","N","251E00000X","150122","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","42002386","05","KY","","34003384","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1831192616","2","","","HI TECH CARE INC.","","","","","","","AMEDISYS HOME HEALTH","3","","","","","","","","3854 AMERICAN WAY","SUITE A","BATON ROUGE","LA","708164896","US","2252922031","2252959678","940 CENTRE CIRCLE","SUITE 3006","ALTAMONTE SPRINGS","FL","327147243","US","4074640194","4074640327","05/24/2005","04/05/2017","","","","","KUSSEROW","PAUL","","PRESIDENT","2252922031","251E00000X","107660","","N","251E00000X","HHA299991339","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1740283522","2","","","SOUTH TEXAS UROLOGY & UROLOGIC ONCOLOGY, P.A.","","","","","","","","","","","","","","","","9102 FLOYD CURL DR","","SAN ANTONIO","TX","782401553","US","2106153899","2106153803","9102 FLOYD CURL DR","","SAN ANTONIO","TX","782401553","US","2106153899","2106153803","05/24/2005","12/03/2019","","","","","SAROSDY","MICHAEL","F.","PRESIDENT","2106153899","208800000X","F6102","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","095052902","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1053314831","2","","","LAS CLINICAS DEL NORTE, INCORPORATED","","","","","","","EL RITO CLINIC","3","","","","","","","","HWY 571 #28","","EL RITO","NM","875300237","US","5755814728","5755810030","HIGHWAY 571 #28","","EL RITO","NM","875300237","US","5755814728","5755810030","05/24/2005","05/27/2015","","","","","LOPEZ","ANDY","R.","CEO","5055814728","261QF0400X","6254","NM","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","47704","05","NM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1861495640","2","","","ANKLE AND FOOT CLINIC OF LOWER COLUMBIA PLLC","","","","","","","ANKLE & FOOT CLINIC","3","","","","","","","","1114 BROADWAY ST","","LONGVIEW","WA","986323842","US","3605773682","3605771871","1114 BROADWAY ST","","LONGVIEW","WA","986323842","US","3605773682","3605771871","05/24/2005","01/08/2008","","","","","SCHATZ","STEVEN","GREGORY","MEMBER","3605773682","213ES0103X","PO00000488","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","DPM","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1770586554","2","","","WOODLAWN HOSPITAL","","","","","","","GREENCROFT HEALTHCARE","3","","","","","","","","PO BOX 819","","GOSHEN","IN","465270819","US","5745374000","","1225 GREENCROFT DR","","GOSHEN","IN","465265102","US","5745374000","","05/24/2005","01/27/2016","","","","","ALLEY","JOHN","","PRESIDENT/CEO","5742233141","314000000X","05-000112-1","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100288710A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1477556348","2","","","TC AMBULANCE CORPORATION","","","","","","","METROEMS","3","","","","","","","","1 METROTECH CTR","20TH FLOOR","BROOKLYN","NY","112013949","US","7187638888","","25 14TH ST","","BROOKLYN","NY","112154614","US","7187638888","","05/24/2005","12/03/2012","","","","","O'CONNOR","JAMES","","PRESIDENT & CEO","7185109080","3416L0300X","0510","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P00018365","01","NY","RAILROAD MEDICARE","02301095","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCARE CORP.","","MR.","","","","","","","","","","","","","","","","","","" -"1639172505","2","","","NATIONAL P.E.T. SCAN PINELLAS, LLC","","","","","","","","","","","","","","","","6622 SOUTHPOINT DR S","SUITE 360","JACKSONVILLE","FL","322168014","US","9043588441","9043582288","6600 66TH ST N","STE B","PINELLAS PARK","FL","337815040","US","9043588441","7274712197","05/24/2005","12/05/2012","","","","","AUSTIN","MARGIE","FAYE","ADMINISTRATIVE ASSISTANT","9043588441","261QR0200X","HCC5686","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7642379","01","FL","AETNA NON HMO","2918309","01","FL","AETNA HMO","202977","01","FL","WELLCARE","3540719-001","01","FL","CIGNA","593688943","01","FL","TRICARE","593688943","01","FL","HUMANA","V2570","01","FL","BLUE CROSS BLUE SHIELD FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1548263411","2","","","SKIFF MEDICAL CENTER","","","","","","","","","","","","","","","","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","204 N 4TH AVE E","","NEWTON","IA","502083135","US","6417921273","6417914852","05/24/2005","08/15/2014","","","","","ALTMAN","BRETT","A","CEO","6417921273","275N00000X","500041H","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0655704","05","IA","","66032","01","IA","BCBS SNF PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","SKIFF MEDICAL CENTER","","","","","","","","","","","","","","","","","","","","" -"1457354326","2","","","COLORADO PROFESSIONAL MEDICAL, INC.","","","","","","","","","","","","","","","","850 E HARVARD AVE","SUITE 245","DENVER","CO","802105073","US","3039960686","3039960688","850 E HARVARD AVE","SUITE 245","DENVER","CO","802105073","US","3039960686","3039960688","05/24/2005","06/07/2013","","","","","PRICE","SHERYL","S","DIRECTOR OF REIMBURSEMENT","5034938288","335E00000X","18-17166-0000","CO","N","332B00000X","18-17166-0000","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","57472335","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","HANGER INC","","","","","","","","","","","","","","","","","","","","" -"1366445231","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","8490 SANTA MONICA BLVD","STE 1","WEST HOLLYWOOD","CA","900694261","US","3106574333","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PHY43521","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PHA435210","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1275536146","2","","","MESA COUNTY HEALTH DEPARTMENT","","","","","","","NONE","5","","","","","","","","P.O. BOX 20000","","GRAND JUNCTION","CO","815025033","US","9702486974","9702486974","510 29 1/2 ROAD","","GRAND JUNCTION","CO","81504","US","9702486905","9702486977","05/24/2005","12/14/2011","","","","","KUHR","JEFFREY","","DIRECTOR","9702486974","163WC1500X","39245","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","04420097","05","CO","","04006128","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1184627051","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","3900 FIFTH AVE","STE 110","SAN DIEGO","CA","921033122","US","6192915474","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PHY44191","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PHA441910","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1447253315","2","","","FINGER LAKES OPHTHALMOLOGY, PC","","","","","","","THE EYE CARE CENTER","3","","","","","","","","325 WEST ST","","CANANDAIGUA","NY","144241723","US","5853942020","5853949261","325 WEST ST","","CANANDAIGUA","NY","144241723","US","5853942020","5853949261","05/24/2005","04/28/2011","","","","","HWANG","SUNGJUN","J.","PRESIDENT","5853942020","152W00000X","","","N","207W00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00446117","05","NY","","P010127474","01","","EXCELLUS BC/BS","100753CR","01","","PREFERRED CARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1669475539","2","","","AXTELL ORTHOPEDICS PA","","","","","","","","","","","","","","","","800 MEDICAL CENTER DRIVE","SUITE 240","NEWTON","KS","67114","US","3162839977","3162830966","800 MEDICAL CENTER DR","SUITE 240","NEWTON","KS","671147808","US","3162839977","3162830966","05/24/2005","06/02/2008","","","","","CRAIG","CHARLES","C","OWNER","3162839977","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1487657359","2","","","WEST JEFFERSON SURGERY CENTER, LLC","","","","","","","","","","","","","","","","1111 MEDICAL CENTER BLVD","SUITE 105 NORTH","MARRERO","LA","70072","US","5043492332","5043492359","1111 MEDICAL CENTER BLVD","STE 105N","MARRERO","LA","700723152","US","5043492332","5043492359","05/24/2005","08/22/2020","","","","","JUNEAU","MARK","","MEDICAL DIRECTOR","5043492332","261QA1903X","115","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1150011","05","LA","","115","01","LA","LIC NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","M.D.","","","","","","","","","","","","","","","","" -"1396748265","2","","","STATE OF KANSAS","","","","","","","OSAWATOMIE STATE HOSPITAL","3","","","","","","","","500 STATE HOSPITAL DRIVE","","OSAWATOMIE","KS","660641813","US","9137557000","9137557127","500 STATE HOSPITAL DRIVE","","OSAWATOMIE","KS","660641813","US","9137557000","9137557127","05/24/2005","08/22/2013","","","","","REA","JERRY","","SUPERINTENDENT","9137557073","283Q00000X","M061101","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100101120B","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1205839172","2","","","VALLEY CARE HOME HEALTH SERVICES, INC.","","","","","","","","","","","","","","","","ONE RIDGEGATE DRIVE","SUITE 230","TEMECULA","CA","925905507","US","9516766438","9516767193","40880B COUNTY CENTER DR","STE K","TEMECULA","CA","925916022","US","9512960006","9512960226","05/24/2005","11/02/2015","","","","","GONZALEZ","LEILANI","TEVES","DIRECTOR OF PATIENT CARE","9512960006","251E00000X","058146","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","BSN RN","","","","","","","","","","","","","","","","" -"1114920089","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","4940 VAN NUYS BLVD","STE 104","SHERMAN OAKS","CA","914031700","US","8189903784","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","PHA383000","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1114920980","2","","","STATE OF KANSAS","","","","","","","RAINBOW MENTAL HEALTH FACILITY","3","","","","","","","","500 STATE HOSPITAL DRIVE","","OSAWATOMIE","KS","660640500","US","9137557312","9137557127","2205 WEST 36TH AVE","","KANSAS CITY","KS","661032198","US","9137895800","9137557127","05/24/2005","07/30/2012","","","","","ASHCRAFT","STEVEN","D.","SUPERINTENDENT","9137557073","283Q00000X","M105001","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100101140A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","STATE OF KANSAS DBA RAINBOW MENTAL HEALTH FACILITY","","MR.","","","","","","","","","","","","","","","","","","" -"1730182502","2","","","ANGLETON HOME HEALTH INC","","","","","","","ANGLETON VISITING NURSES","3","","","","","","","","1212 N VELASCO ST","STE 200","ANGLETON","TX","775153090","US","9798480219","9798482025","1212 N VELASCO ST","STE 200","ANGLETON","TX","775153090","US","9798480219","9798482025","05/24/2005","08/13/2013","","","","","GUTIERREZ","ELVA","","ADMINISTRATOR","9798480219","251E00000X","009583","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001004547","01","TX","PHC PROVIDER NUMBER","148964301","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1215930003","2","","","COLLINGSWOOD NURSING FACILITIES INC","","","","","","","COLLINGSWOOD NURSING & REHABILITATION CENTER","3","","","","","","","","299 HURLEY AVE","","ROCKVILLE","MD","208503118","US","3017628900","3017628020","299 HURLEY AVE","","ROCKVILLE","MD","208503118","US","3017628900","3017628020","05/24/2005","09/11/2018","","","","","WHETZEL","LEAH","T","ADMINISTRATOR","3017628900","314000000X","","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","RE6","01","","BCBSNCA","7100090","01","","EVERCARE PROVIDER NUMBER","02FVCO","01","MD","BLUECROSS MARYLAND","155327500","05","MD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1285637066","2","","","PHOENIX OBSTETRICS-GYNECOLOGY LLC","","","","","","","","","","","","","","","","3114 CROASDAILE DR STE 200","PHOENIX OBSTETRICS/GYNECOLOGY, LLC","DURHAM","NC","277052508","US","9194251565","9194250478","1600 S ANDREWS AVE","SUITE 323, WEST WING","FT LAUDERDALE","FL","333162510","US","9543555110","9194250478","05/24/2005","08/10/2019","","","","","WALLS","BERTRAM","","PRESIDENT","9548382371","207V00000X","ME43546","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","269096900","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1417950197","2","","","MUSEUM CENTER SURGERY GROUP INC.","","","","","","","MIRACLE MILE OUTPATIENT SURGERY CENTER","3","","","","","","","","5757 WILSHIRE BLVD","PROMENADE 6","LOS ANGELES","CA","900363681","US","3239640866","3239640868","5757 WILSHIRE BLVD","PROMENADE 6","LOS ANGELES","CA","900363681","US","3239640866","3239640868","05/24/2005","10/19/2011","","","","","RUBIN","HOWARD","STANLEY","CHIEF EXECUTIVE OFFICER","3239640866","261QA1903X","930000897","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHD","","","","","","","","","","","","","","","","" -"1215930995","2","","","EISENBERG VILLAGE OF THE LOS ANGELES JEWISH HOME FOR THE AGING","","","","","","","EISENBERG VILLAGE","5","","","","","","","","18855 VICTORY BLVD","","RESEDA","CA","913356445","US","8187743000","","18855 VICTORY BLVD","","RESEDA","CA","913356445","US","8187743000","","05/24/2005","12/20/2011","","","","","FORREST","MARY","M","CHIEF EXECUTIVE OFFICER","8187749208","313M00000X","920000043","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZT08013F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1336142314","2","","","RIVER WILLOWS NURSING CENTER, INC","","","","","","","","","","","","","","","","206 MAIN ST E","","ABBEVILLE","GA","310014216","US","4783740805","4783740622","206 MAIN ST E","","ABBEVILLE","GA","310014216","US","2294672515","2294672891","05/24/2005","03/23/2008","","","","","HARVILL","BEN","","CFO","4783740805","314000000X","11561796","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1245233220","2","","","NORTHRIDGE SURGERY CENTER, LP","","","","","","","NORTHRIDGE SURGERY CENTER","5","","","","","","","","647 MYATT DR","","MADISON","TN","371152125","US","6158688942","6158603820","647 MYATT DR","","MADISON","TN","371152125","US","6158688942","6158603820","05/24/2005","12/31/2012","","","","","REED","KATHERINE","L.","AUTHORIZED OFFICIAL-OFFICER","9727633859","261QA1903X","0000000016","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4039016","01","TN","BCBS","490001500","01","TN","RR MEDICARE","7100077710","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1972506954","2","","","SOMERSET CARE INC.","","","","","","","MEADOW VIEW NURSING CENTER","3","","","","","","","","1404 HAY ST","","BERLIN","PA","155301455","US","8142674212","8142676213","1404 HAY ST","","BERLIN","PA","155301455","US","8142674212","8142676213","05/24/2005","08/19/2008","","","","","KONRAD","ALBERT","","ADMINISTRATOR","8142674212","314000000X","191702","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0541","01","PA","HIGHMARK BLUE CROSS","0015399470002","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1790788776","2","","","GEM CITY HOME CARE, LLC","","","","","","","","","","","","","","","","13737 NOEL RD","1400","DALLAS","TX","752401331","US","2144914019","2144914047","1700 LYONS RD","SUITE A","DAYTON","OH","454581882","US","9374389100","9374389200","05/24/2005","07/12/2016","","","","","BECK","ERIC","","CEO","2144914019","251E00000X","0000","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2277807","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.O.","","","","","","","","","","","","","","","","" -"1427051408","2","","","BRITTON VISION ASSOCIATES INC","","","","","","","BVA ADVANCED EYECARE AND RETINA VITREOUS AFFILIATES","3","","","","","","","","14701 N SANTA FE AVE","","EDMOND","OK","730133411","US","4057522733","4057522172","14701 N SANTA FE AVE","","EDMOND","OK","730133411","US","4057522733","4057522172","05/24/2005","07/09/2019","","","","","BRITTON","BRADLEY","DON","PRESIDENT","4057522733","207W00000X","NONE","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100708300G","05","OK","","100708300H","05","OK","","100708300J","05","OK","","100708300I","05","OK","","100708300C","05","OK","","100708300D","05","OK","","100708300E","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1831192814","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1227 LOCUST ST","","PHILADELPHIA","PA","191075414","US","2156272800","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PP415317L","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7445601","05","NJ","","000820007","05","DE","","7445610","05","NJ","","811302500","05","MD","","1007771500009","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1740283720","2","","","COMPREHENSIVE BREAST CARE CENTERS","","","","","","","","","","","","","","","","1380 NE MIAMI GARDENS DR","STE 105","NORTH MIAMI BEACH","FL","331794708","US","3059443132","3059443437","1380 NE MIAMI GARDENS DR","STE 105","NORTH MIAMI BEACH","FL","331794708","US","3059443132","3059443437","05/24/2005","04/18/2013","","","","","OKSEMBERG","JOSEPH","","OFFICE MANAGER","3059443132","261QR0206X","3568228","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1104829183","2","","","HENDERSON CLINIC FOR WOMEN PA","","","","","","","HENDERSON CLINIC FOR WOMEN","3","","","","","","","","511 RUIN CREEK RD","STE 101","HENDERSON","NC","275365919","US","2524928576","2524927464","511 RUIN CREEK RD","STE 101","HENDERSON","NC","275365919","US","2524928576","2524927464","05/24/2005","08/22/2020","","","","","KING","NANCY","P","OFFICE MANAGER","2524928576","173000000X","39877","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7808539","01","NC","AETNA GROUP ID","16402","01","NC","WELLPATH GROUP ID","89-01757","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1609879477","2","","","EASTER SEALS SOUTHWESTERN OHIO","","","","","","","","","","","","","","","","231 CLARK RD","","CINCINNATI","OH","452155539","US","5138219890","5138219895","231 CLARK RD","","CINCINNATI","OH","452155539","US","5138219890","5138219895","05/24/2005","08/22/2020","","","","","LAMP-WATSON","TAMARA","","PRESIDENT & CEO","5138219890","251V00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0793799","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1205839081","2","","","INDUSTRY CONVALESCENT HOSPITAL","","","","","","","EL ENCANTO HEALTHCARE & HABILITATION CENTER","3","","","","","","","","555 S. EL ENCANTO ROAD","","CITY OF INDUSTRY","CA","91745","US","6263361274","6263302789","555 S. EL ENCANTO RD","","CITY OF INDUSTRY","CA","91745","US","6263361274","6263302789","05/24/2005","01/20/2012","","","","","CALVO","KENNETH","","ADMINISTRATOR","6263361274","314000000X","960000747","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZT18646G","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1588667257","2","","","CAIN & JOHNSON ONCOLOGY LLC","","","","","","","LAFAYETTE HEMATOLOGY-ONCOLOGY","3","","","","","","","","PO BOX 52028","","LAFAYETTE","LA","705052028","US","3373540030","3373540026","155 HOSPITAL DR","STE 100","LAFAYETTE","LA","705032852","US","3373540030","3373540026","05/24/2005","05/14/2008","","","","","CAIN","MICHAEL","S","MANAGING MEMBER","3373540030","207RH0003X","021976","LA","N","207RH0003X","021651","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DB9815","01","LA","RAILROAD MEDICARE","1446891","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1215930987","2","","","DIAGNOSTIC LABORATORY SERVICES, INC","","","","","","","","","","","","","","","","99-859 IWAIWA ST","","AIEA","HI","967013267","US","8085895107","8085895233","99-859 IWAIWA ST","","AIEA","HI","967013267","US","8085895107","8085895233","05/24/2005","02/02/2011","","","","","ROBERTS","REBECCA","S","VP FINANCE","8085895175","291U00000X","=========","HI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","22053","01","HI","HMSA","01999701","05","HI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1750384426","2","","","CORDELL MEMORIAL HOSPITAL 0189","","","","","","","CORDELL HOSPITAL AUTHORITY DBA CORDELL MEMORIAL HOSPITAL","3","","","","","","","","1220 N GLENN L ENGLISH ST","","CORDELL","OK","736322010","US","5808323339","5808325076","1220 N GLENN L ENGLISH ST","","CORDELL","OK","736322010","US","5808323339","5808325076","05/24/2005","01/30/2019","","","","","DOWNS","JAMES","K","CEO","5808323339","282NC0060X","2221","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000370186001","01","OK","BCBS OF OKLAHOMA","100819200A","05","OK","","100819200B","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1669475331","2","","","CITY OF NEW BERLIN","","","","","","","CITY OF NEW BERLIN FIRE DEPARTMENT","4","","","","","","","","6400 INDUSTRIAL LOOP","","GREENDALE","WI","531292452","US","2625675171","4144234134","16300 W NATIONAL AVE","","NEW BERLIN","WI","531515510","US","2627856120","2627856130","05/24/2005","08/22/2020","","","","","WAHL","ANDREW","WAYNE","ASST CHIEF- EMS DIVISION","2627856120","146N00000X","60-00110","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","41358200","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1447253109","2","","","CAREWORKS HOME HEALTH SERVICES,INC","","","","","","","","","","","","","","","","13612 MIDWAY RD","STE 103","DALLAS","TX","752444378","US","9729919966","9729915577","13612 MIDWAY RD","STE 103","DALLAS","TX","752444378","US","9729919966","9729915577","05/24/2005","04/08/2020","","","","","PANGILINAN","BEATRIZ","V","ADMINISTRATOR","9729919966","251E00000X","004589","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","REGISTERED NURSE","","","","","","","","","","","","","","","","04/08/2020" -"1083617740","2","","","LA QUINTA PHARMACY","","","","","","","","","","","","","","","","78150 CALLE TAMPICO","STE 103","LA QUINTA","CA","922532907","US","","","78150 CALLE TAMPICO","STE 103","LA QUINTA","CA","922532907","US","7607779902","7607779820","05/24/2005","08/22/2020","","","","","HANKIN","MARSHALL","","OWNER AND PHARMACIST","7607779902","3336C0003X","","","X","333600000X","46507","CA","X","3336C0004X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5600918","01","","OTHER ID NUMBER-COMMERCIAL NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPH","","","","","","","","","","","","","","","","" -"1447253190","2","","","HEALTHCARE MANAGEMENT SOLUTIONS, INC","","","","","","","","","","","","","","","","2221 MAIN ST","","BELLEVUE","NE","680055239","US","4022930296","4028980564","2221 MAIN ST","","BELLEVUE","NE","680055239","US","4022930296","4028980564","05/24/2005","02/29/2008","","","","","SHANNON","PATRICK","M","PRESIDENT/CEO","4022930296","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1356344006","2","","","ONE SOURCE MEDICAL BILLING SERVICE, INC","","","","","","","","","","","","","","","","PO BOX 12117","","BROOKSVILLE","FL","346032117","US","3527969310","3527966847","11420 KANSAS RD","","BROOKSVILLE","FL","346143470","US","3527969310","3527966847","05/24/2005","08/22/2020","","","","","MUNSELL","TARALYN","","PRESIDENT/MEDICAL BILLER","3527969310","246YC3302X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1912900663","2","","","PRINCETON DRUG","","","","","","","","","","","","","","","","105 BROYLES DR","","JOHNSON CITY","TN","376012542","US","4232821178","4232820462","105 BROYLES DR","","JOHNSON CITY","TN","376012542","US","4232821178","4232820462","05/24/2005","11/13/2015","","","","","REED","MARK","A","PHARMACIST","4232821178","332B00000X","","","N","3336C0003X","","","N","333600000X","1751","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1013910009","2","","","VINCENT FONTANA, JR., D.D.S., INC.","","","","","","","","","","","","","","","","207 W SUNSET RD","","SAN ANTONIO","TX","782092634","US","2108269523","2108269524","207 W SUNSET RD","","SAN ANTONIO","TX","782092634","US","2108269523","2108269524","05/24/2005","03/04/2014","","","","","FONTANA","VINCENT","","PRESIDENT","2108269523","261QD0000X","10506","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","821950","01","TX","UNITED CONCORDIA","D10506","01","TX","BLUE CROSS BLUE SHIELD","TXB113099","01","","MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","JR.","D.D.S.","","","","","","","","","","","","","","","","" -"1821091596","2","","","EXPRESS CARE PHARMACY INC.","","","","","","","EXPRESS CARE PHARMACY","3","","","","","","","","801 E BROADWAY","UNIT A","GLENDALE","CA","912054528","US","8182443330","8182445530","801 E BROADWAY","UNIT A","GLENDALE","CA","912054528","US","8182443330","8182445530","05/24/2005","05/11/2011","","","","","MIKAYELYAN","MIKAYEL","","PRESIDENT","8182443330","333600000X","PHY50437","CA","N","3336C0003X","PHY50437","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1821091596","01","CA","MEDI-CAL PROVIDER NUMBER","FE2349074","01","CA","DEA NUMBER","PHY 50437","01","CA","CALIFORNIA STATE BOARD OF PHARMACY RETAIL PERMIT","05-75653","01","CA","NABP NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1629071394","2","","","ADVANCED PHYSICAL THERAPY & BALANCE REHABILITATION LLC","","","","","","","","","","","","","","","","1901 S UNION AVE","STE B7011","TACOMA","WA","984051807","US","2536277012","2536277014","1901 S UNION AVE","STE B7011","TACOMA","WA","984051807","US","2536277012","2536277014","05/24/2005","08/22/2020","","","","","KUBIK","MICHAEL","J","PHYSICAL THERAPIST/OWNER","2536277012","261QP2000X","","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7123797","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","P.T.","","","","","","","","","","","","","","","","" -"1023011798","2","","","DEKALB COUNTY GOVERNMENT","","","","","","","DEKALB COUNTY REHAB AND NURSING CENTER","5","","","","","","","","2600 N ANNIE GLIDDEN RD","","DEKALB","IL","601151207","US","8157582477","8152170451","2600 N ANNIE GLIDDEN RD","","DEKALB","IL","601151207","US","8157582477","8152170451","05/24/2005","10/15/2020","","","","","DUCHENE","STEVEN","P","ADMINISTRATOR","8152170303","332BX2000X","0044321","IL","N","314000000X","0044321","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0044321","01","IL","IL DEPT. OF PUBLIC HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","10/15/2020" -"1174526149","2","","","ALK INC.","","","","","","","WINTERSONG VILLAGE","3","","","","","","","","478 S SANDUSKY ST","","DELAWARE","OH","430152623","US","7403698741","7403638359","478 S SANDUSKY ST","","DELAWARE","OH","430152623","US","7403698741","7403638359","05/24/2005","03/02/2012","","","","","SUMMERS","CHARLES","JOHN","CEO","7403698741","314000000X","1413","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0372010","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","LNHA","","","","","","","","","","","","","","","","" -"1992708960","2","","","EASTER SEALS JOLIET REGION INC.","","","","","","","EASTER SEAL REHABILITATION CENTER OF WILL-GRUNDY COUNTIES, INC.","4","","","","","","","","212 BARNEY DR","","JOLIET","IL","604355271","US","8157252194","8157255150","212 BARNEY DR","","JOLIET","IL","604355271","US","8157252194","8157255150","05/24/2005","06/17/2008","","","","","CONDOTTI","DEBBIE","","PRESIDENT","8157252194","261QD1600X","CO01038599","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","M.A. CRC","","","","","","","","","","","","","","","","" -"1437152402","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1874 PIEDMONT AVE NE BLDG A","SUITE A","ATLANTA","GA","303244869","US","4047336800","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PHRE008187","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000769238C","05","GA","","100210061","05","AL","","00769238A","05","GA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1891798864","2","","","CITY OF RIPON","","","","","","","RIPON GUARDIAN AMBULANCE SERVICE","3","","","","","","","","100 JACKSON ST","","RIPON","WI","549711312","US","9207484926","9207486983","100 JACKSON ST","","RIPON","WI","549711312","US","9207484926","9207486983","05/24/2005","06/19/2008","","","","","TEACHOUT","JOHN","","EMS CREW CHIEF","9207484904","341600000X","6001189","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","41306700","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1417950486","2","","","LEIMKUEHLER, INC.","","","","","","","","","","","","","","","","4625 DETROIT AVE","","CLEVELAND","OH","441022214","US","2166517788","2166514057","4625 DETROIT AVE","","CLEVELAND","OH","441022214","US","2166517788","2166514057","05/24/2005","04/10/2019","","","","","LEIMKUEHLER","ROBERT","VICTOR","PRESIDENT","2166517788","335E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1417950486","01","OH","MOLINA HEALTHCARE","1417950486","01","OH","CARESOURCE","0000001554477","01","OH","ANTHEM","1417950486","01","OH","UNITED HEALTHCARE","1417950486","01","OH","1-888-OHIOCOMP","1417950486","01","OH","AARP","1417950486","01","OH","MUTUAL HEALTH SERVICES","1417950486","01","","VA - DEPARTMENT OF VETERANS AFFAIRS","745388","01","OH","BUCKEYE COMMUNITY HEALTH PLAN","1417950486","01","OH","COMPMANAGEMENT HEALTH SYSTEMS, INC.","5084706","05","OH","","5861114","01","OH","CIGNA","A338","01","OH","PARAMOUNT","10124","01","OH","TRICARE OF LIFE","1417950486","01","OH","3-HAB","1417950486","01","OH","CAREWORKS","1417950486","01","OH","HUMANA","1417950486","01","OH","OSCAR","1417950486","01","OH","SHEAKLEY UNICOMP","1417950486","01","OH","GATEWAY HEALTH","1417950486","01","OH","HEALTH MANAGEMENT SOLUTIONS, INC.","1417950486","01","OH","UMR","8466598","01","OH","AETNA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","C.P.O.","","","","","","","","","","","","","","","","" -"1043213010","2","","","SOUTHWEST OKLAHOMA AMBULANCE AUTHORITY","","","","","","","","","","","","","","","","PO BOX 88","","HOLLIS","OK","735500088","US","5806883363","5806882246","400 E CHESTNUT ST","","HOLLIS","OK","735502030","US","5806883363","5806882246","05/24/2005","08/22/2020","","","","","LEWIS","SHEILA","","DIRECTOR","5806883363","3416L0300X","EMS117","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1316940380","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","342 MASSACHUSETTS AVE","STE 103","INDIANAPOLIS","IN","462042192","US","3176316000","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","60005193","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","90013905","05","KY","","200159820A","05","IN","","1533428","05","MI","","5400518600","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1942203914","2","","","COLES COUNTY MENTAL HEALTH ASSOCIATION, INC.","","","","","","","LIFELINKS MENTAL HEALTH","3","","","","","","","","750 BROADWAY AVE E","","MATTOON","IL","619384610","US","2172385700","2172385767","750 BROADWAY AVE E","","MATTOON","IL","619384610","US","2172385700","2172385767","05/24/2005","04/27/2018","","","","","ASHMORE","LYNETTE","","EXECUTIVE DIRECTOR","2172385700","251S00000X","","","N","261QR0405X","","","N","261QM0801X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","LCPC","","","","","","","","","","","","","","","","" -"1851394829","2","","","COUNTY OF HENRY","","","","","","","FIRST CHOICE HEALTHCARE","3","","","","","","","","110 N BURR BLVD","","KEWANEE","IL","614432214","US","3098520197","0985455753","110 N BURR BLVD","","KEWANEE","IL","614432214","US","3098520197","0985455753","05/24/2005","04/13/2020","","","","","LAFOLLETTE","TARA","","INSURANCE BILLING","3098520197","261QP0905X","","","N","251E00000X","","","N","253Z00000X","","","N","261QF0050X","","","N","251K00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DH1819","01","IL","MEDICARE RR","241300","01","IL","MEDICARE PART B","3721776","01","IL","BCBS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","04/13/2020" -"1588667554","2","","","COUNTY OF TILLMAN-CITY OF FREDERICK HOSPITAL AUTHORITY","","","","","","","MEMORIAL HOSPITAL & PHYSICIAN GROUP","3","","","","","","","","319 E JOSEPHINE AVE","","FREDERICK","OK","735422220","US","5803357565","5803357329","319 E JOSEPHINE AVE","","FREDERICK","OK","735422220","US","5803357565","5803357329","05/24/2005","03/16/2011","","","","","ALLEE","ALBERT","W","CEO","5803357565","282N00000X","2213","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CPA/BBA","","","","","","","","","","","","","","","","" -"1932102845","2","","","CENTRAL FLORIDA AMBULANCE, INC.","","","","","","","AMERICAN AMBULANCE","3","","","","","","","","3747 SILVER STAR RD","","ORLANDO","FL","328084627","US","4078223700","","3747 SILVER STAR RD","","ORLANDO","FL","328084627","US","4078223700","","05/24/2005","08/22/2020","","","","","EISMANN","WALTER","F","MANAGING PARTNER","4078223700","3416L0300X","2569","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","III","","","","","","","","","","","","","","","","","" -"1669475570","2","","","OCEANVIEW PAIN TREATMENT MEDICAL CENTER, INC.","","","","","","","","","","","","","","","","4543 E ANAHEIM ST","","LONG BEACH","CA","908043119","US","5629001371","5624940047","2650 ELM AVE","# 216","LONG BEACH","CA","908061651","US","5624242900","5624243200","05/24/2005","03/03/2010","","","","","HUTCHISON","ELAINE","W.","ADMINISTRATOR","5629001371","261QA1903X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1114920014","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","197 8TH AVE","","NEW YORK","NY","100111605","US","2126919050","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","25005","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","02731964","05","NY","","003126879","05","CT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1023011921","2","","","PIKEVILLE MEDICAL CENTER INC","","","","","","","","","","","","","","","","PO BOX 2917","","PIKEVILLE","KY","415022917","US","6062184570","6062184587","1370 S MAYO TRL","","PIKEVILLE","KY","415012332","US","6062184570","6062184587","05/24/2005","03/14/2016","","","","","HAGY","MICHELLE","","CFO","6062183500","251B00000X","","","N","251X00000X","","","N","251E00000X","150185","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","34000117","05","KY","","42000067","05","KY","","000000249784","01","KY","PROVIDER NUMBER BC/BS","320132","01","KY","PROVIDER NO. BLACK LUNG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1831192731","2","","","ARISE VENTURES, INC.","","","","","","","ARISE CARES","3","","","","","","","","2907 CLEARWATER RD STE 200","","SAINT CLOUD","MN","563016375","US","3202306348","3202812310","2907 CLEARWATER RD STE 200","","SAINT CLOUD","MN","563016375","US","3202306348","3202812310","05/24/2005","09/13/2019","","","","","VACHAL","JASON","S","CEO","3202306348","251E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1740283647","2","","","PEDIATRIC ALLERGY IMMUNOLOGY ASSOC.,P.A.","","","","","","","DALLAS ALLERGY IMMUNOLOGY","3","","","","","","","","7777 FOREST LN","SUITE B332","DALLAS","TX","752302571","US","9725667788","9725668837","7777 FOREST LANE","SB332","DALLAS","TX","752306822","US","9725667788","9725668837","05/24/2005","06/27/2013","","","","","WASSERMAN","RICHARD","L","PRESIDENT","9725667788","207K00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200032360A","05","OK","","0851610-02","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D., PHD","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1568465466","2","","","DOCTORS ON DUTY MEDICAL GROUP, INC","","","","","","","","","","","","","","","","100 WILSON ROAD","SUITE 100","MONTEREY","CA","93940","US","8316491000","8316494961","1212 S MAIN ST","","SALINAS","CA","939012260","US","8314227777","8314220136","05/24/2005","11/01/2011","","","","","MCMILLAN","MICHAEL","","CEO","8316491000","261QU0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1386647287","2","","","FORWARD ORTHOPEDICS, S.C.","","","","","","","","","","","","","","","","W180N8085 TOWN HALL RD","","MENOMONEE FALLS","WI","530513518","US","2622575860","2622575858","W180N8085 TOWN HALL RD","","MENOMONEE FALLS","WI","530513518","US","2622575860","2622575858","05/24/2005","08/24/2007","","","","","VAN WINKLE","GREGORY","N","PHYSICIAN","2622575860","207X00000X","27105-020","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4303950001","01","WI","DME NUMBER","21251900","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1295738193","2","","","SISTERS OF MARY OF THE PRESENTATION LONG TERM CARE","","","","","","","AVE MARIA VILLAGE","3","","","","","","","","501 19TH ST NE","","JAMESTOWN","ND","584012541","US","7012525660","7012512643","501 19TH ST NE","","JAMESTOWN","ND","584012541","US","7012525660","7012512643","05/24/2005","07/21/2008","","","","","BURCHILL","TIMOTHY","N","CEO","7012525660","314000000X","1033B","ND","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","030422","05","ND","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1013910918","2","","","BOLAND EYE CENTER PC","","","","","","","","","","","","","","","","PO BOX 13827","","SAVANNAH","GA","314163827","US","9123522299","9123520012","1615 E MONTGOMERY CROSS RD","","SAVANNAH","GA","314065056","US","9123522299","9123520012","05/24/2005","03/25/2008","","","","","LAMB","SANDRA","U","FINANCIAL DIRECTOR","9123522299","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GRP3079","01","GA","MEDICARE-PART B","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1730182635","2","","","TRANSITIONS HEALTHCARE WASHINGTON PA, LLC","","","","","","","TRANSITIONS HEALTHCARE WASHINGTON PA","3","","","","","","","","90 HUMBERT LANE","HUMBERT LANE NURSING AND REHABILITATION","WASHINGTON","PA","15301","US","7242284740","7242289890","90 HUMBERT LN","","WASHINGTON","PA","153016549","US","7242284740","7242289890","05/24/2005","11/05/2014","","","","","MAURANO","MATTHEW","R.","PRINCIPAL","4106544036","314000000X","085702","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0009988920001","05","PA","","0599","01","PA","BLUE CROSS/SECURITY BLUE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1194728097","2","","","MARMET HEALTH CARE CENTER","","","","","","","","","","","","","","","","1 SUTPHIN DR","","MARMET","WV","253151977","US","3049491580","3049494880","1 SUTPHIN DR","","MARMET","WV","253151977","US","3049491580","3049494880","05/24/2005","08/22/2020","","","","","SUTPHIN","ROBIN","M","ADMINISTRATOR","3049491580","314000000X","121","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0003685000","05","WV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","NHA","","","","","","","","","","","","","","","","" -"1720081615","2","","","FAYETTE COMMUNITY HEALTH CARE","","","","","","","HIDDEN VALLEY HEALTH CARE CENTER","3","","","","","","","","422 23RD ST","","OAK HILL","WV","259012830","US","3044651903","3049493807","422 23RD ST","","OAK HILL","WV","259012830","US","3044651903","3049493807","05/24/2005","08/22/2020","","","","","SUTPHIN","CALVIN","L","ADMINISTRATOR","3044651903","314000000X","129","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0003674000","05","WV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","II","NHA","","","","","","","","","","","","","","","","" -"1992708887","2","","","PHOENIX EMERGENCY MEDICINE OF BROWARD LLC","","","","","","","","","","","","","","","","3114 CROASDAILE DR","SUITE 200","DURHAM","NC","277052508","US","9548382371","","1600 S ANDREWS AVE","EMERGENCY DEPT/PHOENIX PHYSICIANS","FT LAUDERDALE","FL","333162510","US","9543555160","9194250478","05/24/2005","09/11/2019","","","","","KONDAS","KATHLEEN","","OFFICER","9548382371","207P00000X","ME39895","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","269118300","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1801899794","2","","","THE SURGERY CENTER AT PRINTERS PARK, LLC","","","","","","","","","","","","","","","","175 S UNION BLVD","STE 100","COLORADO SPRINGS","CO","809103117","US","7196675800","7196672854","175 S UNION BLVD","STE 100","COLORADO SPRINGS","CO","809103117","US","7196675800","7196672854","05/24/2005","11/28/2007","","","","","HAMSTRA","BETH","","ADMINISTRATOR","7196675792","261QA1903X","0452","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","58386246","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","","","","","","","","","","","","","","","","" -"1164425054","2","","","ESCONDIDO DERMATOLOGY, INC A PROFESSIONAL CORPORATION","","","","","","","","","","","","","","","","504 W MISSION AVE","STE 101","ESCONDIDO","CA","920251602","US","7607471980","7607472045","504 W MISSION AVE","STE 101","ESCONDIDO","CA","920251602","US","7607471980","7607472045","05/24/2005","01/21/2015","","","","","CHEN","NANCY","P","M.D.","7607471980","174400000X","A070199","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1891798559","2","","","OPTIONS HEALTHCARE & MEDICAL SUPPLIES, INC","","","","","","","","","","","","","","","","23650 VILLAGE DR","UNIT 17","PORTER","TX","773654680","US","2815775111","2814998058","23650 VILLAGE DR","UNIT 17","PORTER","TX","773654680","US","2815775111","2814998058","05/24/2005","08/22/2020","","","","","NWOKEDI","EMMANUEL","NNAMDI","PRESIDENT","2815775111","332BX2000X","0068801","TX","X","332B00000X","0068801","TX","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1621781","05","LA","","16597103","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1134122021","2","","","NEVADA CARDIOLOGY PROFESSIONAL ASSN","","","","","","","NEVADA CARDIOLOGY ASSOCIATES","3","","","","","","","","3121 S MARYLAND PKWY","STE 512","LAS VEGAS","NV","891092310","US","7027967150","7027969071","3121 S MARYLAND PKWY","STE 512","LAS VEGAS","NV","891092310","US","7027967150","7027969071","05/24/2005","08/27/2014","","","","","SALYER","PETRA","","PRACTICE MANAGER","7022331000","207RC0000X","175317600","NV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1598768483","2","","","NORTH IDAHO HOME HEALTH","","","","","","","","","","","","","","","","2426 N MERRIT CREEK LOOP","","COEUR D ALENE","ID","838144961","US","2086677494","2087652236","2426 N MERRIT CREEK LOOP","","COEUR D ALENE","ID","838144961","US","2086677494","2087652236","05/24/2005","08/22/2020","","","","","MCKERNAN","RICHARD","V","ADMINISTRATOR","2086677494","251E00000X","HH159","ID","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1275536047","2","","","LAWRENCEBURG NH OPERATIONS, LLC","","","","","","","COUNTRYSIDE HEALTHCARE AND REHABILITATION","3","","","","","","","","PO BOX 986","","LAWRENCEBURG","TN","384640986","US","9317627518","9317627823","3051 BUFFALO RD","","LAWRENCEBURG","TN","384646189","US","9317627518","9317627823","05/24/2005","05/05/2008","","","","","FRANKLIN","MELISSA","","ADMINISTRATOR","9317627518","314000000X","0000000155","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0445280","05","TN","","7440482","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1801899679","2","","","PIONEER HEALTH SERVICES OF NEWTON COUNTY","","","","","","","NEWTON FAMILY AND SPECIALTY CLINIC","3","","","","","","","","9421 EASTSIDE DRIVE EXTENTION","","NEWTON","MS","39345","US","6018491682","6018491969","9421 EASTSIDE DRIVE EXTENTION","","NEWTON","MS","393452613","US","6016832031","6016830262","05/24/2005","09/15/2010","","","","","MCNULTY","JOSEPH","S","CEO","6018491682","261QR1300X","16-321","MS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","III","","","","","","","","","","","","","","","","","" -"1710980586","2","","","INTERNAL MEDICINE ASSOCIATES OF FLINT P.C.","","","","","","","","","","","","","","","","3499 S LINDEN RD","","FLINT","MI","485073022","US","8102300120","8102306733","G5607 W. BRISTOL RD.","","FLINT","MI","48507","US","8102300120","8102306733","05/24/2005","07/25/2011","","","","","CHAMPINE","LEDEAN","","OPERATIONS MANAGER","8102300120","174400000X","EC023744","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","110B56381","01","MI","BCBS","5173988","01","MI","CIGNA","1710980586","01","MI","NPI","CB7526","01","MI","MEDICARE RAILROAD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1629071493","2","","","PARKHILL PHARMACY, INC.","","","","","","","LOPEZ ISLAND PHARMACY","3","","","","","","","","PO BOX 190","","LOPEZ ISLAND","WA","982610190","US","3604682616","3604683825","352 LOPEZ ROAD","","LOPEZ ISLAND","WA","982610190","US","3604682616","3604683825","05/24/2005","04/28/2020","","","","","MCCOY","RICHARD","C","PHARMACIST","3604682616","332B00000X","","","N","333600000X","5102","WA","N","3336C0004X","","","N","3336L0003X","","","N","3336C0003X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","G8912458","01","WA","MEDICARE MASS IMMUNIZATION ROSTER BILLING","6014880","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","JR.","R.PH.","","","","","","","","","","","","","","","","04/28/2020" -"1437152204","2","","","WINNEBAGO COUNTY","","","","","","","","","","","","","","","","725 BUTLER AVE","","OSHKOSH","WI","549018149","US","9202376300","9202376940","725 BUTLER AVE","","OSHKOSH","WI","549018149","US","9202376300","9202376940","05/24/2005","01/22/2015","","","","","HINKLEY","MORGAN","","ADMINISTRATOR","9202376900","314000000X","2436","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","20132800","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","NHA","","","","","","","","","","","","","","","","" -"1164425930","2","","","ROBERT MORGAN EDUCATIONAL CENTER","","","","","","","","","","","","","","","","18180 SW 122ND AVE","","MIAMI","FL","331772407","US","3052539920","3052593270","18180 SW 122ND AVE","","MIAMI","FL","331772407","US","3052539920","3052593270","05/24/2005","08/22/2020","","","","","PREBLE","DAVID","MICHAEL","HEALTH SCIENCES COORDINATOR","3052539920","251K00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","","","","","","","","","","","","","","","","" -"1245233014","2","","","RETINA ASSOCIATES, PC","","","","","","","","","","","","","","","","8679 CONNECTICUT ST","STE A","MERRILLVILLE","IN","464106383","US","2197699022","2197691918","8679 CONNECTICUT ST","STE A","MERRILLVILLE","IN","464106383","US","2197699022","2197691918","05/24/2005","10/28/2014","","","","","PELZEK","CHRISTOPHER","DAVID","PRESIDENT","2197699022","174400000X","","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100213880","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1295738037","2","","","SPECTRUM HOME HEALTH, INC.","","","","","","","","","","","","","","","","2915 STRONG AVE","","KANSAS CITY","KS","661062144","US","9138312979","9138319566","2915 STRONG AVE","","KANSAS CITY","KS","661062144","US","9138312979","9138319566","05/24/2005","06/16/2018","","","","","APPL","CORY","MATTHEW","ADMINISTRATOR","9138312979","251E00000X","888-1HH","MO","N","251E00000X","A-105-012-2","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","201150270A","05","KS","","586991101","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1730182569","2","","","HEGG MEMORIAL HOSPITAL","","","","","","","HEGG MEMORIAL HEALTH CENTER","5","","","","","","","","1202 21ST AVE","","ROCK VALLEY","IA","512471420","US","7124768000","7124768090","1202 21ST AVE","","ROCK VALLEY","IA","512471420","US","7124768000","7124768090","05/24/2005","04/22/2008","","","","","ZEVENBERGN","GLENN","","CEO","7124768000","282NC0060X","840049H","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0601450","05","IA","","0672360","05","IA","","0655068","05","IA","","0605489","05","IA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1558364380","2","","","LOUISVILLE MRI MANAGEMENT LLC","","","","","","","LOUISVILLE IMAGING ALLIANCE","3","","","","","","","","445 E MARKET ST","STE 100","LOUISVILLE","KY","402021112","US","5025685850","5025685854","445 E MARKET ST","STE 100","LOUISVILLE","KY","402021112","US","5025685850","5025685854","05/24/2005","06/12/2008","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","86000296","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1285637017","2","","","SOUTHWEST IMAGING CENTER INC","","","","","","","THE IMAGING CENTER","4","","","","","","","","5116 W GORE BLVD","STE 1","LAWTON","OK","735055909","US","5803537226","5803537297","5116 W GORE BLVD","STE 1","LAWTON","OK","735055909","US","5803537226","5803537297","05/24/2005","08/20/2008","","","","","KETCHER","KIMBERLY","LYNN","BILLING OFFICE MANAGAER","5803537226","2085R0202X","700560","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100744930A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1912900747","2","","","WOOD MEMORIAL HOSPITAL & NURSING HOME INC","","","","","","","WOOD MEMORIAL NURSING HOME","3","","","","","","","","320 GREENVILLE AVE","","MINEOLA","TX","757731032","US","9035693852","9035691168","320 GREENVILLE AVE","","MINEOLA","TX","757731032","US","9035699023","9035693852","05/24/2005","11/04/2010","","","","","COHEN","STEPHEN","","VICE PRESIDENT","9035699023","314000000X","108653","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00439602","05","TX","","094182501","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","","","","","","","","","","","","","","","","","" -"1639172463","2","","","CENTRAL OHIO GROUP HOMES, INC.","","","","","","","CANTERBURY VILLA","3","","","","","","","","25000 COUNTRY CLUB BLVD","SUITE 255","NORTH OLMSTED","OH","440705344","US","4406140160","4406140168","80 MILLER ST","","CENTERBURG","OH","430119741","US","7406256873","","05/24/2005","06/16/2014","","","","","COLLERAN","BRIAN","","PRESIDENT","4406140160","320900000X","4210642","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2417530","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1184627911","2","","","CENTRAL NEBRASKA REHABILITATION SERVICES LLC","","","","","","","","","","","","","","","","PO BOX 5285","","GRAND ISLAND","NE","688025285","US","3083820344","3083823241","620 N DIERS AVE","SUITE 300","GRAND ISLAND","NE","688034985","US","3083820344","3083823241","05/24/2005","07/29/2015","","","","","BECKSTEAD","KENDRA","","OFFICE MANAGER","3083820344","225100000X","681","NE","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","NA2070","01","NE","MEDICARE PTAN","100250456-00","05","NE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1447253273","2","","","KILGORE VISION CENTER","","","","","","","","","","","","","","","","PO BOX 444","","MOUNTAIN HOME","AR","726540444","US","8704244900","8704244979","2943 HIGHWAY 62 W","","MOUNTAIN HOME","AR","726536535","US","8704244900","8704244979","05/24/2005","01/07/2010","","","","","KILGORE","KENNETH","MERLE","OWNER PRESIDENT","8704244900","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1447253273","01","AR","NPI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1174526909","2","","","MEDFUND LLC","","","","","","","HORIZON COLLEGE STATION LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","1726 ROCK PRAIRIE RD","","COLLEGE STATION","TX","778455900","US","9796956999","9796956990","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2241767","01","","FIRST HEALTH","0359DC","01","TX","BCBS PROV #","P00035828","01","","RAILROAD MCARE #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1992708721","2","","","TEXAS CENTER FOR BREAST RECONSTRUCTION","","","","","","","FREDERICK J. DUFFY, JR., M.D., P.A.","4","","","","","","","","7777 FOREST LN","STE C504","DALLAS","TX","752306844","US","9725663939","9725663999","7777 FOREST LN","STE C504","DALLAS","TX","75230","US","9725663939","9725663999","05/24/2005","11/27/2018","","","","","MCKANE","BRICE","W","PRESIDENT","9725663939","2082S0099X","K2452","TX","N","2082S0099X","M1233","TX","N","208200000X","K2452","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","120616104","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","193400000X SINGLE SPECIALTY GROUP","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","" -"1801899638","2","","","ACCESSORIES FOR PERSONAL MOBILITY","","","","","","","APM","3","","","","","","","","3007 N 73RD ST","STE A","SCOTTSDALE","AZ","852517203","US","4809475727","4809471293","3007 N 73RD ST","STE A","SCOTTSDALE","AZ","852517203","US","4809475727","4809471293","05/24/2005","08/22/2020","","","","","KYLER","JILL","GILES","VICE PRESIDENT","4809475727","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1346243177","2","","","CASHWAY PHARMACY OF FRANKLIN, INC.","","","","","","","","","","","","","","","","1419 HOSPITAL AVE","","FRANKLIN","LA","705383722","US","3378280950","3378284983","1419 HOSPITAL AVE","","FRANKLIN","LA","705383722","US","3378280950","3378284983","05/24/2005","03/11/2008","","","","","BERGERON","OSCAR","JOSEPH","MANAGER","3378280950","333600000X","3466-IR","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1905299","01","LA","NABP","3466-IR","01","LA","PHARMACY LICENSE","1263923","05","LA","","BC5069275","01","LA","DEA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","IV","BS","","","","","","","","","","","","","","","","" -"1255334082","2","","","PINEGROVE MANOR II, LLC","","","","","","","GRACE PLAZA NURSING AND REHABILITATION CENTER","3","","","","","","","","15 SAINT PAULS PL","","GREAT NECK","NY","110212636","US","5164663001","5164667624","15 SAINT PAULS PL","","GREAT NECK","NY","110212636","US","5164663001","5164667624","05/24/2005","09/03/2015","","","","","SODANO","KIMBERLY","","ADMINISTRATOR","5164663001","314000000X","2913301N","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","007385","01","NY","BC/BS","A418337","01","","OXFORD","335483","01","NY","HIP","00309119","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1255334074","2","","","RENEWAL MEDICAL SPECIALISTS","","","","","","","","","","","","","","","","6655 VIA REGINA","","BOCA RATON","FL","334333920","US","9549149199","","6655 VIA REGINA","","BOCA RATON","FL","334333920","US","9549149199","","05/24/2005","04/13/2009","","","","","ARUTA","MICHAEL","JOHN","OWNER","9549291200","261QM2500X","ME59850","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","14368","01","FL","BLUE CROSS BLUE SHIELD","BA6733578","01","FL","DEA","6767583","01","FL","UNITED HEALTH CARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","","","","","","","","","","","","","","","","" -"1073516894","2","","","HEALTHACCESS, INC.","","","","","","","VIDANT HOME HEALTH AND HOSPICE","3","","","","","","","","PO BOX 8125","","GREENVILLE","NC","278358125","US","2528477830","2528477910","1005 W H SMITH BLVD","","GREENVILLE","NC","278345052","US","2528477830","2528477910","05/24/2005","09/25/2019","","","","","HICKEY","RYAN","TODD","PRESIDENT","2528477836","251G00000X","HOS0425","NC","N","251G00000X","HOS1711","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001FU","01","NC","PROVIDER NUMBER","3411518","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1982607701","2","","","NORTHWEST FAMILY PHYSICIANS, LLC","","","","","","","","","","","","","","","","3730 N RIDGE RD","STE 100","WICHITA","KS","672051228","US","3164626200","3164626201","3730 N RIDGE RD","STE 100","WICHITA","KS","672051228","US","3164626200","3164626214","05/24/2005","10/06/2014","","","","","STEINERT","HEATHER","DB","OFFICE MANAGER","3164626200","207Q00000X","4812412405","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1700889524","2","","","BARRON CHAGRIN DRUG, INC.","","","","","","","BARRON PHARMACY","3","","","","","","","","23632 MERCANTILE RD","STE F","BEACHWOOD","OH","441225916","US","2163600500","2163600506","23632 MERCANTILE RD","STE F","BEACHWOOD","OH","441225916","US","2163600500","2163600506","05/24/2005","08/22/2020","","","","","BARRON","MARSHALL","E","PRESIDENT","2163600500","333600000X","","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0007085","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RPH","","","","","","","","","","","","","","","","" -"1164425823","2","","","CPAP RESOURCE, LLC","","","","","","","","","","","","","","","","2940 PENNINGTON DR","","MEDFORD","OR","975045176","US","5412829944","5412822245","2940 PENNINGTON DR","","MEDFORD","OR","975045176","US","5412829944","5412822245","05/24/2005","11/17/2009","","","","","DEANE","MICHAEL","E","OWNER/PRESIDENT","5412829944","332B00000X","27037498","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RCP","","","","","","","","","","","","","","","","" -"1992708770","2","","","GREENBRIER MEDICAL ARTS PHARMACY INC","","","","","","","GREENBRIER MEDICAL ARTS PHARMACY","3","","","","","","","","3558 JEFFERSON ST N STE 1","","LEWISBURG","WV","249015730","US","3046455547","3046455549","1322 MAPLEWOOD AVE","","RONCEVERTE","WV","249708016","US","3046475121","3046475122","05/24/2005","03/01/2017","","","","","HAGER","ERIN","","CORPORATE OFFICE MANAGER","3046455547","332B00000X","","","N","333600000X","","","N","3336C0003X","SP0550581","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0141908000","05","WV","","2110013","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1801899687","2","","","TRINITY SURGERY CENTER LLC","","","","","","","BAYCARE SURGERY CENTER","5","","","","","","","","PO BOX 100307","","ATLANTA","GA","303840307","US","7273724055","7273724066","2020 TRINITY OAKS BLVD","","TRINITY","FL","346554402","US","7273724055","7273724066","05/24/2005","11/02/2015","","","","","ST LOUIS","DONNA","","VP","7273946747","261QA1903X","F1401","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0755109-00","05","FL","","0941","01","FL","STATE LICENSE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1437152212","2","","","NEWMANS MEDICAL SERVICES INC.","","","","","","","NEWMANS AMBULANCE SERVICE","3","","","","","","","","3500 COTTAGE HILL RD","","MOBILE","AL","366096589","US","2514711541","2516026110","3500 COTTAGE HILL RD","","MOBILE","AL","366096589","US","2514711541","2516026110","05/24/2005","09/30/2010","","","","","NEWMAN","BONNIE","J","PRESIDENT","2514711541","3416L0300X","324","AL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","590005729","01","AL","RAILROAD MEDICARE","200049101","05","AL","","51050008","01","AL","BCBS OF ALABAMA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1700889581","2","","","RADIOLOGY CONSULTANTS PS","","","","","","","","","","","","","","","","PO BOX 9105","","MOSCOW","ID","838431605","US","2088828369","2088821887","405 STYNER AVE","","MOSCOW","ID","838439394","US","2088828369","2088821887","05/24/2005","02/12/2008","","","","","BETTS","KAREN","","OFFICE MANAGER","2088828369","174400000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","003184800","05","ID","","7015811","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1619970498","2","","","PHOENIX PEDIATRICS OF BROWARD LLC","","","","","","","","","","","","","","","","3114 CROASDAILE DR","SUITE 200","DURHAM","NC","277052508","US","9548382371","9194250478","1600 S ANDREWS AVE","PHOENIX PEDIATRICS","FT LAUDERDALE","FL","333162510","US","9543554400","9194250478","05/24/2005","09/11/2019","","","","","KONDAS","KATHLEEN","","OFFICER","9548382371","208000000X","ME39895","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","269098500","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1790788578","2","","","MASSAC MEMORIAL HOSPITAL","","","","","","","MASSAC MEMORIAL HOSPITAL","5","","","","","","","","PO BOX 850","28 CHICK ST","METROPOLIS","IL","629600850","US","6185242176","6185244131","28 CHICK ST","","METROPOLIS","IL","629602467","US","6185242176","6185244131","05/24/2005","11/20/2018","","","","","GOINES","LYNN","","CFO","6185242176","282NC0060X","0001420","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","13019","05","IL","","3582","01","TN","BLUE CROSS","01330034","05","KY","","0140042","05","TN","","HEALTH ALLIANCE","01","","000795","6415006","01","IL","BLUE SHIELD ILLINOIS","037520699","01","","ENERGY EMPLOYEES OCCUP IL","111575","01","","HEALTHLINK","317","01","IL","BLUE CROSS ILLINOIS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","MASSAC COUNTY HOSPITAL DISTRICT","","MRS.","","","","","","","","","","","","","","","","","","" -"1669475349","2","","","POMPANO ER PEDIATRICS LLC","","","","","","","","","","","","","","","","3114 CROASDAILE DR STE 200","POMPANO ER PEDIATRICS LLC","DURHAM","NC","277052508","US","9194251565","9194250478","201 E SAMPLE RD","POMPANO ER PEDIATRICS","POMPANO BEACH","FL","330643502","US","9547686800","9194250478","05/24/2005","05/27/2009","","","","","SCOTT","STEVEN","M","PRESIDENT CEO","9194251565","2080P0204X","ME39895","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","269936200","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1013910793","2","","","PREMIER SUPPORT SERVICES, INC.","","","","","","","INTERIM HEALTHCARE OF EAST TENNESSEE","3","","","","","","","","2482 BRIGHTS PIKE","","MORRISTOWN","TN","378146315","US","4235878771","4235878773","2482 BRIGHTS PIKE","","MORRISTOWN","TN","378146315","US","4235878771","4235878773","05/24/2005","06/18/2012","","","","","RAY","PEGGY","","CHIEF EXECUTIVE OFFICER","4235878771","372500000X","L000000006169","TN","N","251E00000X","0000000010","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4261896","01","TN","VOLUNTEER STATE HEALTH PLAN","0447404","01","TN","TENNCARE","3162461","01","TN","BCBS PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1720081409","2","","","WIREGRASS HOSPICE, LLC","","","","","","","KINDRED HOSPICE","3","","","","","","","","655 BRAWLEY SCHOOL RD STE 200","","MOORESVILLE","NC","281179601","US","7046642876","7046641306","750 E SPRING ST","SUITE B","COOKEVILLE","TN","385014527","US","9315285133","9313720249","05/24/2005","11/21/2018","","","","","KLEBERG","JESSICA","","SVP OF LEGAL AND COMPLIANCE","7046642876","251G00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","441520","05","TN","","Q019266","05","TN","","0441520","05","TN","","292638","01","","FEDERAL BLACK LUNG PROG","0133059","01","","BLUECROSSBLUESHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1447253125","2","","","RIDGECREST REGIONAL HOSPITAL","","","","","","","","","","","","","","","","1081 N CHINA LAKE BLVD","","RIDGECREST","CA","935553130","US","7604463551","7604993014","1081 N CHINA LAKE BLVD","","RIDGECREST","CA","935553130","US","7604463551","7604993014","05/24/2005","12/10/2019","","","","","SUVER","JAMES","","CEO","7604993902","207P00000X","","","N","282NC0060X","550002085","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","12/10/2019" -"1245233923","2","","","SPECTRA EYE INSTITUTE, LLC","","","","","","","","","","","","","","","","9849 W THUNDERBIRD BLVD","","SUN CITY","AZ","853512963","US","6235832020","6235832075","9849 W THUNDERBIRD BLVD","","SUN CITY","AZ","853512963","US","6235832020","6235832075","05/24/2005","03/20/2017","","","","","BRICELAND","DANIEL","J","MEDICAL DIRECTOR","6235832020","261QA1903X","OSC2726","AZ","N","261QS0132X","OSC2726","AZ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","544256","01","AZ","AHCCCS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","","","","","","","","","","","","","","","","" -"1154324838","2","","","SPECIALTY HOME HEALTH CARE, INC","","","","","","","","","","","","","","","","331 KIMBER LN","","EVANSVILLE","IN","477152830","US","8124765404","8124765766","331 KIMBER LN","","EVANSVILLE","IN","477152830","US","8124765404","8124765766","05/24/2005","08/22/2020","","","","","CLAYCOMB","SARAH","BETH","ADMINISTRATOR/OWNER","8124765404","251E00000X","002416","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN, BSN","","","","","","","","","","","","","","","","" -"1699778373","2","","","COUNTY OF WHITESIDE","","","","","","","WHITESIDE COUNTY HEALTH DEPARTMENT","3","","","","","","","","1300 W 2ND ST","","ROCK FALLS","IL","610711005","US","8156262230","8156263729","1300 W 2ND ST","","ROCK FALLS","IL","610711005","US","8156262230","","05/24/2005","05/14/2019","","","","","FIORINI","BETH","","ADMINISTRATOR","8156262230","251K00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","600000706","01","","RAILROAD RETIREMENT PTAN","9825","01","IL","BCBS PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1497758155","2","","","SACRAMENTO EAR NOSE & THROAT SURGICAL & MEDICAL GROUP INC","","","","","","","SACRAMENTO EAR, NOSE, & THROAT","3","","","","","","","","1111 EXPOSITION BLVD","BLDG 700","SACRAMENTO","CA","958154300","US","9167366670","9162334171","1111 EXPOSITION BLVD","BLDG 700","SACRAMENTO","CA","958154300","US","9167366670","9162334171","05/24/2005","10/15/2020","","","","","DUDLEY","JEFFREY","W","CEO","9167366670","207K00000X","","","N","207YX0007X","","","N","231H00000X","","","N","207Y00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CP5499","01","CA","RR MEDICARE PIN","GR0010460","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","10/15/2020" -"1215930979","2","","","SUPER DISCOUNT DRUGS LLC","","","","","","","SUPER DISCOUNT DRUGS","3","","","","","","","","718 W MAIN ST","","LIVINGSTON","TN","385701720","US","9318231245","9318231324","718 W MAIN ST","","LIVINGSTON","TN","385701720","US","9318231245","9318231324","05/24/2005","12/30/2014","","","","","WORLEY","LARRY","","PHARMACIST","9318231245","333600000X","","","N","3336C0003X","417","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1450506","05","TN","","2089265","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","DPH","","","","","","","","","","","","","","","","" -"1487657144","2","","","AUBURN PHARMACY, INC.","","","","","","","AUBURN PHARMACY","3","","","","","","","","259 W PARK RD","","GARNETT","KS","660321080","US","7852273374","7852272509","216 N HARRISON ST","","LINDSBORG","KS","674562216","US","7852273374","7852272509","05/24/2005","06/12/2020","","","","","BURNS","MICHAEL","","OWNER/CEO","7854483600","332B00000X","","","N","333600000X","2-13198","KS","N","3336C0003X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100439770R","05","KS","","100439770Q","05","KS","","2154134","01","","PK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPH","","","","","","","","","","","","","","","","06/12/2020" -"1295738953","2","","","WEAVERVILLE DRUG COMPANY","","","","","","","","","","","","","","","","3 N MAIN ST","PO BOX 710","WEAVERVILLE","NC","287879427","US","8286453087","8286580464","3 N MAIN ST","","WEAVERVILLE","NC","287879427","US","8286453087","8286580464","05/24/2005","02/01/2017","","","","","SPRINKLE","CHARLES","F","PRESIDENT","8286453087","183500000X","1270","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0115220","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RPH","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1104829860","2","","","CALIFORNIA ENDOCURIETHERAPY MEDICAL CORPORATION","","","","","","","CET","5","","","","","","","","3012 SUMMIT ST","STE 2675","OAKLAND","CA","946093480","US","5109860690","5109860159","3012 SUMMIT ST","STE 2675","OAKLAND","CA","946093480","US","5109860690","5109860159","05/24/2005","08/22/2020","","","","","DEMANES","DAVID","JEFFREY","PRESIDENT","5109860690","174400000X","G29678","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","BU1032729","01","CA","DR. V. UHL DEA#","G17225","01","CA","DR.D.HILL ST. LICENSE","A43655","01","CA","DR.V. UHL STATE LICENSE#","BH8882880","01","CA","DR.D.HILL DEA#","AD7093141","01","CA","DJ DEMANES DEA#","G29678","01","CA","DJ DEMANES ST.. LICENSE#","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1558364216","2","","","TOUTLE RIVER RANCH, INC.","","","","","","","YOUTH AND FAMILY LINK","3","","","","","","","","PO BOX 2052","907 DOUGLAS STREET","LONGVIEW","WA","986328179","US","3604236741","3605016510","907 DOUGLAS ST","","LONGVIEW","WA","986322155","US","3604236741","3605016510","05/24/2005","11/16/2011","","","","","MANSKER","PATRICIA","ELAINE","DATA COORDINATOR","3604236741","251B00000X","222","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7119834","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1285637942","2","","","SACRAMENTO COLON & RECTAL SURGERY MEDICAL GROUP, INC.","","","","","","","","","","","","","","","","1020 29TH ST","STE 350","SACRAMENTO","CA","958165173","US","9162311050","9162311055","1020 29TH ST","STE 350","SACRAMENTO","CA","958165173","US","9162311050","9162311055","05/24/2005","02/05/2008","","","","","ZEGARRA","J. PETER","","CEO","9162311050","174400000X","G52872","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1003819764","2","","","HOSPICE SERVICES OF NORTHWEST KANSAS INC","","","","","","","","","","","","","","","","424 8TH ST","PO BOX 116","PHILLIPSBURG","KS","676612513","US","7855432900","7855435688","424 8TH ST","","PHILLIPSBURG","KS","676612513","US","7855432900","7855435688","05/24/2005","01/05/2016","","","","","KUHLMAN","SANDY","","EXECUTIVE DIRECTOR","7855432900","251G00000X","","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100221170B","05","KS","","0000000838","01","KS","BCBS OF KANSAS HOSPICE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RN","","","","","","","","","","","","","","","","" -"1366445355","2","","","SLEEPCAIR INC","","","","","","","","","","","","","","","","14333 W 95TH ST","","LENEXA","KS","662155210","US","9134388200","9134388223","14333 W 95TH ST","","LENEXA","KS","662155210","US","9134388200","9134388223","05/24/2005","12/03/2014","","","","","NANNIE","BRIAN","","AUTHORIZED OFFICIAL","7275307700","332BX2000X","","","N","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","32779014","01","KS","BCBS OF KC","100459200A","05","KS","","626065809","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1821091802","2","","","VINCENNES SURGERY CENTER LP","","","","","","","","","","","","","","","","300 N 1ST ST","","VINCENNES","IN","475911252","US","8128866063","","300 N 1ST ST","","VINCENNES","IN","475911252","US","8128866063","","05/24/2005","08/22/2020","","","","","VIECK","MINDY","S","BUSINESS OFFICE MANAGER","8128866063","261QA1903X","","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1376546341","2","","","NEUROSPORT PHYSICAL THERAPY & REHABILITATION SPECIALIST INC.","","","","","","","","","","","","","","","","1163 JOHNSON FERRY RD","STE 100","MARIETTA","GA","300682764","US","7703210155","7703218426","1163 JOHNSON FERRY RD","STE 100","MARIETTA","GA","300682764","US","7703210155","7703218426","05/24/2005","09/16/2014","","","","","MORGAN","MORIAH","","REGIONAL OFFICE MANAGER","7703210155","225100000X","003709","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5093346","01","","AETNA PPO, MC","650016944","01","GA","RAILROAD MEDICARE","606717","01","","AETNA HMO","52266108","01","","BCBS OF GEORGIA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MISS","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1821091893","2","","","DONALD MARTENS & SONS AMBULANCE SERVICE INC.","","","","","","","","","","","","","","","","10830 BROOKPARK RD","","CLEVELAND","OH","441301119","US","4402346000","4402348371","10830 BROOKPARK RD","","CLEVELAND","OH","441301119","US","4402346000","4402348371","05/24/2005","12/09/2019","","","","","MARTENS","DEAN","","OWNER","4402346000","146L00000X","180022","OH","N","3416L0300X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0175993","05","OH","","000000155547","01","OH","ANTHEM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","12/09/2019" -"1366445330","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1325 14TH ST NW","","WASHINGTON","DC","200053610","US","2023328811","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1000014089","05","DE","","1007771500013","05","PA","","143710100","05","MD","","020033900","05","DC","","143704600","05","MD","","1366445330","05","DE","","1366445330","05","VA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1245233212","2","","","COUNTY OF DANE","","","","","","","BADGER PRAIRIE HEALTH CARE CENTER","3","","","","","","","","1100 E VERONA AVE","","VERONA","WI","535938717","US","6088456601","6088451264","1100 E VERONA AVE","","VERONA","WI","535938717","US","6088456601","6088451264","05/24/2005","08/22/2020","","","","","NELSON","JACK","D","ADMINISTRATOR","6088451243","314000000X","2969","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","20161700","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1063415032","2","","","PARK CEDAR DENTISTRY PARTNERSHIP","","","","","","","PARK CEDAR DENTISTRY","3","","","","","","","","10027 PARK CEDAR DR","STE 100","CHARLOTTE","NC","282108903","US","7047520500","7047520502","10027 PARK CEDAR DR","STE 100","CHARLOTTE","NC","282108903","US","7047520500","7047520502","05/24/2005","02/10/2015","","","","","CALDWELL","SUMMER","L","PARTNER","7047520500","122300000X","9488","NC","N","1223G0001X","7809","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","98190","01","NC","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1053314021","2","","","GEORGE'S FAMILY PHARMACY INC","","","","","","","","","","","","","","","","480 MAIN ST","","BROOKVILLE","IN","470121406","US","7656476251","7656476386","480 MAIN ST","","BROOKVILLE","IN","470121406","US","7656476251","7656476386","05/24/2005","03/13/2008","","","","","GILLMAN","GEORGE","","PHARMACIST","7656476251","332B00000X","60003113A","IN","N","333600000X","60003113A","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100295890A","05","IN","","P00110488","01","IN","RAILROAD","1509794","01","","NABP NUMBER","2167971","05","OH","","000000097297","01","","ANTHEM PROV ID NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","RPH","","","","","","","","","","","","","","","","" -"1477556447","2","","","NURSES & COMPANY INC","","","","","","","NURSES & COMPANY HOME HEALTH CARE","3","","","","","","","","115 PIPER HILL DR","SUITE 200","ST PETERS","MO","633761620","US","6369263722","6369263872","115 PIPER HILL DR","SUITE 200","ST PETERS","MO","633761620","US","6369263722","6369263872","05/24/2005","04/03/2012","","","","","CHARTRAND","LYNN","","DIRECTOR OF OPERATIONS","6369263722","251E00000X","6865","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000000010633","01","MO","ESSENCE INSURANCE","12951","01","MO","BLUE CROSS/BLUE SHIELD","431601116NUR","01","MO","MERCY INSURANCE","586757403","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1417950288","2","","","HURON HEALTH CARE CENTER, INC.","","","","","","","ADMIRAL'S POINTE CARE CENTER","3","","","","","","","","25000 COUNTRY CLUB BLVD","SUITE 255","NORTH OLMSTED","OH","440705344","US","4406140160","4406140168","1920 CLEVELAND RD W","","HURON","OH","448391249","US","4194334990","4194335400","05/24/2005","11/05/2020","","","","","PARKER","DANIEL","","PRESIDENT","3305546619","314000000X","1781N","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2551519","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","11/05/2020" -"1952304727","2","","","SURGICAL SPECIALIST OF GREEN BAY INC.","","","","","","","","","","","","","","","","720 S. VANBUREN ST","SUITE 202","GREEN BAY","WI","54301","US","9204387155","9204387193","720 S. VANBUREN ST","SUITE 202","GREEN BAY","WI","54301","US","9204387155","9204387193","05/24/2005","01/21/2009","","","","","GEONARIS","THOMAS","V","MD","9204387155","174400000X","=========","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1124021993","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1424 UNION AVE","","MEMPHIS","TN","381043625","US","9017257828","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336H0001X","","","N","3336C0003X","3228","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","148337407","05","AR","","4431223","05","TN","","00330716","05","MS","","100850770D","05","OK","","157830716","05","AR","","2363642","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1760485528","2","","","NWIA BONE, JOINT & SPORTS SURGEONS, PC","","","","","","","","","","","","","","","","1200 1ST AVE E","STE C","SPENCER","IA","513014342","US","7122627511","7122623658","1200 1ST AVE E","STE C","SPENCER","IA","513014342","US","7122627511","7122623658","05/24/2005","02/16/2016","","","","","WILKERSON","RICKY","DUANE","PHYSICIAN/OWNER","7122627511","213ES0103X","","","N","207X00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CS8940","01","IA","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","D.O.","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","" -"1679576433","2","","","CITY OF OROVILLE","","","","","","","CITY OF OROVILLE AMBULANCE","3","","","","","","","","PO BOX 2200","","OROVILLE","WA","988442200","US","5094762926","5094769067","1308 IRONWOOD","","OROVILLE","WA","988442200","US","5094762926","5094769067","05/24/2005","12/15/2011","","","","","ROWTON","DEANNA","","BILLING CLERK","5094762926","3416L0300X","24X07","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9425208","05","WA","","29929","01","WA","L & I PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1588667349","2","","","BELOIT HEALTH SYSTEM INC","","","","","","","BELOIT REGIONAL HOSPICE","3","","","","","","","","1969 WEST HART ROAD","","BELOIT","WI","53511","US","6083645281","6083645586","655 THIRD STREET","SUITE 200","BELOIT","WI","53511","US","6083637421","6083637426","05/24/2005","11/01/2016","","","","","GROEPER","WILLIAM","E","VP FINANCE SERVICES","6083645281","251G00000X","521525","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","43182000","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1497758254","2","","","TRANSCARE PENNSYLVANIA, INC.","","","","","","","TRANSCARE","3","","","","","","","","1 METROTECH CTR","20TH FLOOR","BROOKLYN","NY","112013831","US","7187638888","7189688653","400 SECO RD","","MONROEVILLE","PA","151461424","US","4123736300","4123738263","05/24/2005","11/20/2012","","","","","O'CONNOR","JAMES","","PRESIDENT","7185109080","3416L0300X","03331","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","590009506","01","PA","RAILROAD MEDICARE","01545318","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","TRANSCARE CORP","","MR.","","","","","","","","","","","","","","","","","","" -"1215930078","2","","","MARIN HEALTH VENTURES, LLC","","","","","","","MARIN SPECIALTY SURGERY CENTER","3","","","","","","","","505 SIR FRANCIS DRAKE BLVD","","GREENBRAE","CA","949042305","US","4154614400","4154614484","505 SIR FRANCIS DRAKE BLVD","","GREENBRAE","CA","949042305","US","4154614400","4154614484","05/24/2005","02/07/2019","","","","","HALL","CORY","","CHIEF ADMINISTRATIVE OFFICER","4154614400","261QA1903X","110000487","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1932102795","2","","","BURNETT HEALTHCARE, INC.","","","","","","","DENVER MANOR","3","","","","","","","","608 DENVER","","WICHITA FALLS","TN","763012112","US","9403227852","","608 DENVER","","WICHITA FALLS","TN","763012112","US","9403227852","","05/24/2005","08/22/2020","","","","","BURNETT","CHRISTINA","L","PRESIDENT","9039486841","314000000X","004536","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1780687590","2","","","PHOENIX HEALTHCARE LLC","","","","","","","TULSA NURSING CENTER","3","","","","","","","","10912 E 14TH ST","","TULSA","OK","741284845","US","9184382440","9184370869","10912 E 14TH ST","","TULSA","OK","741284845","US","9184382440","9184370869","05/24/2005","08/22/2020","","","","","CAIN","LARRY","","RECEIVER","9184382440","314000000X","NH7230-7230","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1508869314","2","","","OPEN MRI OF IOWA, L.L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-DES MOINES","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2017754306","7601 OFFICE PLAZA DR N","STE 115","WEST DES MOINES","IA","502662338","US","5152220550","5152220544","05/24/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","","X","261QR0200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","16-00340","01","IA","UNITED HEALTHCARE MIDLAND","6446300","01","IA","COVENTRY HEALTHCARE OF IA","44997","01","IA","BCBS OF IOWA","0180133","05","IA","","1126226","01","IA","FIRST HEALTH NETWORK","44997","01","IA","WELLMARK BCBS OF IOWA","A-80808","01","IA","MULTIPLAN","F246150","01","IA","MIDLANDS CHOICE","17063","01","IA","MEDFOCUS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1225031032","2","","","VNA HOSPICE CARE INC.","","","","","","","","","","","","","","","","100 SYLVAN RD","STE G500","WOBURN","MA","018011851","US","7815692888","7815692888","100 SYLVAN RD","STE G500","WOBURN","MA","018011851","US","7815692888","7815692877","05/24/2005","12/24/2007","","","","","BERGERON","DIANE","M.","EXECUTIVE DIRECTOR","7815692888","251G00000X","7202","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0604526","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN, MSM","","","","","","","","","","","","","","","","" -"1033112842","2","","","VISTA CONTINUING CARE CENTER INC","","","","","","","VISTA CONTINUING CARE CENTER","3","","","","","","","","4300 VISTA RD","","PASADENA","TX","775042118","US","7139466787","7139461337","4300 VISTA RD","","PASADENA","TX","775042118","US","7139466787","7139461337","05/24/2005","11/04/2010","","","","","COHEN","STEPHEN","","VICE PRESIDENT","9035699023","314000000X","111815","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000512001","05","TX","","021984201","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","","","","","","","","","","","","","","","","","" -"1760485577","2","","","FUNK MEDICAL & MOBILITY, INC","","","","","","","","","","","","","","","","240 W 6TH ST","","CONCORDIA","KS","669012817","US","7852432345","7852437231","240 W 6TH ST","","CONCORDIA","KS","669012817","US","7852432345","7852437231","05/24/2005","05/29/2013","","","","","ROBBINS","JUSTIN","WADE","PRESIDENT/OWNER","7852432345","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100379600A","05","KS","","100379600B","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1609879402","2","","","FRIENDSHIP HAVEN NURSING CENTERS LTD","","","","","","","","","","","","","","","","1500 SUNSET DR","","FRIENDSWOOD","TX","775464724","US","2819924300","2819920816","1500 SUNSET DR","","FRIENDSWOOD","TX","775464724","US","2819924300","2819920816","05/24/2005","07/28/2008","","","","","LEE","RALEIGH","","ADMINISTRATOR","2819924300","314000000X","110078","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000428606","05","TX","","167937501","05","TX","","HH081S","01","TX","BLUE CROSS/BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1518960319","2","","","FATHER FLANAGAN'S BOYS' HOME","","","","","","","FATHER FLANAGAN'S BOYS TOWN FLORIDA, INC.","4","","","","","","","","1655 PALM BEACH LAKES BLVD STE 300","","WEST PALM BEACH","FL","334012203","US","5616126049","5613664848","1655 PALM BEACH LAKES BLVD STE 300","","WEST PALM BEACH","FL","334012203","US","5616126049","5613664848","05/24/2005","04/08/2019","","","","","HEMINGS","ALICE","T.","MANGER OF BILLING AND A/C REC.","5616126049","104100000X","","","N","251B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","757704400","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1235132036","2","","","BAKER MEDICAL CORPORATION, LTD","","","","","","","","","","","","","","","","3034 RAY WEILAND DR","","BAKER","LA","707143252","US","2257758500","2257750289","3034 RAY WEILAND DR","","BAKER","LA","707143252","US","2257758500","2257750289","05/24/2005","05/16/2008","","","","","MANALAC","RODOLFO","M","PRESIDENT","2257758500","174400000X","017057","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1798398","05","LA","","0856041000","01","LA","BLUE CROSS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1871596676","2","","","UNITED CLINICAL LABORATORIES, INC","","","","","","","","","","","","","","","","205 BLUFF ST","","DUBUQUE","IA","520016979","US","5635562010","5635560986","205 BLUFF ST","SUITE 1","DUBUQUE","IA","520016979","US","5635562010","5635560986","05/24/2005","07/29/2013","","","","","VANDERHEYDEN","ANDREW","D","MEDICAL DIRECTOR","5635562010","291U00000X","16D0648073","IA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0002493","05","IA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","","","","","","","","","","","","","","","","" -"1780687582","2","","","HORIZON OPEN MRI OF PLANO LLC","","","","","","","","","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","3608 PRESTON RD","STE 150","PLANO","TX","750938651","US","4694676741","4694676752","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7441480","01","","AETNA/MEDSOLUTIONS","0335DC","01","TX","BCBS PROV #","2241745","01","","FIRST HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1699778498","2","","","FIRST LAB, LLC","","","","","","","FIRST LAB","5","","","","","","","","PO BOX 1450","","CORBIN","KY","407021450","US","6065231274","6065283873","2216 YOUNG DR","STE 2","LEXINGTON","KY","405054220","US","8593350970","6065283873","05/24/2005","08/22/2020","","","","","FORCHT","TERRY","","CEO","6065289600","291U00000X","200259","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","800566","01","KY","BLACK LUNG","000000297502","01","KY","ANTHEM PROVIDER ID","37000510","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1023011822","2","","","INDIAN RIVER REHABILITATION & HEALTH CARE CENTER INC","","","","","","","","","","","","","","","","17 MADISON ST","","GRANVILLE","NY","128321221","US","5186422710","5186421318","17 MADISON ST","","GRANVILLE","NY","128321221","US","5186422710","5186421318","05/24/2005","08/22/2020","","","","","GROESBECK","RENEE","M","ADMINISTRATOR","5186422710","314000000X","5725302N","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1922001726","2","","","ADVANCED DIAGNOSTICS--OPEN MRI","","","","","","","","","","","","","","","","1800 BERING DR","SUITE 130","HOUSTON","TX","770573151","US","","","1800 BERING DR","STE 130","HOUSTON","TX","770573151","US","7137900467","7137975502","05/24/2005","06/16/2008","","","","","BALAT","DAVID","","ADMINISTRATOR","2813358279","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1558364356","2","","","B & T MANAGED CARE LLC","","","","","","","MONAHANS MANAGED CARE CENTER","3","","","","","","","","1200 W 15TH ST","","MONAHANS","TX","797568301","US","4329432741","","1200 W 15TH ST","","MONAHANS","TX","797568301","US","4329432741","","05/24/2005","06/05/2008","","","","","TURNER","BETTY","F.","OWNER/ADMINISTRATOR","4329432741","314000000X","109405","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001001093","05","TX","","5164","01","TX","MEDICAID VENDOR NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1376546176","2","","","SARA T. TRUONG, D.D.S., A PROFESSIONAL CORPORATION","","","","","","","","","","","","","","","","485 SOUTH DR","STE C","MOUNTAIN VIEW","CA","940404208","US","6509614766","","485 SOUTH DR","STE C","MOUNTAIN VIEW","CA","940404208","US","6509614766","","05/24/2005","10/29/2014","","","","","TRUONG","SARA","T","CEO","6509614766","261QD0000X","46705","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001313570","01","CA","UNITED CONCORDIA PROVIDER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","D.D.S.","","","","","","","","","","","","","","","","" -"1003819806","2","","","AT HOME CARE INCORPORATED","","","","","","","","","","","","","","","","25 ELM ST","","ONEONTA","NY","138201959","US","6074327924","6074327927","25 ELM ST","","ONEONTA","NY","138201959","US","6074327924","6074327927","05/24/2005","12/13/2019","","","","","NEANDER","LAURIE","","CEO","6074327924","251E00000X","3824601","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","01051096","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","12/13/2019" -"1730182528","2","","","CONIFER CARE,INC.","","","","","","","MYA HEALTHCARE","3","","","","","","","","505 S SYLVAN AVE","","PALESTINE","TX","758014447","US","8067714124","","505 S SYLVAN AVE","","PALESTINE","TX","758014447","US","8067714124","","05/24/2005","08/22/2020","","","","","JEWEL","JAMES","W","PRESIDENT","8067714124","314000000X","11461","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1649273434","2","","","BAYLOR REGIONAL MEDICAL CENTER AT PLANO","","","","","","","BAYLOR SCOTT & WHITE MEDICAL CENTER - PLANO","3","","","","","","","","PO BOX 849829","","DALLAS","TX","752849829","US","2148206710","2148207950","4700 ALLIANCE BLVD","","PLANO","TX","750935323","US","4698142000","4698142999","05/24/2005","01/22/2020","","","","","GARISON","JERRI","","CEO","4698143176","282N00000X","008140","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","284511","01","TX","AMERICAID","171848801","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","01/22/2020" -"1285637074","2","","","MEDFUND LLC","","","","","","","HORIZON OPEN MRI OF NW HOUSTON LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","17482 NORTHWEST FWY","","HOUSTON","TX","770401002","US","7138565955","7138567107","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0338DC","01","TX","BCBS PROV #","2266634","01","","FIRST HEALTH","7821521","01","","AETNA/MEDSOLUTIONS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1558364208","2","","","TUAN D PHAM DMD & JOSEPH A MALONEY DDS, LLC","","","","","","","","","","","","","","","","3450 OLD WASHINGTON RD","STE 204","WALDORF","MD","206023250","US","","","3450 OLD WASHINGTON RD","STE 204","WALDORF","MD","206023250","US","3013749033","","05/24/2005","12/01/2008","","","","","PHAM","TUAN","","OWNER","3013749033","1223G0001X","13053","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","D.M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1285637934","2","","","INGRID FRANK PROSTHETICS, INC.","","","","","","","","","","","","","","","","110 BACON ST","","NATICK","MA","017602905","US","5086556698","","110 BACON ST","","NATICK","MA","017602905","US","5086556698","","05/24/2005","10/27/2009","","","","","FRANK","INGRID","","PRESIDENT","5086556698","335E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1523147","05","MA","","345454IN","01","MA","BCBS OF MASS.","803245","01","MA","TUFTS HEALTH PLAN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","C.P., CMF","","","","","","","","","","","","","","","","" -"1922001981","2","","","IROQUOIS CENTER FOR HUMAN DEVELOPMENT, INC.","","","","","","","","","","","","","","","","610 E GRANT AVE","","GREENSBURG","KS","670542708","US","6207232272","6207233450","610 E GRANT AVE","","GREENSBURG","KS","670542708","US","6207232272","6207233450","05/24/2005","08/22/2020","","","","","CARPENTER","CHARLES","SHELDON","EXECUTIVE DIRECTOR","6207232272","261QM0801X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100098110B","05","KS","","100098110A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","LMLP, LCP","","","","","","","","","","","","","","","","" -"1912900978","2","","","ADVANCED MEDICAL SUPPLY, INC.","","","","","","","","","","","","","","","","4840 W BROAD ST","","COLUMBUS","OH","432281602","US","6148700111","6148709114","4840 W BROAD ST","","COLUMBUS","OH","432281602","US","6148700111","6148709114","05/24/2005","03/13/2019","","","","","WELLS","ANDREA","F","PRESIDENT","6148700111","335E00000X","18","OH","N","332B00000X","","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000000155125","01","OH","ANTHEM","0975476","01","OH","AETNA","0737475","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1902809965","2","","","AGING CARE HOME HEALTH, INC.","","","","","","","","","","","","","","","","101 N 2ND ST","STE 101","WEST MONROE","LA","712913253","US","3183249076","3183249088","101 N 2ND ST","STE 101","WEST MONROE","LA","712913253","US","3183249076","3183249088","05/24/2005","08/22/2020","","","","","DAVIS","OTIS","E","CHIEF FINANCIAL OFFICER","3183249076","251E00000X","420","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1400254","05","LA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1538162599","2","","","TRIPP & TRIPP, INC.","","","","","","","RUSSELLVILLE MEDICAL","3","","","","","","","","2600 W MAIN ST","","RUSSELLVILLE","AR","728012535","US","4799675790","4799670959","2600 W MAIN ST","","RUSSELLVILLE","AR","728012552","US","4799675790","4799670959","05/24/2005","10/12/2007","","","","","TRIPP","R.","MARK","OWNER","4799675790","332B00000X","MG00193","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","48973","01","AR","BC/BS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1437152493","2","","","BURLEIGH DENTAL, SC","","","","","","","","","","","","","","","","7623 W BURLEIGH ST","","MILWAUKEE","WI","532225001","US","4144444334","4144443222","7623 W BURLEIGH ST","","MILWAUKEE","WI","532225001","US","4144444334","4144443222","05/24/2005","09/10/2008","","","","","DONOHOO","MICHAEL","","PRESIDENT","4144444334","261QD0000X","2503","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","","","","","","","","","","","","","","","","" -"1164425120","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","2262 MARKET ST","","SAN FRANCISCO","CA","941141508","US","4152550101","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336C0003X","PHY43522","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6027718","05","WA","","PHA435220","05","CA","","22902236","05","CO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1376546143","2","","","CALAIS REGIONAL HOSPITAL","","","","","","","CALAIS REGIONAL SWING BEDS","3","","","","","","","","24 HOSPITAL LN","","CALAIS","ME","046191329","US","2074547521","2074543616","24 HOSPITAL LN","","CALAIS","ME","046191329","US","2074547521","2074543616","05/24/2005","09/30/2019","","","","","BARNETT","MARY","","COMPLIANCE OFFICER","2074549253","275N00000X","36210","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000008","01","ME","ANTHEM BLUE CROSS","0439887","01","ME","CIGNA","0012304","01","ME","AETNA","101960100","05","ME","","900800","01","ME","HARVARD PILGRIM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1285637058","2","","","CITY OF EXCELSIOR SPRINGS","","","","","","","EXCELSIOR SPRINGS FIRE DEPT.","3","","","","","","","","201 E BROADWAY ST","","EXCELSIOR SPRINGS","MO","640242564","US","8166303000","8166309530","1120 TRACY AVE.","","EXCELSIOR SPRINGS","MO","640241141","US","8166303000","8166309530","05/24/2005","06/16/2008","","","","","CANTRELL","WENDELL","KENT","FIRE CHIEF","8166303000","341600000X","047074","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","800548307","05","MO","","200266320A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1407859234","2","","","PACIFIC RIM ELECTROPHYSIOLOGY MEDICAL GRP, INC.","","","","","","","","","","","","","","","","P.O. BOX 33679","","LOS ANGELES","CA","900330679","US","3106729999","3108610540","1700 CESAR E. CHAVEZ AVENUE","SUITE 2700","LOS ANGELES","CA","900332434","US","3106729999","3108610540","05/24/2005","06/23/2009","","","","","DREW","CARLA","M","CHIEF FINANCIAL OFFICER","3106729999","174400000X","A32891","CA","N","207RC0001X","A81336","CA","N","207RC0001X","A32891","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GR0090210","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1932102761","2","","","STEPHAN D. PLAGER, MD, INC.","","","","","","","","","","","","","","","","1665 DOMINICAN WAY","STE 224","SANTA CRUZ","CA","950651528","US","8314768033","","1665 DOMINICAN WAY","STE 224","SANTA CRUZ","CA","950651528","US","8314768033","","05/24/2005","08/22/2020","","","","","PLAGER","STEPHAN","DAVID","PRESIDENT","8314768033","261QM2500X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","","","","","","","","","","","","","","","","" -"1447253265","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","CHI NEONATOLOGY","3","","","","","","","","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8145358885","8145358720","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8145349794","8145343479","05/24/2005","08/22/2020","","","","","LAMBERT","ELAINE","M","CHIEF OPERATING OFFICER","8145331630","2080N0001X","MD015619E","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1639172596","2","","","ALLIED AMBULANCE SERVICE INC","","","","","","","","","","","","","","","","308 MAIN ST","","MEDFORD","MA","021556160","US","7814989400","7814989404","308 MAIN ST","","MEDFORD","MA","021556160","US","7814989400","7814989404","05/24/2005","08/22/2020","","","","","QUILL","GREGORY","F","PRESIDENT","7818447874","341600000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1548263403","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1001 BROADWAY","STE 102","SEATTLE","WA","981224342","US","2063242335","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","3336H0001X","","","N","332B00000X","","","N","3336C0003X","CF00056078","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6020812","05","WA","","807077400","05","ID","","1548263403","05","UT","","PH128WA","05","AK","","MS128WA","05","AK","","0213343 (ACS:4926070","05","MT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1457354318","2","","","SHARED PET IMAGING LLC","","","","","","","","","","","","","","","","18201 VON KARMAN AVE STE 600","","IRVINE","CA","926121176","US","9492425300","","1341 CLARK ST","","CAMBRIDGE","OH","43725","US","3304910480","3304910488","05/24/2005","05/25/2018","","","","","LONGMORE-GRUND","RHONDA","","EXEC VP & CFO","8005443215","261QR0208X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200398920","05","IN","","2364392","05","OH","","2410251","05","OH","","2651090","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1720081680","2","","","IN HOME PROGRAM, INC.","","","","","","","MARSCARE","3","","","","","","","","739 N. 24TH STREET","","PHILADELPHIA","PA","19130","US","2152324357","2157630708","739 N. 24TH STREET","","PHILADELPHIA","PA","19130","US","2152324357","2157630708","05/24/2005","03/08/2011","","","","","MORRISON","SUSAN","","DIRECTOR","2157633992","251E00000X","758805","PA","N","251E00000X","397588","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0014639560002","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","BA, RN, CCRN","","","","","","","","","","","","","","","","" -"1235132184","2","","","HOLDREGE MEMORIAL HOMES, INC.","","","","","","","","","","","","","","","","1320 11TH AVE","","HOLDREGE","NE","689491919","US","3089958631","3089958636","1320 11TH AVE","","HOLDREGE","NE","689491919","US","3089958631","3089958636","05/24/2005","02/11/2009","","","","","FREEBURG","ROBIN","","BUSINESS OFFICE MANAGER","3089958631","310400000X","ALF110","NE","N","314000000X","614003","NE","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1699778548","2","","","WATSON INFUSION CO., INC","","","","","","","","","","","","","","","","2463 MALL RD","","FLORENCE","AL","356302809","US","2567671970","2567677215","2463 MALL RD","","FLORENCE","AL","356302809","US","2567671970","2567677215","05/24/2005","08/22/2020","","","","","WATSON","WILLIAM","G","OWNER","2567671970","332B00000X","110451","AL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","RPH","","","","","","","","","","","","","","","","" -"1043213986","2","","","TRANSITIONS HEALTHCARE NORTH HUNTINGDON LLC","","","","","","","TRANSITIONS HEALTHCARE NORTH HUNTINGDON","3","","","","","","","","8850 BARNES LAKE RD","","NORTH HUNTINGDON","PA","15642","US","7248647190","7248646063","8850 BARNES LAKE RD","","NORTH HUNTINGDON","PA","15642","US","7248647190","7248646063","05/24/2005","08/19/2014","","","","","MAURANO","MATTHEW","R","PRINCIPAL","4106544036","314000000X","020102","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1306849245","2","","","BEECHWOOD HOME","","","","","","","BEECHWOOD HOME FOR THE INCURABLES","4","","","","","","","","2140 POGUE AVE","","CINCINNATI","OH","452083234","US","5133219294","5133214664","2140 POGUE AVE","","CINCINNATI","OH","452083234","US","5133219294","5133214664","05/24/2005","01/13/2012","","","","","CLARK","PATRICIA","","CEO","5133219294","314000000X","510646896","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000000295145","01","","ANTHEM BC / BS","0035527","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1790788636","2","","","ROWAN MEDICAL FACILITIES, INC.","","","","","","","","","","","","","","","","PO BOX 2071","","SALISBURY","NC","281452071","US","7046370151","7046370437","126 STATESVILLE BLVD","","SALISBURY","NC","281442312","US","7046370151","7046370437","05/24/2005","11/11/2010","","","","","HARGETT","FRED","M","EVP CFO","7043845184","332BX2000X","00057","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","04939","01","NC","BCBS OF NC PROVIDER NO.","7700175","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1235132176","2","","","ALTERNAMED, LLC","","","","","","","","","","","","","","","","913 CENTRE ST","","ASHLAND","PA","179211243","US","5708752308","5708753721","913 CENTRE ST","","ASHLAND","PA","179211243","US","5708752308","5708753721","05/24/2005","10/22/2007","","","","","KEPNER","KAREN","DUZICK","OWNER","5708752308","363LF0000X","VP004067B","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1831192772","01","","INDIVIDUAL NPI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MSN, CRNP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1962405803","2","","","MID RIVERS AMBULATORY SURGERY CENTER LP","","","","","","","MID RIVERS SURGERY CENTER","3","","","","","","","","5401 VETERANS MEMORIAL PKWY","STE 100","SAINT PETERS","MO","633761680","US","6364410906","6369289288","5401 VETERANS MEMORIAL PKWY","STE 100","SAINT PETERS","MO","633761680","US","6364410906","6369289288","05/24/2005","04/02/2014","","","","","YOCUM","DANA","S","ADMINISTRATOR","6364410906","261QA1903X","175","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","509262606","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","R.N.","","","","","","","","","","","","","","","","" -"1699778530","2","","","WARREN COUNTY BOARD OF COMMISSIONERS","","","","","","","WARREN COUNTY EMERGENCY MEDICAL SERVICES","3","","","","","","","","PO BOX 46","521 MAIN ST","WARRENTON","GA","308280046","US","7064652221","7064651300","169 HWY 80","","WARRENTON","GA","308288851","US","7064653358","7064651300","05/24/2005","05/29/2013","","","","","GRAHAM","JOHN","REESE","CHAIRMAN, WARREN COUNTY COMMISSIONE","7064652171","3416L0300X","149-01","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00003132A","05","GA","","58-60000904","01","GA","EIN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CHAIRMAN, EMT-P","","","","","","","","","","","","","","","","" -"1144223074","2","","","MEDWAY COUNTRY MANOR, INC.","","","","","","","MEDWAY COUNTRY MANOR SKILLED NURSING & REHABILITATION","3","","","","","","","","115 HOLLISTON ST","","MEDWAY","MA","020531954","US","5085336634","5085337048","115 HOLLISTON ST","","MEDWAY","MA","020531954","US","5085336634","5085337048","05/24/2005","07/30/2014","","","","","SIMHA","DAVID","","PRESIDENT","9178857050","225100000X","0840","MA","N","225X00000X","0840","MA","N","235Z00000X","0840","MA","N","314000000X","0840","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2222541201","01","MA","BLUE CROSS BLUE SHIELD","0461870001","01","MA","NSC","SG0026","01","","BLUE CROSS BLUE SHIELD","0910481","05","MA","","Y61422","01","","BLUE CROSS BLUE SHIELD","OG0035","01","","BLUE CROSS BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1962405894","2","","","WILKES BARRE ASC., LP","","","","","","","CENTER FOR SAME DAY SURGERY","3","","","","","","","","545 N RIVER ST","","WILKES BARRE","PA","187022600","US","5708229010","5702706488","545 N RIVER ST","","WILKES BARRE","PA","187022600","US","5708229010","5702706488","05/24/2005","09/19/2008","","","","","ZALATIMO","AKRAM","","PRESIDENT","5708229010","261Q00000X","12831500","PA","N","261QA1903X","12831500","PA","N","261QM1300X","12831500","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1007426920003","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1326041252","2","","","SANGRE DE CRISTO HOSPICE & PALLIATIVE CARE","","","","","","","","","","","","","","","","1207 PUEBLO BOULEVARD WAY","","PUEBLO","CO","810052175","US","7195420032","7195421413","1207 PUEBLO BOULEVARD WAY","","PUEBLO","CO","810052175","US","7195420032","7195421413","05/24/2005","10/19/2016","","","","","SCHREINER","TARRAH","L.","CEO","7195420032","251G00000X","0449","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C0AAA3799","01","CO","MEDICARE B","35730","01","CO","HMO OF CO","05800164","05","CO","","35730","01","CO","BCBS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1215930276","2","","","TEXAS INTERNATIONAL ENDOSCOPY CENTER, LP","","","","","","","","","","","","","","","","6620 MAIN ST","STE 1500","HOUSTON","TX","770302331","US","7135208432","7136007300","6620 MAIN ST","STE 1500","HOUSTON","TX","770302331","US","7135208432","7136007300","05/24/2005","12/14/2007","","","","","GALATI","JOSEPH","","PRESIDENT","7137940700","261QA1903X","008100","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HH043A","01","TX","BLUE CROSS/BLUESHIELD","P00188004","01","TX","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1841293800","2","","","BAY AREA NEPHROLOGY S.C.","","","","","","","","","","","","","","","","2020 RIVERSIDE DR","SUITE 200","GREEN BAY","WI","543012300","US","9204339920","9204339927","2020 RIVERSIDE DR","SUITE 200","GREEN BAY","WI","543012300","US","9204339920","9204339927","05/24/2005","10/25/2007","","","","","LAWTON","JOHN","M","PHYSICIAN","9204339920","207RN0300X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","32852900","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1205839164","2","","","MID-ATLANTIC FAMILY PRACTICE","","","","","","","","","","","","","","","","20251 JOHN J WILLIAMS HWY","","LEWES","DE","199584314","US","3026446860","3026446872","20251 JOHN J WILLIAMS HWY","","LEWES","DE","199584314","US","3026446860","3026446872","05/24/2005","01/21/2015","","","","","HECKERT","JEFFREY","J","PRESIDENT","3026446860","207Q00000X","2003109879","DE","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1477556389","2","","","COUNTRY SOUTH INC","","","","","","","DIABETIC SUPPLY OF AMERICA","3","","","","","","","","PO BOX 110189","","NAPLES","FL","341080104","US","2395141156","2395141159","5567 TAYLOR RD","STE 8","NAPLES","FL","341091880","US","2395141156","2395141159","05/24/2005","09/15/2009","","","","","FISCINA","KATHERINE","ELIZABETH","PRESIDENT","2395141156","332B00000X","943257","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","951568200","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1104829019","2","","","HEALING TOUCH HEALTHCARE","","","","","","","HEALING TOUCH HOME HEALTHCARE","3","","","","","","","","7031 CORPORATE WAY","SUITE 201","DAYTON","OH","454594268","US","9376105555","9376105554","7031 CORPORATE WAY","SUITE 201","DAYTON","OH","454594268","US","9376105555","9376105554","05/24/2005","01/24/2013","","","","","ALI","FAISAL","M","DIRECTOR OF OPERATIONS","9376105555","251E00000X","2547551","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","416661","01","OH","JOINT COMMISSION","2547551","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1013910926","2","","","CHRISTIANA CARE HEALTH SYSTEMS/VNA/HOME MEDICAL EQUIPMENT","","","","","","","","","","","","","","","","210 EXECUTIVE DR","STE 7","NEWARK","DE","197023335","US","3024522941","3024522968","210 EXECUTIVE DR","STE 7","NEWARK","DE","197023335","US","3024522941","3024522968","05/24/2005","08/22/2020","","","","","ROTENBERRY","CRAIG","E","DIRECTOR","3024522930","332B00000X","1996106974","DE","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1922001833","2","","","COLORECTAL CARE OF NORTHERN KY, PLLC","","","","","","","","","","","","","","","","PO BOX 272","","BURLINGTON","KY","410050272","US","5138912813","5138911039","2865 CHANCELLOR DR","STE 215","CRESTVIEW HILLS","KY","410173912","US","8593419659","8593419659","05/24/2005","08/11/2009","","","","","ADAMS","DEAN","R","PRESIDENT","8593419659","208C00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DD6452","01","OH","RAILROAD MEDICARE","200927190A","05","IN","","2948949","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1649273558","2","","","LARRY'S HOME OXYGEN, INC.","","","","","","","","","","","","","","","","115 S GRAND ST","","ENID","OK","737015654","US","5802335556","5802339993","115 S GRAND ST","","ENID","OK","737015654","US","5802335556","5802339993","05/24/2005","08/22/2020","","","","","JANTZEN","LARRY","J","OWNER","5802335556","332B00000X","5-D-655","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1881697746","2","","","TOWN OF OXFORD","","","","","","","TOWN OF OXFORD FIRE-EMS","3","","","","","","","","19 NORFOLK AVE","","SOUTH EASTON","MA","023751911","US","5082972068","5082972699","181 MAIN ST","","OXFORD","MA","015402352","US","5089876009","5089876013","05/24/2005","06/17/2020","","","","","MCDONALD","LAURENT","R","CHIEF","5089876012","3416L0300X","3300","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","701137","01","MA","HARVARD PILGRIM INS.","801648","01","MA","TUFTS HEALTH PLAN","0462340","01","MA","AETNA INSURANCE","1701231","05","MA","","7185210","01","MA","CIGNA","7280","01","MA","FALLON VENDOR NUMBER","987450","01","MA","NETWORK HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","06/17/2020" -"1427051382","2","","","MAR MAC TRANSPORTATION SERVICES INC","","","","","","","","","","","","","","","","PO BOX 538341","","ATLANTA","GA","303538341","US","8663437153","7577879436","5000 INCUBATOR RD","STE 101","HAMPTON","VA","236611347","US","8663437153","7577879436","05/24/2005","09/12/2012","","","","","ELLIS","MATTHEW","T","AR MGR","7576550029","3416L0300X","882","VA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","317940","01","VA","ANTHEM BCBS","009012648","05","VA","","590013449","01","","RAILROAD MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1144223009","2","","","TWIN CITIES DERMATOPATHOLOGY, LLC","","","","","","","","","","","","","","","","9900 13TH AVENUE NORTH","SUITE 2A","PLYMOUTH","MN","554415035","US","7635250363","7635250369","9900 13TH AVENUE NORTH","SUITE 2A","PLYMOUTH","MN","554415035","US","7635250363","7635250369","05/24/2005","10/17/2014","","","","","COOMBE","LISA","","BUSINESS ADMINISTRATOR","7635250363","207ZD0900X","1279","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","24D0651415","01","","CLIA","32939100","05","WI","","732527400","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1699778555","2","","","UNITED METHODIST HOMES, INC.","","","","","","","ALDERSGATE VILLAGE","3","","","","","","","","7220 SW ASBURY DR","","TOPEKA","KS","666144718","US","7854789440","7854789104","3220 SW ALBRIGHT DR","","TOPEKA","KS","666144707","US","7854789440","7854780931","05/24/2005","05/12/2015","","","","","ROGERS","BREE","L","CHIEF FINANCIAL OFFICER","7854789440","314000000X","N089021","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100111780A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1326041286","2","","","LOFTUS, RYU & BARTOL MD'S PC","","","","","","","","","","","","","","","","475 IRVING AVE","STE 108","SYRACUSE","NY","132101691","US","3156710070","3154750620","475 IRVING AVE","STE 108","SYRACUSE","NY","132101691","US","3156710070","3154750620","05/24/2005","06/07/2017","","","","","LOFTUS","WILLIAM","J","PRESIDENT","3156710070","174400000X","0960021","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1952304818","2","","","AMERICAN AMBULANCE SERVICE (DADE COUNTY)","","","","","","","","","","","","","","","","6605 NW 74TH AVE","","MIAMI","FL","331662819","US","3059252000","3058883229","6605 NW 74TH AVE","","MIAMI","FL","331662819","US","3059252000","3058883229","05/24/2005","08/22/2020","","","","","MAYMON","CHARLES","","VP","3059252000","341600000X","002582","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1598768459","2","","","MEDFUND LLC","","","","","","","HORIZON MRI OF SAN ANTONIO NORTH LLC","3","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","109 GALLERY CIR","STE 115","SAN ANTONIO","TX","782583328","US","2105453674","2105453691","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7992617","01","","AETNA/MEDSOLUTIONS -PPO","242745","01","","AMERIGROUP","0342DC","01","TX","BCBS PROV #","3537014","01","","AETNA/MEDSOLUTIONS-HMO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1033112990","2","","","ADVANCED IMAGING CENTER LLC","","","","","","","","","","","","","","","","7860 BURR ST","","SCHERERVILLE","IN","46375","US","2198642900","2198642910","7860 BURR ST","","SCHERERVILLE","IN","46375","US","2198642900","2198642910","05/24/2005","02/24/2009","","","","","PATEL","SHODHAN","L","MEDICAL DIRECTOR","2198642900","261QR0200X","1996061345","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200169610","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","","","","","","","","","","","","","","","","" -"1942203807","2","","","SOUTHWEST FAMILY PHYSICIANS, INC.","","","","","","","","","","","","","","","","7225 OLD OAK BLVD","STE A210","MIDDLEBURG HEIGHTS","OH","441303339","US","4408162750","","7225 OLD OAK BLVD","STE A210","MIDDLEBURG HEIGHTS","OH","441303339","US","4408162750","","05/24/2005","06/11/2009","","","","","ABDALLAH","GHASSAN","A","PRESIDENT","4408162750","207Q00000X","35074996A","OH","N","207Q00000X","35077155D","OH","N","207Q00000X","35078742W","OH","N","207Q00000X","35069313A","OH","N","207Q00000X","35038312","OH","N","207Q00000X","35042476","OH","N","207Q00000X","35037697T","OH","N","207Q00000X","35089320","OH","N","207Q00000X","35052685","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","0245970","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","" -"1851394712","2","","","SALINE COUNTY AMBULANCE DISTRICT # 3","","","","","","","","","","","","","","","","354 W ARROW ST","","MARSHALL","MO","653401903","US","6608863317","6608863316","354 W ARROW ST","","MARSHALL","MO","653401903","US","6608863317","6608863316","05/24/2005","09/08/2011","","","","","MORTON","ANGELA","L","OFFICE MANAGER","6608863317","341600000X","195006","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","800463606","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1124021084","2","","","DOUGLAS E BALL OD PA","","","","","","","DRS BALL AND HANSEN","3","","","","","","","","3120 N PLUM ST","","HUTCHINSON","KS","675022918","US","6206622355","6206621102","3120 N PLUM ST","","HUTCHINSON","KS","675022918","US","6206622355","6206621102","05/24/2005","03/26/2008","","","","","SCHMIDT","ELAINE","","BUSINESS MANAGER","6206622355","332H00000X","","","N","152W00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1033112982","2","","","UNITED METHODIST HOMES, INC.","","","","","","","ALDERSGATE VILLAGE","3","","","","","","","","7220 SW ASBURY DR","","TOPEKA","KS","666146059","US","7854789440","7854789104","3124 SW LANDSDOWN","","TOPEKA","KS","666146005","US","7854789440","7854784441","05/24/2005","05/07/2015","","","","","ROGERS","BREE","L","CHIEF FINANCIAL OFFICER","7854789440","310400000X","N089021","KS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100294250A","05","KS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1588667430","2","","","WEST REHAB SERVICES, INC.","","","","","","","","","","","","","","","","PO BOX 2829","","RICHMOND HILL","GA","313242829","US","9126581234","","2709 US HIGHWAY 17 BLDG 2A","","RICHMOND HILL","GA","313243775","US","9127565699","9127565389","05/24/2005","08/23/2016","","","","","WEST","BRIAN","L","ADMINISTRATOR","9126581234","332B00000X","","GA","N","225X00000X","","","N","225100000X","","","N","235Z00000X","","","N","261QR0400X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000478981A","05","GA","","00478981B","05","GA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DHA","","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","" -"1669475513","2","","","CROSS TIMBERS HOSPICE, INC","","","","","","","","","","","","","","","","207 C ST NW","","ARDMORE","OK","734016216","US","5802230655","5802233267","207 C ST NW","","ARDMORE","OK","734016216","US","5802230655","5802233267","05/24/2005","10/22/2010","","","","","DODGE","MARK","A","EXECUTIVE DIRECTOR","5802230655","251G00000X","4056","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","C.P.A.","","","","","","","","","","","","","","","","" -"1205839156","2","","","WEST PENN ALLEGHENY HEALTH SYSTEM, INC.","","","","","","","FORBES HOSPICE","3","","","","","","","","4800 FRIENDSHIP AVE","","PITTSBURGH","PA","152241722","US","4123257200","4125787373","4800 FRIENDSHIP AVE","","PITTSBURGH","PA","152241722","US","4123257200","4123257303","05/24/2005","12/17/2010","","","","","FELLO","MARYANNE","","DIRECTOR","4125786987","251E00000X","714105","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1007277200086","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","WEST PENN ALLEGHNEY HEALTH SYSTEM. OMC/","","MS.","","RN","","","","","","","","","","","","","","","","" -"1295738144","2","","","GREAT LAKES RENAL NETWORK","","","","","","","","","","","","","","","","330 E WARWICK DR","","ALMA","MI","488011014","US","9894663300","9894632540","330 E WARWICK DR","","ALMA","MI","488011014","US","9894663300","9894632540","05/24/2005","08/22/2020","","","","","MATHIS","GINA","","INSURANCE/MMAP COORDINATOR","9894663300","174400000X","=========","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5170738","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1013910967","2","","","ORTHOCARE ORTHOTICS AND PORSTHETICS, INC.","","","","","","","","","","","","","","","","PO BOX 491558","","LEESBURG","FL","347491558","US","3527870065","3527873663","711 N 3RD ST","STE 3","LEESBURG","FL","347484495","US","3527870065","3527873663","05/24/2005","08/22/2020","","","","","O'DONELL","PATRICK","MICHAEL","OWNER, CERTIFIED ORTHOTIST","3527870065","332B00000X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CO,LO","","","","","","","","","","","","","","","","" -"1922001874","2","","","MICHAEL REESE MEDICAL CENTER CORP","","","","","","","MICHEAL REESE HOSPITAL AND MEDICAL CENTER","3","","","","","","","","2929 S ELLIS AVE","","CHICAGO","IL","606163395","US","3127912000","3127912299","2929 S ELLIS AVE","","CHICAGO","IL","606163395","US","3127912000","3127912299","05/24/2005","08/22/2020","","","","","MEADE","MARY","ANN","DIRECTOR REVEUNE CYCLE MANAGEMENT","3127913132","282N00000X","0004986","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1003819954","2","","","REGENCY VILLAGE, LTD","","","","","","","","","","","","","","","","PO BOX 541084","","CINCINNATI","OH","452541084","US","5134746200","5133883000","6550 HAMILTON AVE","","CINCINNATI","OH","452241065","US","5135225516","5137282216","05/24/2005","08/22/2020","","","","","WAGSCHAL","YONI","","DIRECTOR OF OPERATIONS","5134746200","314000000X","3409","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2341148","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1457354300","2","","","SURGERY CENTER OF OCALA LLC","","","","","","","","","","","","","","","","3241 SW 34TH ST","","OCALA","FL","344747439","US","3522375906","3522375785","3241 SW 34TH ST","","OCALA","FL","344747439","US","3522375906","3522375785","05/24/2005","12/19/2007","","","","","GUARINO","MICHAEL","","ADMINISTRATOR","3522375906","261QA1903X","","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1902809858","2","","","PENINSULA CARDIOLOGY ASSOCIATES, P.A.","","","","","","","","","","","","","","","","PO BOX 49","","SALISBURY","MD","218030049","US","4107498906","4102195662","400 EASTERN SHORE DR","","SALISBURY","MD","218045565","US","4107498906","4102195662","05/24/2005","04/29/2008","","","","","ANDERSON","JOANNA","M","BILLING MANAGER","4107490821","207Q00000X","=========","MD","N","207RI0011X","=========","MD","N","207UN0901X","=========","MD","N","2085N0904X","=========","MD","N","2085R0204X","=========","MD","N","2085U0001X","=========","MD","N","207RC0000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","911751200","05","MD","","G00061","01","DE","MEDICARE DELAWARE GROUP NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CPC","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","" -"1710980669","2","","","UNITED MEDICAL CENTERS","","","","","","","UNITED MEDICAL CENTERS, INC","5","","","","","","","","PO BOX 1470","","EAGLE PASS","TX","788531470","US","8307738917","8307731892","2525 N VETERANS BLVD","","EAGLE PASS","TX","788523302","US","8307735358","8307730258","05/24/2005","01/08/2020","","","","","OLVERA","RAFAEL","E","CHIEF FINANCIAL OFFICER","8307738917","207Q00000X","","TX","N","207R00000X","","TX","N","207V00000X","","TX","N","207Y00000X","","","N","208000000X","","TX","N","208D00000X","","","N","213E00000X","","TX","N","363A00000X","","","N","363LF0000X","","","N","363LW0102X","","","N","1041C0700X","","","N","1223G0001X","","TX","N","1223P0221X","","","N","124Q00000X","","","N","261QF0400X","N/A","TX","Y","137809307 FQHC SITE","05","TX","","137809302 (GROUPALL)","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CFO","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","01/08/2020" -"1700889656","2","","","SEASONS HOSPICE INC","","","","","","","","","","","","","","","","6400 SHAFER CT","STE 700","ROSEMONT","IL","600184914","US","8477599449","8477599449","606 POTTER RD","","DES PLAINES","IL","600165337","US","8477599449","8477599449","05/24/2005","01/25/2010","","","","","BILL","CARRIE","","FINANCE DIRECTOR","8476921148","251G00000X","2002012","IL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9570","01","IL","BCBS","364129545001","05","IL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","MBA","","","","","","","","","","","","","","","","" -"1336142280","2","","","MEDICATION MANAGEMENT CENTER, LLC.","","","","","","","","","","","","","","","","1000 E CENTER ST","STE 200","KINGSPORT","TN","376604973","US","4233786337","4233786333","1000 E CENTER ST","STE 200","KINGSPORT","TN","376604973","US","4233786337","4233786333","05/24/2005","08/22/2020","","","","","MINTON","BILLIE","J","OWNER AND DOCTOR OF PHARMACOLOGY","4233786337","1835P1200X","0000008550","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHARM.D.","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1669475505","2","","","HORIZON MRI OF SAN ANTONIO WEST LLC","","","","","","","","","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","2140 BABCOCK RD","","SAN ANTONIO","TX","782294424","US","2106920674","2109491878","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3537015","01","","AETNA/MEDSOLUTONS -HMO","7126556","01","","AETNA/MEDSOLUTIONS-PPO","0343DC","01","TX","BCBS PROV #","242744","01","","AMERIGROUP","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1710980792","2","","","NEW BEDFORD JEWISH CONVALESCENT HOME, INC.","","","","","","","","","","","","","","","","200 HAWTHORN ST","","NEW BEDFORD","MA","027402201","US","5089979314","5089963664","200 HAWTHORN ST","","NEW BEDFORD","MA","027402201","US","5089979314","5089963664","05/24/2005","08/22/2020","","","","","TRUDEAU","CAROL","A.","ADMINISTRATOR","5089979314","314000000X","225481","MA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0998885","05","MA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1053314039","2","","","MIDDLE GEORGIA NURSING HOME, INC","","","","","","","","","","","","","","","","556 CHESTER HWY","","EASTMAN","GA","310233717","US","4783744733","4783741688","556 CHESTER HWY","","EASTMAN","GA","310233717","US","4783744733","4783741688","05/24/2005","03/23/2008","","","","","HARVILL","BEN","","CFO","4783740805","314000000X","10451407","GA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0001419174A","05","GA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1326041302","2","","","PATIENT CARE INC.","","","","","","","","","","","","","","","","8200 NW 27TH ST","STE 118","DORAL","FL","331221902","US","3052289333","3052280330","8200 NW 27TH ST","STE 118","DORAL","FL","331221902","US","3052289333","3052280330","05/24/2005","06/09/2009","","","","","GANUZA","DIEGO","JOSE","ALTERNATE ADMINISTRATOR","3052289333","251E00000X","HHA21438096","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","650934700","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1689677668","2","","","CENTER FOR DIAGNOSTIC IMAGING LTD","","","","","","","","","","","","","","","","1380 NE MIAMI GARDENS DR","STE 115","NORTH MIAMI BEACH","FL","331794708","US","3059474461","3059474940","1380 NE MIAMI GARDENS DR","STE 115","NORTH MIAMI BEACH","FL","331794708","US","3059474461","3059474940","05/24/2005","07/18/2012","","","","","OKSEMBERG","JOSEPH","","OFFICE MANAGER","3059474461","261QR0200X","2755834","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1407859481","2","","","ANDERSON HEALTHCARE, LTD","","","","","","","","","","","","","","","","PO BOX 541084","","CINCINNATI","OH","452541084","US","5134746200","5133883000","8139 BEECHMONT AVE","","CINCINNATI","OH","452553152","US","5134746200","5133883000","05/24/2005","03/18/2009","","","","","WAGSCHAL","AKIVA","","NHA","5134746200","314000000X","2168","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2044764","05","OH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1497758478","2","","","UNIVERSITY AMBULATORY SURGICAL CENTER","","","","","","","UT DAY SURGERY","3","","","","","","","","1934 ALCOA HIGHWAY","BLDG D SUITE 170","KNOXVILLE","TN","37920","US","8653058585","8653056932","1934 ALCOA HIGHWAY","BLDG D SUITE 170","KNOXVILLE","TN","37920","US","8653058585","8653056932","05/24/2005","02/26/2009","","","","","BELL","DEBORAH","T","ADMINISTRATOR","8653058585","261QA1903X","0000000156","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3288799","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN, BS, MPH","","","","","","","","","","","","","","","","" -"1215930292","2","","","CGSR, INC","","","","","","","MEADOWBROOK HEALTHCARE","3","","","","","","","","154 PROSPECT AVE","","PLATTSBURGH","NY","129011302","US","5185635440","5185631206","154 PROSPECT AVE","","PLATTSBURGH","NY","129011302","US","5185635440","5185631206","05/24/2005","12/31/2019","","","","","RICHARDS","PAUL","F.","ADMINISTRATOR","5185635440","207R00000X","","","N","332BN1400X","","","N","332BP3500X","","","N","314000000X","0901303N","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0901303N","01","NY","OPERATING CERTIFICATE NUM","0140","01","NY","PFI","08-41529-7","01","NY","NYS EMPLOYER ID","02994732","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","12/31/2019" -"1104829175","2","","","ABC DURABLE MEDICAL EQUIPMENT INC","","","","","","","","","","","","","","","","919 N SLABAUGH ST","","MISSION","TX","78572","US","9565842775","9565804788","919 N SLABAUGH ST","","MISSION","TX","78572","US","9565842775","9565804788","05/24/2005","02/08/2012","","","","","VELA","VERONICA","S","VICE PRES ADMINISTRATA","9565842775","332BP3500X","0070727","TX","N","332BX2000X","0070727","TX","N","332B00000X","0070727","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","180026002","05","TX","","165432901","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1336142397","2","","","ST. MARY'S HEALTH INC","","","","","","","ST. VINCENT EVANSVILLE URGENT CARE-WESTSIDE","3","","","","","","","","3700 WASHINGTON","","EVANSVILLE","IN","47750","US","8124856940","8124856949","100 S ROSENBERGER AVENUE","SUITE A200","EVANSVILLE","IN","477126591","US","8124851550","8124851560","05/24/2005","03/27/2017","","","","","BRIGGELER","LOIS","ANN","CREDENTIALING REPRESENTATIVE","8124856946","261QU0200X","","","N","261QU0200X","","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","200394790A","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","","","","","","","","","","","","","","","" -"1972506939","2","","","DAKOTA SURGICAL LTD","","","","","","","","","","","","","","","","911 E 20TH ST","STE 300","SIOUX FALLS","SD","571051045","US","6053342266","6053227675","911 E 20TH ST","STE 300","SIOUX FALLS","SD","571051045","US","6053342266","6053227675","05/24/2005","10/04/2007","","","","","HARRIS","FREDERICK","L","CEO","6053342266","261QM2500X","40865","SD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD, MS, FACS","","","","","","","","","","","","","","","","" -"1518960574","2","","","KEMPF SURGICAL APPLIANCES INC","","","","","","","","","","","","","","","","10567 MONTGOMERY RD","","CINCINNATI","OH","452424451","US","5139845758","5139841178","10567 MONTGOMERY RD","","CINCINNATI","OH","452424451","US","5139845758","5139841178","05/24/2005","11/21/2011","","","","","KEMPF","STEPHEN","R","PRESIDENT","5139845758","332B00000X","LO0063","OH","N","332BC3200X","LO0063","OH","N","335E00000X","LO0063","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100013590A","05","IN","","90254152","05","KY","","57748","01","OH","NORTHWOOD","0492891","05","OH","","8220159","01","OH","UNITED HEALTHCARE","000000003404","01","OH","ANTHEM O&P","000000289446","01","OH","ANTHEM DME","123567600","01","OH","DEPT OF LABOR","DM120","01","OH","CHOICE CARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","C.O.","","","","","","","","","","","","","","","","" -"1053314013","2","","","TRIA ORTHOPAEDIC CENTER LLC","","","","","","","","","","","","","","","","8100 NORTHLAND DR","","MINNEAPOLIS","MN","554314800","US","9528318742","9528311626","8100 NORTHLAND DR","","MINNEAPOLIS","MN","554314800","US","9528318742","9528311626","05/24/2005","09/06/2019","","","","","DEGE","TRICIA","L","SR VICE PRESIDENT, CFO","9528835121","261QA1903X","328557","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","981410800","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1043213002","2","","","CITY OF WAYNOKA","","","","","","","WAYNOKA AMBULANCE SERVICE","3","","","","","","","","201 E CECIL ST","","WAYNOKA","OK","738601233","US","5808242261","5808243000","201 E CECIL ST","","WAYNOKA","OK","738601233","US","5808242261","5808243000","05/24/2005","08/22/2020","","","","","SMILEY","SCOTT","","DIRECTOR","5808242261","3416L0300X","EMS004","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1659374510","2","","","WEDCO DISTRICT HEALTH DEPT","","","","","","","WEDCO HOME HEALTH","3","","","","","","","","PO BOX 218","302 ODDVILLE AVE","CYNTHIANA","KY","41031","US","8592348750","8592348925","302 ODDVILLE AVE","","CYNTHIANA","KY","410311241","US","8592348750","8592346493","05/24/2005","03/17/2015","","","","","MILLER","CRYSTAL","A","PUBLIC HEALTH DIRECTOR","8592348750","251E00000X","150056","KY","N","251B00000X","150056","KY","N","252Y00000X","150056","KY","N","251K00000X","","KY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","15000557","05","KY","","20091013","05","KY","","15001092","05","KY","","45344579","05","KY","","20105011","05","KY","","42001099","05","KY","","15001035","05","KY","","20049011","05","KY","","34002097","05","KY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1548263478","2","","","MISSISSIPPI COUNTY AMBULANCE DISTRICT","","","","","","","","","","","","","","","","53 W HIGHWAY C","","CHARLESTON","MO","638348399","US","5736836207","5736834251","53 W HIGHWAY C","","CHARLESTON","MO","638348399","US","5736836207","5736834251","05/24/2005","03/09/2018","","","","","RENO","FREDA","J","OFFICE MANAGER","5736836207","3416L0300X","133001","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","800548505","05","MO","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1548263452","2","","","JOHN A. GUIJON, DDS INC","","","","","","","","","","","","","","","","18700 MAIN ST","STE 210","HUNTINGTON BEACH","CA","926481714","US","7148472566","7148415760","18700 MAIN ST","STE 210","HUNTINGTON BEACH","CA","926481714","US","7148472566","7148415760","05/24/2005","08/22/2020","","","","","GUIJON","JOHN","ANDREW","PRESIDENT","7148472566","1223P0221X","42730","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1184627093","2","","","BURLESON ST. JOSEPH MANOR","","","","","","","","","","","","","","","","1022 PRESIDENTIAL CORRIDOR EAST","","CALDWELL","TX","778364611","US","9795670920","9795674811","1022 PRESIDENTIAL CORRIDOR EAST","","CALDWELL","TX","778364611","US","9795670920","9795674811","05/24/2005","01/25/2010","","","","","COTTRELL","HAROLD","","EXECUTIVE DIRECTOR","9795670920","313M00000X","107880","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","001000513","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","LNFA","","","","","","","","","","","","","","","","" -"1780687442","2","","","POLUN AMERICAN SURGERY CENTER, PC","","","","","","","AMERICAN SURGERY CENTER","3","","","","","","","","10236 RIVER RD","","POTOMAC","MD","208544959","US","3019839873","3012993985","10236 RIVER RD","","POTOMAC","MD","208544959","US","3019839873","3012993985","05/24/2005","10/05/2017","","","","","POLUN","FRANKLIN","R","OWNER","3019838202","261QP1100X","A1127","MD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DPM","","","","","","","","","","","","","","","","" -"1508869264","2","","","PRN ENTERPRISES, INC","","","","","","","HOME TOWN HELAHT CARE","5","","","","","","","","904 FORESTVIEW DR","","COLONIAL HEIGHTS","VA","238341217","US","8045262979","8045263880","5 DUNLOP VLG","","COLONIAL HEIGHTS","VA","238341764","US","8045263600","8045266294","05/24/2005","08/22/2020","","","","","SLATE","FRANCES","M","CEO/PRESIDENT","8045263600","251E00000X","497259","VA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4972597","05","VA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1326041088","2","","","HEALTHMED REHAB CENTERS OF AMERICA","","","","","","","","","","","","","","","","4486 N UNIVERSITY DR","","LAUDERHILL","FL","333514513","US","9545721000","9545729200","4486 N UNIVERSITY DR","","LAUDERHILL","FL","333514513","US","9545721000","9545729200","05/24/2005","08/22/2020","","","","","WALKER","ROBIN","","PHYSICAL THERAPY DIRECTOR","9545721000","305S00000X","684815","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","684815","01","FL","CORF","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RPT","","","","","","","","","","","","","","","","" -"1013910959","2","","","HOSPICE QUALITY CARE, INC.","","","","","","","","","","","","","","","","921 S SOONER RD","","MIDWEST CITY","OK","731102425","US","4056199100","4056199103","921 S SOONER RD","","MIDWEST CITY","OK","731102425","US","4056199100","4056199103","05/24/2005","05/16/2014","","","","","MARR","DIANN","J.","OWNER/DIRECTOR","4056199100","251G00000X","4097","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4097","01","OK","HOSPICE LICENSE NUMBER","100685970A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","RN, CHPN","","","","","","","","","","","","","","","","" -"1811990757","2","","","COASTAL MANOR CORPORATION","","","","","","","COASTAL MANOR NURSING HOME","3","","","","","","","","20 W MAIN ST","","YARMOUTH","ME","040968412","US","2078465013","2078462252","20 W MAIN ST","","YARMOUTH","ME","040968412","US","2078465013","2078462252","05/24/2005","07/21/2015","","","","","GADWAY","OREY","F","ADMINISTRATOR","2078465013","313M00000X","36175","ME","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","115010000","05","ME","","040823","01","ME","ANTHEM BC","205157","01","ME","MEDICARE PTAN","141P10285","01","ME","MEDICARE PART A","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1720081664","2","","","HEATON LASER & SURGERY CENTER, LLC","","","","","","","","","","","","","","","","3415 GOLDEN RD","","TYLER","TX","757018355","US","9035260444","9035260996","3415 GOLDEN RD","","TYLER","TX","757018355","US","9035260444","9035260996","05/24/2005","10/16/2014","","","","","HEATON","CHARLES","LAWSON","PRESIDENT","9035260444","261QA1903X","000377","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","M. D.","","","","","","","","","","","","","","","","" -"1891798732","2","","","NATIONAL P.E.T. SCAN DADE, LLC","","","","","","","","","","","","","","","","6622 SOUTHPOINT DR S","SUITE 360","JACKSONVILLE","FL","322168014","US","9043588441","9043582288","7867 N KENDALL DR","STE 121","MIAMI","FL","331567735","US","3054553000","3054552065","05/24/2005","12/05/2012","","","","","AUSTIN","MARGIE","FAYE","ADMINISTRATIVE ASSISTANT","9043588441","261QR0200X","HCC5689","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","593688943","01","FL","ALL FLORIDA PPO","V2273","01","FL","BLUE CROSS BLUE SHIELD FL","38829","01","FL","NEIGHBORHOOD HEALTH","593688943","01","FL","HUMANA","2845084-001","01","FL","CIGNA","SG011169","01","FL","VISTA HEALTH","V2273","01","FL","HEALTH OPTIONS","593688943","01","FL","TRICARE","67830","01","FL","FOUNDATION HEALTH","196701","01","FL","WELLCARE","593688943","01","FL","EVOLUTIONS","CK2452","01","FL","MEDICARE RAILROAD RETIREM","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1770586604","2","","","WILMOT CARE CENTER","","","","","","","","","","","","","","","","501 4TH ST","","WILMOT","SD","572792232","US","6059384418","6059384412","501 4TH ST","","WILMOT","SD","572792232","US","6059384418","6059384412","05/24/2005","04/01/2015","","","","","POND","CATHY","","ADMINISTRATOR","6059384418","314000000X","10712","SD","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0160432","05","SD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1225031156","2","","","NORTHVIEW DENTAL, P.A.","","","","","","","NORTHVIEW DENTAL","3","","","","","","","","4700 LEXINGTON AVE N","","SHOREVIEW","MN","551265844","US","6514831858","6517668400","4700 LEXINGTON AVE N","","SHOREVIEW","MN","551265844","US","6514831858","6517668400","05/24/2005","08/22/2020","","","","","NORSTED","JEFFREY","B.","PRESIDENT","6514831858","1223G0001X","=========","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","DDS","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1760485692","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","901 S RANCHO DR","STE 20","LAS VEGAS","NV","891063815","US","7024717828","","05/24/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","251F00000X","","","N","3336H0001X","","","N","3336C0003X","PH01378","NV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","002802528","05","NV","","856461","05","AZ","","1760485692","05","UT","","003302528","05","NV","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1124021050","2","","","PAPPADAKIS ENTERPRISES","","","","","","","MIDTOWN MANOR","3","","","","","","","","125 S 900 W","","SALT LAKE CITY","UT","841041125","US","8013636340","8013598533","125 S 900 W","","SALT LAKE CITY","UT","841041125","US","8013636340","8013598533","05/24/2005","08/22/2020","","","","","PAPPADAKIS","JOHN","N","ADMINISTRATOR","8013636340","314000000X","2004-NCF-368","UT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","990177673001","05","UT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","OWNER","","","","","","","","","","","","","","","","" -"1669475596","2","","","FAIRMEADOWS HOME HEALTH CENTER, INC.","","","","","","","","","","","","","","","","PO BOX 789","","SCHERERVILLE","IN","463750789","US","2198655960","2198655966","1325 E MAIN ST","","GRIFFITH","IN","463192932","US","2198655960","2198655966","05/24/2005","03/17/2018","","","","","KUCKA","GEORGE","S","PRESIDENT","2198655960","332B00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","000000097364","01","IN","ANTHEM","100299080","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","R.PH.","","","","","","","","","","","","","","","","" -"1114920048","2","","","MERITER HOSPITAL, INC.","","","","","","","UNITYPOINT HEALTH - MERITER","3","","","","","","","","202 S PARK ST","","MADISON","WI","537151507","US","6084176000","6084173878","202 S PARK ST","","MADISON","WI","537151507","US","6084176000","","05/24/2005","08/17/2018","","","","","ERDMAN","BETH","","CFO","6084175829","208D00000X","","","N","282N00000X","316-800","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0000222","01","WI","MEDICARE PTAN","11001700","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1831192764","2","","","COUNTY OF KOOCHICHING","","","","","","","KOOCHICHING COUNTY HEALTH DEPARTMENT","3","","","","","","","","1000 5TH ST","","INTERNATIONAL FALLS","MN","566492243","US","2182837070","2182837050","1000 5TH ST","","INTERNATIONAL FALLS","MN","566492243","US","2182837070","2182837050","05/24/2005","11/05/2018","","","","","LAFRANCE","KATHY","","DIRECTOR","2182837000","251K00000X","251E00000X","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","06G63KO","01","MN","BCBS PROVIDER NUMBER","59-00164","01","MN","MEDICA CHOICE PROVIDER NO","700855400","05","MN","","730000121","01","MN","MEDICARE PART B","83-00013","01","MN","MEDICA CHOICE PROV NO.","127757","01","MN","UCARE","8264KO","01","MN","BCBS PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1740283670","2","","","OPEN MRI OF CLEVELAND, L.L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-CLEVELAND","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2017754306","3365 RICHMOND RD","STE 100","BEACHWOOD","OH","441224178","US","2162929000","2162929010","05/24/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","0835-IC","OH","X","261QR0200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2433549","05","OH","","5575697","01","OH","AETNA","000000168126","01","OH","ANTHEM BCBS","175284","01","OH","UNISON","16-00667","01","OH","UNITED HEALTHCARE OF OHIO","3351","01","OH","MEDFOCUS","PH06406187","01","OH","NATIONWIDE HEALTH PLANS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1659374585","2","","","PINE CREEK MEDICAL CENTER LLC","","","","","","","","","","","","","","","","9032 HARRY HINES BLVD","","DALLAS","TX","752351720","US","2142312273","","9032 HARRY HINES BLVD","","DALLAS","TX","752351720","US","2142312273","","05/24/2005","12/30/2014","","","","","WILSON","LUCAS","","CFO","2145727132","282N00000X","008182","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1568465490","2","","","COUNTY OF RICHLAND","","","","","","","RICHLAND COUNTY AMBULANCE","3","","","","","","","","181 W SEMINARY ST","","RICHLAND CENTER","WI","535812368","US","6086476474","6086477151","181 W SEMINARY ST","","RICHLAND CENTER","WI","535812368","US","6086476474","6086477151","05/24/2005","08/16/2012","","","","","RICE","JEANNE","PATRICE","SECRETARY","6086476474","341600000X","00724","WI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","41342400","05","WI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF RICHLAND","","MRS.","","","","","","","","","","","","","","","","","","" -"1477556306","2","","","CHARLES RETINA INSTITUTE PC","","","","","","","","","","","","","","","","1432 KIMBROUGH RD","","GERMANTOWN","TN","381382405","US","9017674499","9017610727","1432 KIMBROUGH RD","","GERMANTOWN","TN","381382405","US","9017674499","9017610727","05/24/2005","02/08/2016","","","","","SHEPPARD","MARY","","ADMINISTRATOR","9017674499","174400000X","MD8675","TN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3158650","05","TN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1265435176","2","","","POCONO AMBULATORY SURGERY CENTER LTD","","","","","","","","","","","","","","","","1 VETERANS PL","","STROUDSBURG","PA","183602418","US","5704214978","5704247312","1 VETERANS PL","","STROUDSBURG","PA","183602418","US","5704214978","5704247312","05/24/2005","04/24/2008","","","","","CONAHAN","JOSEPH","B","MANAGING DIRECTOR","5704214978","261QA1903X","16821500","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2175169","01","PA","UNITED HEALTHCARE PROVIDE","075186","01","PA","FIRST PRIORITY HEALTH PRO","8496212","01","PA","AETNA PROVIDER NUMBER","0078006230002","05","PA","","303901","01","PA","BLUE CROSS PROVIDER NUMBE","78251","01","PA","MED PLUS PROVIDER NUMBER","22777","01","PA","GEISINGER PROVIDER NUMBER","A1985647","01","PA","OXFORD PROVIDER NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","" -"1992708804","2","","","COUNTY OF LOGAN","","","","","","","LOGAN COUNTY EMERGENCY MEDICAL SERVICES","3","","","","","","","","PO BOX 467","","PARIS","AR","728550467","US","4799632723","4799638355","310 E MAIN ST","","PARIS","AR","728553328","US","4799632723","4799638355","05/24/2005","04/20/2011","","","","","FAIRBANKS","BETTY","A.","ADMINISTRATOR","4799632723","3416L0300X","730","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","47218","01","AR","BLUE CROSS BLUE SHIELD","864525","01","AR","FEDERAL BLACK LUNG PROGRA","590083475","01","AR","RAILROAD MEDICARE","103244715","05","AR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","COUNTY OF LOGAN","","MRS.","","","","","","","","","","","","","","","","","","" -"1629071535","2","","","JEFFS SURGICAL SUPPLY INC.","","","","","","","","","","","","","","","","2249 WOODBRIDGE AVE","","EDISON","NJ","088175554","US","7329855333","7329858660","2249 WOODBRIDGE AVE","","EDISON","NJ","088175554","US","7329855333","7329858660","05/24/2005","09/04/2007","","","","","ACKERMAN","JEFFREY","","PRESIDENT","7329855333","332BX2000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7427506","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1083617989","2","","","STONEWALL JACKSON MEMORIAL HOSPITAL","","","","","","","STONEWALL JACKSON HOME CARE","3","","","","","","","","456 SUITE B MARKET PLACE MALL","","WESTON","WV","264526938","US","3042694556","3042694559","456 SUITE B MARKET PLACE MALL","","WESTON","WV","264526938","US","3042694556","3042694559","05/24/2005","11/13/2014","","","","","EISENBEIS","M.","JANE","DIRECTOR OF EXTERNAL OPERATIONS","3042694556","251E00000X","=========","WV","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","WV22958A","01","WV","HEALTH PLAN","0001417001","05","WV","","300699","01","WV","FEDERAL BLACK LUNG","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","RN","","","","","","","","","","","","","","","","" -"1801899703","2","","","NORTH CITIES HEALTH CARE, INC","","","","","","","PARK RIVER ESTATES CARE CENTER","3","","","","","","","","9899 AVOCET ST NW","","COON RAPIDS","MN","554336413","US","7637572320","7637576946","9899 AVOCET ST NW","","COON RAPIDS","MN","554336413","US","7637572320","7637576946","05/24/2005","07/14/2008","","","","","POLLOCK","THOMAS","DALE","ADMINISTRATOR","7637572320","314000000X","324795","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7100243","01","MN","MEDICA PRIMARY","7122589","01","MN","MEDICA CHOICE","NH0263","01","MN","UCARE","9685PA","01","MN","BLUE CROSS & BLUE SHIELD","426040600","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","NORTH CITIES HEALTH CARE, INC","","MR.","","N.H.A.","","","","","","","","","","","","","","","","" -"1174526990","2","","","RIVER OAKS ENDOSCOPY LLP","","","","","","","","","","","","","","","","1501 RIVER POINTE DR","# 260","CONROE","TX","773042656","US","9364943636","9364943635","1501 RIVER POINTE DR","# 260","CONROE","TX","773042656","US","9364943636","9364943635","05/24/2005","04/20/2008","","","","","HOWARD","KATHY","LYN","BUSINESS OFFICE MANAGER","9364943636","261QA1903X","007979","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HH008A","01","TX","BLUE CROSS PROVIDER #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1083617807","2","","","NEWMAN MEMORIAL HOSPITAL, INC","","","","","","","","","","","","","","","","905 S MAIN ST","","SHATTUCK","OK","738589205","US","5809382551","5809382615","905 S MAIN ST","","SHATTUCK","OK","73858","US","5809382551","5809382615","05/24/2005","05/14/2020","","","","","MAJORS","EDDIE","JACKSON","CHIEF EXECUTIVE OFFICER","5809382551","282NC0060X","2243","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","100699360B","05","OK","","000370007001","01","OK","BLUE CROSS","073846001","05","TX","","100699360A","05","OK","","127341901","05","TX","","127341905","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","CEO","","","","","","","","","","","","","","","","05/14/2020" -"1538162342","2","","","HORIZON TYLER LLC","","","","","","","","","","","","","","","","240 N WASHINGTON BLVD","","SARASOTA","FL","342365945","US","9419253490","9419534452","906 E FRONT ST","","TYLER","TX","757028328","US","9035938114","9035938144","05/24/2005","08/22/2020","","","","","KERN","MARTIN","J","SENIOR VICE PRESIDENT","9419253490","261QM1200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0341DC","01","TX","BCBS PROV #","P00035829","01","","RAILROAD MCARE PROV #","2241634","01","","FIRST HEALTH","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1447253257","2","","","OPEN MRI OF DAVENPORT. L.L.C.","","","","","","","NYDIC OPEN MRI OF AMERICA-DAVENPORT","3","","","","","","","","100 PARAGON DR","STE 200","MONTVALE","NJ","076451718","US","2015738080","2017754306","3006 E 53RD ST","","DAVENPORT","IA","528073012","US","5633595400","5633597400","05/24/2005","08/22/2020","","","","","BUCHWALTER","LAWRENCE","M.","CEO","2015738080","261QM1200X","","","X","261QR0200X","","","X","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","148415","01","IA","IOWA HEALTH SOLUTIONS","F230734","01","IA","MIDLANDS CHOICE","0180547","05","IA","","47142","01","IA","BCBS OF IOWA","20446","01","IA","MEDFOCUS","A-87702","01","IA","MULTIPLAN","1223691","01","IA","FIRST HEALTH NETWORK","7269100","01","IA","COVENTRY HEALTHCARE OF IA","47142","01","IA","WELLMARK BCBS OF IOWA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1174526982","2","","","HORSLEY, PSC","","","","","","","SOUTHERN REGIONAL OPEN MRI","3","","","","","","","","611 HAMMOND PLZ","","HOPKINSVILLE","KY","422404971","US","2708851950","2708854431","611 HAMMOND PLZ","","HOPKINSVILLE","KY","422404971","US","2708851950","2708854431","05/24/2005","02/17/2014","","","","","DOUGLAS","MICHELLE","","CREDENTIALING MANAGER","5024031401","2085R0202X","","","N","261QR0200X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","64230873","05","KY","","1518114","05","TN","","300102264","01","KY","MEDICARE RR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","HORSLEY, PSC","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1992708705","2","","","LUBBOCK REGIONAL MHMR CENTER","","","","","","","","","","","","","","","","904 AVENUE O","","LUBBOCK","TX","794013924","US","8067660310","8067660397","904 AVENUE O","","LUBBOCK","TX","794013924","US","8067660310","8067660397","05/24/2005","08/28/2020","","","","","LAWSON","BETH","","CHIEF EXECUTIVE OFFICER","8067671648","261QR0405X","","","N","171M00000X","","","N","251B00000X","","","N","261Q00000X","","","N","261QM0801X","","","N","261QM0850X","","","N","261QM0855X","","","N","261QM2800X","","","N","315P00000X","","","N","283Q00000X","","","Y","","","","","","","","","","","","","","","","","","","","","1364929-01","05","TX","","0848970-01","05","TX","","1364929-08","05","TX","","1364929-07","05","TX","","1364929-03","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","08/28/2020" -"1164425971","2","","","ST JOHNS HEALTH CARE CORPORATION","","","","","","","ST. JOHN'S HOME","3","","","","","","","","150 HIGHLAND AVENUE","","ROCHESTER","NY","14620","US","5857601300","5857601497","150 HIGHLAND AVENUE","","ROCHESTER","NY","14620","US","5857601300","5857601497","05/24/2005","01/25/2016","","","","","RUSSO","MARY","G","DIRECTOR OF FINANCE","5857601421","225X00000X","","","N","225100000X","","","N","235Z00000X","","","N","314000000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00355591","05","NY","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","CPA","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","193200000X MULTI-SPECIALTY GROUP","","","","","","","","","","","","","" -"1336142140","2","","","CLOYD FAMILY VISION LLC","","","","","","","RIVERSIDE VISION CARE","3","","","","","","","","709 S RIVERSIDE AVE","","MEDFORD","OR","975017837","US","5417763718","5417765928","709 S RIVERSIDE AVE","","MEDFORD","OR","975017837","US","5417763718","5417765928","05/24/2005","02/14/2008","","","","","CLOYD","FRANCES","G","MEMBER","5417763718","332H00000X","","","N","332B00000X","","","N","152W00000X","1982ATI","OR","N","152W00000X","1754ATI","OR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","002453","01","OR","BLUECROSS BLUESHIELD OR","O5189","01","OR","PACIFIC SOURCE HEALTH PLA","4003592","01","OR","HMO OREGON","080064","05","OR","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","O.D.","","","193400000X MULTIPLE SINGLE SPECIALTY GROUP","193400000X MULTIPLE SINGLE SPECIALTY GROUP","","","","","","","","","","","","" -"1841293651","2","","","SCHAEFER HEALTH ENTERPRISES INC.","","","","","","","ROSE CITY DRUGS","3","","","","","","","","PO BOX 448","","ROSE CITY","MI","486540448","US","9896852141","8772171599","2640 N M 33","","ROSE CITY","MI","486549697","US","9896852141","8772171599","05/24/2005","04/04/2017","","","","","SCHAEFER","WILLIAM","","PRESIDENT","9896852141","332B00000X","","","N","333600000X","","","N","3336C0003X","5301005557","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2041222","01","","PK","2727763","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","BS PHARMACY","","","","","","","","","","","","","","","","" -"1487657292","2","","","MCKINLEY MEDICAL LLC","","","","","","","","","","","","","","","","4080 YOUNGFIELD ST","","WHEAT RIDGE","CO","800333862","US","3034209569","3034204545","4080 YOUNGFIELD ST","","WHEAT RIDGE","CO","800333862","US","3034209569","3034204545","05/24/2005","08/22/2020","","","","","CONNER","JENNIFER","","INSURANCE BILLING MANAGER","3034209569","332B00000X","15-13571-0000","CO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1205839016","2","","","HILL COUNTRY MEMORIAL HOSPITAL","","","","","","","HILL COUNTRY MEMORIAL HOME CARE SERVICES","3","","","","","","","","PO BOX 835","","FREDERICKSBURG","TX","786240835","US","8309971336","8309971559","808 REUBEN ST.","2ND FLOOR","FREDERICKSBURG","TX","786245405","US","8309971336","8309971559","05/24/2005","05/05/2010","","","","","OTTMERS","LINDA","","DIRECTOR/ADMINISTRATOR","8309971336","251E00000X","007479","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","136430903","05","TX","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","R.N.","","","","","","","","","","","","","","","","" -"1114920923","2","","","JAMES JEWEL","","","","","","","AMBERWOOD CARE CENTER","3","","","","","","","","215 W BANDERA RD","SUITE 114 PMB 616","BOERNE","TX","780062820","US","7133850863","","601 S OHIO CIRCLE","","CELINA","TX","750096416","US","7133850863","","05/24/2005","10/05/2007","","","","","CROWSON","DAVID","O","COURT APPOINTED TRUSTEE","7133850863","314000000X","112770","TX","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1568465375","2","","","ARKANSAS FOOT CARE CLINIC, INC","","","","","","","AQUILAR FOOT CARE CLINIC","3","","","","","","","","PO BOX 2089","","RUSSELLVILLE","AR","728112089","US","4798903668","4798909513","2400 W MAIN ST","","RUSSELLVILLE","AR","728012531","US","4798903668","4798909513","05/24/2005","11/30/2011","","","","","AQUILAR","JENNIFER","","ASSISTANT OFFICE MANAGER","4799702832","213ES0103X","AR141","AR","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","139915748","05","AR","","5F442","01","AR","BCBS GROUP NUMBER","DE6137","01","AR","RAILROAD MEDICARE NUMBER","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MRS.","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1295738003","2","","","ALLERGY & ASTHMA CARE OF ROCKLAND, P.C.","","","","","","","","","","","","","","","","222 ROUTE 59","STE 109","SUFFERN","NY","109015207","US","8453577277","8453575166","222 ROUTE 59","STE 109","SUFFERN","NY","109015207","US","8453577277","8453575166","05/24/2005","08/22/2020","","","","","SELTER","JOEL","H","PRESIDENT","8453577277","174400000X","163236","NY","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","MD","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1649273459","2","","","HISTOLOGY ASSOCIATES","","","","","","","","","","","","","","","","22221 GREATER MACK AVE","STE E","ST CLAIR SHORES","MI","480802351","US","5867744290","5867744220","22221 GREATER MACK AVE","STE E","ST CLAIR SHORES","MI","480802351","US","5867744290","5867744220","05/24/2005","06/24/2019","","","","","FRETT","JENNIFER","","DELEGATED OFFICIAL","6032449080","291U00000X","","","N","207ZP0101X","23D0650582","MI","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2125102","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","" -"1730182627","2","","","TOWNSHIP OF MONROE","","","","","","","","","","","","","","","","1 MUNICIPAL PLZ","","MONROE TWP","NJ","088311900","US","7325214400","7325215659","2 MUNICIPAL PLZ","","MONROE TWP","NJ","088311900","US","7325214400","7325215659","05/24/2005","08/22/2020","","","","","HAMILTON","WAYNE","","BUSINESS ADMINISTRATOR","7325214440","3416L0300X","N/A","NJ","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7716702","05","NJ","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1376546267","2","","","RADIATION ONCOLOGY ASSOCIATES INC","","","","","","","NORTHMAIN RADIATION ONCOLOGY","3","","","","","","","","825 N MAIN ST","","PROVIDENCE","RI","029045707","US","4015219700","4017511686","825 N MAIN ST","","PROVIDENCE","RI","029045707","US","4015219700","4017511686","05/24/2005","07/09/2008","","","","","MASKO","GABRIELA","B.","PRESIDENT","4015219700","2085R0001X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","9000233","05","RI","","CE6091","01","RI","RR MEDICARE","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1003819988","2","","","CARMEL ORTHOPEDIC & SPORTS THERAPY","","","","","","","SOLEDAD ORTHOPEDIC PHYSICAL THERAPY","3","","","","","","","","245 CROSSROADS BLVD","","CARMEL","CA","939238650","US","8316200744","8316200711","245 CROSSROADS BLVD","","CARMEL","CA","939238650","US","8316200744","8316200711","05/24/2005","01/16/2008","","","","","FERRANTE","HORACE","J","OWNER","8316200744","225100000X","PT7859","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZZ56397Z","01","CA","BLUE SHIELD","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","CARMEL ORTHOPEDIC & SPORTS THERAPY","","MR.","JR.","P.T.","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1275536153","2","","","BECKER ORTHOPEDIC APPLIANCE COMPANY","","","","","","","","","","","","","","","","635 EXECUTIVE DR","","TROY","MI","480834536","US","2485887480","2485886961","28801 WOODWARD AVE","","BERKLEY","MI","480720915","US","2483990030","2483990031","05/24/2005","04/02/2015","","","","","PIGGOTT","TIMOTHY","","BUSINESS MANAGER","2485887480","332B00000X","","","N","335E00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","4370215","05","MI","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1811990799","2","","","SOUTHWESTERN VERMONT MEDICAL CENTER, INC.","","","","","","","VISITING NURSE ASSOCIATION & HOSPICE OF SOUTHWESTERN VERMONT HEALTH CA","3","","","","","","","","1128 MONUMENT AVE","","BENNINGTON","VT","052019215","US","8024425502","8024424919","1128 MONUMENT AVE","","BENNINGTON","VT","052019215","US","8024425502","8024424919","05/24/2005","11/19/2013","","","","","FRASIER","ROBIN","","EXEC DIRECTOR","8024425502","251E00000X","NO LICENSES IN VT","VT","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0477017","05","VT","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","DPT","","","","","","","","","","","","","","","","" -"1689677320","2","","","PEACEHEALTH","","","","","","","ST JOSEPH MEDICAL CENTER","3","","","","","","","","2901 SQUALICUM PKWY","","BELLINGHAM","WA","982251898","US","3607345400","3607566830","2901 SQUALICUM PKWY","","BELLINGHAM","WA","982251851","US","3607345400","3607566830","05/25/2005","02/16/2011","","","","","ZENDER","DALE","JACOB","CHIEF FINANCIAL OFFICER","3607386313","282N00000X","H-145","WA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3308905","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MR.","","","","","","","","","","","","","","","","","","" -"1437152188","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","CHI NEPHROLOGY","3","","","","","","","","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8145358885","8145358720","1111 FRANKLIN ST","STE 220","JOHNSTOWN","PA","159054330","US","8145390798","8145364751","05/25/2005","08/22/2020","","","","","LAMBERT","ELAINE","M","CHIEF OPERATING OFFICER","8145331630","207RN0300X","MD042825E","PA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1073516720","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","CHI PAUL A. ROLLINS, MD","3","","","","","","","","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8144108300","8144108331","315 LOCUST ST","2ND FLOOR","JOHNSTOWN","PA","159011651","US","8145346750","8145346760","05/25/2005","06/26/2013","","","","","LAMBERT","ELAINE","M","PRESIDENT","8145341630","208200000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1007358110035","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1700889458","2","","","HEMATOLOGY ONCOLOGY LIFE CENTER, LLC","","","","","","","","","","","","","","","","605 MEDICAL CENTER DR STE B","","ALEXANDRIA","LA","713018145","US","3184422232","3184422192","605B MEDICAL CENTER DR","","ALEXANDRIA","LA","713018127","US","3184422232","3184422192","05/25/2005","06/25/2020","","","","","WOLD","HOWARD","G","LABORATORY DIRECTOR","3184422232","291U00000X","19D0464720","LA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","19D0464720","01","LA","CLIA ID #","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","M.D.","","","","","","","","","","","","","","","","06/25/2020" -"1427051176","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","9002 NORTH MERIDIAN","SUITE 213","INDIANAPOLIS","IN","46260","US","3179267828","3179262483","05/25/2005","01/06/2011","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","","","N","3336H0001X","","","N","3336C0003X","60005718A","IN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","2369477","05","OH","","54012968","05","KY","","90013673","05","KY","","200356880","05","IN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1528061272","2","","","NEWTON HOSPITAL, INC.","","","","","","","NEWTON REGIONAL HOSPITAL","3","","","","","","","","9421 EASTSIDE DRIVE EXTENTION","","NEWTON","MS","393452613","US","6016832031","6016830366","9421 EASTSIDE DRIVE EXTENTION","","NEWTON","MS","393452613","US","6016832031","6016830366","05/25/2005","08/20/2012","","","","","MCNULTY","JOSEPH","S","PRESIDENT","6018491682","261QE0002X","16-321","MS","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C00125","01","MS","MEDICARE GROUP #","09013954","05","MS","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","III","","","","","","","","","","","","","","","","","" -"1336142082","2","","","CONEMAUGH HEALTH INITIATIVES","","","","","","","CHI OB/GYN ASSOCIATES","3","","","","","","","","1086 FRANKLIN ST","","JOHNSTOWN","PA","159054305","US","8144108300","8144108331","1111 FRANKLIN ST","STE 300","JOHNSTOWN","PA","159054330","US","8145349230","8145349465","05/25/2005","03/24/2014","","","","","LAMBERT","ELAINE","M","CHIEF OPERATING OFFICER","8145341630","207V00000X","","","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1007358110130","05","PA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","193400000X SINGLE SPECIALTY GROUP","","","","","","","","","","","","","","","" -"1972506624","2","","","HOSPICE OF NAPA VALLEY, INC","","","","","","","ADULT DAY SERVICES OF NAPA VALLEY","5","","","","","","","","414 S JEFFERSON ST","","NAPA","CA","945594515","US","7072589087","7072544157","414 S JEFFERSON ST","","NAPA","CA","945594515","US","7072589087","7072544157","05/25/2005","08/22/2020","","","","","REGALIA","CELINE","","PROGRAM DIRECTOR","7072589087","261QA0600X","","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ADU70129F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","MA","","","","","","","","","","","","","","","","" -"1881697530","2","","","BIOSCRIP PHARMACY, INC.","","","","","","","BIOSCRIP PHARMACY","3","","","","","","","","10050 CROSSTOWN CIR","STE 300","EDEN PRAIRIE","MN","553443374","US","8007535995","9523526698","1669 MERIDIAN AVE","STE 102","MIAMI BEACH","FL","331392842","US","3055341980","","05/25/2005","12/03/2010","","","","","MELANCON","JAMES","","VICE PRESIDENT","9174496939","332B00000X","PH0015155","FL","N","3336C0003X","PH0015155","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","105451100","05","FL","","1080275","05","MI","","7F5155","05","SC","","000246100","05","MD","","0577205","05","IA","","0220422","05","MO","","1007771500012","05","PA","","30702615","05","NH","","105449001","05","FL","","6027148","05","WA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1881697522","2","","","RIVERSIDE PARK SURGICENTER INC","","","","","","","","","","","","","","","","2001 COLLEGE ST","","JACKSONVILLE","FL","322043703","US","9043559800","9043568680","2001 COLLEGE ST","","JACKSONVILLE","FL","322043703","US","9043559800","9043568680","05/25/2005","10/27/2011","","","","","BEEDE","JEANNIE","","DIRECTOR OF NURSING","9043559800","261QA1903X","80003681","FL","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","62J","01","FL","BCBS","490001993","01","FL","RR MEDICARE","101679","01","FL","AVMED","10C0001167","01","FL","MEDICARE DMERC","17626","01","FL","CIGNA","079102400","05","FL","","6800031","01","FL","UNITED","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1962405605","2","","","GUARDIAN HOME HEALTH SERVICES","","","","","","","","","","","","","","","","5576 PEARL RD","","PARMA","OH","441292542","US","2163449130","2163449135","5576 PEARL RD","","PARMA","OH","441292542","US","2163449130","2163449135","05/25/2005","08/22/2020","","","","","GOSSETT","KENNETH","D.","EXECUTIVE DIRECTOR","2163449130","251E00000X","251E00000X","OH","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","DR.","","PHD","","","","","","","","","","","","","","","","" -"1508869249","2","","","HOT SPRINGS HEALTH PROGRAM, INC.","","","","","","","MADISON HOME CARE OR HOSPICE OF MADISON","3","","","","","","","","PO BOX 69","","MARSHALL","NC","287530069","US","8286499566","8286490687","590 MEDICAL PARK DR","","MARSHALL","NC","287536807","US","8286499566","8286490687","05/25/2005","07/28/2016","","","","","STROM","TERESA","B","EXECUTIVE DIRECTOR","8286499566","251G00000X","HC0419","NC","N","251E00000X","HC0419","NC","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","00743","01","NC","BCBS NC HH PROVIDER NO.","3401540","05","NC","","3408161","05","NC","","0022P","01","NC","BCBS NC HOS PROVIDER NO.","3407039","05","NC","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","HOT SPRINGS HEALTH PROGRAM, INC.","","","","","","","","","","","","","","","","","","","","" -"1033112776","2","","","LEEDEY AMBULANCE SERVICE","","","","","","","LEEDEY AMBULANCE SERVICE","3","","","","","","","","PO BOX 190","","LEEDEY","OK","736540190","US","5804883812","5804882191","401 S MAIN","","LEEDEY","OK","73654","US","5804883812","5804882191","05/26/2005","03/25/2009","","","","","WOHL","KENNETH","","DIRECTOR","5804882101","3416L0300X","EMS113","OK","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","590007407","01","OK","RAILROAD MEDICARE","100818750A","05","OK","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","","","","","","","","","","","","","","","","","","","" -"1730182478","2","","","JOHN FITZGIBBON MEMORIAL HOSPITAL INC.","","","","","","","FITZGIBBON HOSPITAL","3","","","","","","","","2305 S 65 HIGHWAY","","MARSHALL","MO","653403702","US","6608867431","6608869001","2305 S 65 HIGHWAY","","MARSHALL","MO","653403702","US","6608867431","6608869001","05/26/2005","01/14/2016","","","","","HAUG","DARIN","L","PRESIDENT / CEO","6608867431","282N00000X","27-56","MO","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","010636405","05","MO","","1730182478","05","MO","","01400779","05","KY","","0900563","05","IA","","95027280","05","CO","","XHSP30930","05","CA","","113880105","05","AR","","100100230A","05","KS","","097388200","05","FL","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","JOHN FITZGIBBON MEMORIAL HOSPITAL INC.","","DR.","","DO","","","","","","","","","","","","","","","","" -"1639172372","2","","","CEDARS-SINAI MEDICAL CENTER","","","","","","","","","","","","","","","","8700 BEVERLY BLVD","","LOS ANGELES","CA","90048","US","3238668600","3238668895","8700 BEVERLY BLVD","","LOS ANGELES","CA","90048","US","3238668600","3238668895","05/26/2005","05/07/2015","","","","","KITTELL","PATRICIA","E.","VP, PATIENT FINANCIAL SERVICES","3238668722","282N00000X","930000110","CA","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZZT30625F","05","CA","","HSC30625F","05","CA","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","N","","","MS.","","","","","","","","","","","","","","","","","","" -"1396748034","2","","","ESSENTIA HEALTH VIRGINIA, LLC","","","","","","","ESSENTIA HEALTH VIRGINIA CARE CENTER","3","","","","","","","","901 9TH ST N","","VIRGINIA","MN","557922348","US","2187413340","2187499427","901 9TH ST N","","VIRGINIA","MN","557922348","US","2187413340","2187499427","05/26/2005","01/09/2019","","","","","FELTMAN","STEVEN","","CFO","2187428662","314000000X","324847","MN","Y","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","936325400","05","MN","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","Y","ST. MARY'S DULUTH CLINIC HEALTH SYSTEM","","","","","","","","","","","","","","","","","","","","" diff --git a/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json b/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json index d34ac4f7c..be50f0a5a 100644 --- a/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json +++ b/resources/prod_resources/Altera_Digital_Health_Inc_EndpointSources.json @@ -1,883 +1,889 @@ { "Endpoints": [ { - "URL": "https://fhir.colaneph.com/fhir", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/fhir", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/R4/fhir-R4", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/R2/fhir", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/open", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/R2/open", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/R4/open-R4", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://AH1SCM2FHIR.altahospitals.com/open", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/R4/fhir-Prod", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/open", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/open", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/R2/fhir", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/R4/open-Prod", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/R2/open", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/fhir", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.atlanticgeneral.org/fhir", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/R4/fhir-Prod", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhir.blessinghospital.com/R2/fhir", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/R4/open-Prod", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhir.blessinghospital.com/R2/open", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/fhir", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhir.blessinghospital.com/fhir", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/open", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhir.blessinghospital.com/open", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/R4/fhir-R4", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/Fhir", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/fhir", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/Open", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/open", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/R4/open-R4", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/R4/open-Prod", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.cardassoc.com/R2/fhir", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/R4/fhir-Prod", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.cardassoc.com/R2/open", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/open", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.cardassoc.com/open", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/fhir", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.cardassoc.com/fhir", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/fhir", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://sunexch.cmc-nh.org/fhir", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/R4/open-Prod", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://sunexch.cmc-nh.org/open", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/open", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://sunexch.cmc-nh.org/R2/fhir", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/R4/fhir-Prod", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://sunexch.cmc-nh.org/R2/open", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/fhir-R4", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://ehrlivefhir.corp.communitycare.com/R2/open", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/open-R4", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://ehrlivefhir.corp.communitycare.com/open", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/open-R4", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://ehrlivefhir.corp.communitycare.com/R2/fhir", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/open", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://ehrlivefhir.corp.communitycare.com/fhir", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/fhir", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://myhealth.ecmc.edu/R2/Open", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/open", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://myhealth.ecmc.edu/R2/Fhir", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/fhir", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://myhealth.ecmc.edu/Open", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/R4/fhir-Prod", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://myhealth.ecmc.edu/Fhir", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/R4/open-Prod", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://FHIR.flaglerhospital.org/fhir", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.atlanticgeneral.org/R4/open-Prod", - "OrganizationName": "Atlantic General Hospital - AG01", + "URL": "https://fhir.flaglerhospital.org/R2/open", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.atlanticgeneral.org/open", - "OrganizationName": "Atlantic General Hospital - AG01", + "URL": "https://FHIR.flaglerhospital.org/open", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.atlanticgeneral.org/R4/fhir-Prod", - "OrganizationName": "Atlantic General Hospital - AG01", + "URL": "https://fhir.flaglerhospital.org/R2/fhir", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.atlanticgeneral.org/fhir", - "OrganizationName": "Atlantic General Hospital - AG01", + "URL": "https://fhir.gesslerclinic.com/R2/Fhir", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pcpgj.com/R4/open-R4", - "OrganizationName": "Primary Care Partners PROD", + "URL": "https://fhir.gesslerclinic.com/Fhir", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pcpgj.com/Fhir", - "OrganizationName": "Primary Care Partners PROD", + "URL": "https://fhir.gesslerclinic.com/Open", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pcpgj.com/R4/fhir-R4", - "OrganizationName": "Primary Care Partners PROD", + "URL": "https://fhir.gesslerclinic.com/R2/Open", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pcpgj.com/Open", - "OrganizationName": "Primary Care Partners PROD", + "URL": "https://fhir.jtdmh.org/R2/open", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw22fhir.jacksonclinic.com/Fhir", - "OrganizationName": "The Jackson Clinic", + "URL": "https://fhirprod.jtdmh.org/fhir", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw22fhir.jacksonclinic.com/Open", - "OrganizationName": "The Jackson Clinic", + "URL": "https://fhir.jtdmh.org/R2/fhir", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw22fhir.jacksonclinic.com/R4/open-R4", - "OrganizationName": "The Jackson Clinic", + "URL": "https://fhirprod.jtdmh.org/open", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw22fhir.jacksonclinic.com/R4/fhir-R4", - "OrganizationName": "The Jackson Clinic", + "URL": "https://fhir.jtdmh.org/open", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Maimonides Medical Center - MM1", + "URL": "https://fhir.jtdmh.org/fhir", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/open", - "OrganizationName": "Maimonides Medical Center - MM1", + "URL": "https://fhir.ggclinic.com/R2/open-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Maimonides Medical Center - MM1", + "URL": "https://fhir.ggclinic.com/open-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Maimonides Medical Center - MM1", + "URL": "https://fhir.ggclinic.com/fhir-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir04.northwell.edu/R4/open-R4", - "OrganizationName": "Northwell Health Inc - PROD", + "URL": "https://fhir.ggclinic.com/R2/fhir-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir04.northwell.edu/R4/fhir-R4", - "OrganizationName": "Northwell Health Inc - PROD", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir04.northwell.edu/Open", - "OrganizationName": "Northwell Health Inc - PROD", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.northwell.edu/R4/fhir-Prod", - "OrganizationName": "Northwell Health - PROD01", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/open", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.northwell.edu/open", - "OrganizationName": "Northwell Health - PROD01", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.northwell.edu/fhir", - "OrganizationName": "Northwell Health - PROD01", + "URL": "https://fhir.hf.org/R2/fhir", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.northwell.edu/R4/open-Prod", - "OrganizationName": "Northwell Health - PROD01", + "URL": "https://fhir.hf.org/R2/open", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.stclair.org/R4/open-Prod", - "OrganizationName": "St Clair Hospital", + "URL": "https://fhir.hf.org/fhir", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.stclair.org/open", - "OrganizationName": "St Clair Hospital", + "URL": "https://fhir.hf.org/open", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.stclair.org/fhir", - "OrganizationName": "St Clair Hospital", + "URL": "https://fhirtw.hvhs.org/open", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.stclair.org/R4/fhir-Prod", - "OrganizationName": "St Clair Hospital", + "URL": "https://fhirtw.hvhs.org/R2/fhir", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirapi.thekidneydocs.com/fhir", - "OrganizationName": "Nephrology and Hypertension Medical Associates", + "URL": "https://fhirtw.hvhs.org/R2/open", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirapi.thekidneydocs.com/R4/fhir-R4", - "OrganizationName": "Nephrology and Hypertension Medical Associates", + "URL": "https://fhirtw.hvhs.org/fhir", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirapi.thekidneydocs.com/R4/open-R4", - "OrganizationName": "Nephrology and Hypertension Medical Associates", + "URL": "https://fhir.hvhs.org/open", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirapi.thekidneydocs.com/open", - "OrganizationName": "Nephrology and Hypertension Medical Associates", + "URL": "https://fhir.hvhs.org/R2/fhir", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mcfhir.mankatoclinic.com/fhir", - "OrganizationName": "Mankato Clinic", + "URL": "https://fhir.hvhs.org/fhir", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mcfhir.mankatoclinic.com/R4/open-R4", - "OrganizationName": "Mankato Clinic", + "URL": "https://fhir.hvhs.org/R2/open", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mcfhir.mankatoclinic.com/R4/fhir-R4", - "OrganizationName": "Mankato Clinic", + "URL": "https://ahsfhirprod.hutchclinic.com/fhir", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mcfhir.mankatoclinic.com/open", - "OrganizationName": "Mankato Clinic", + "URL": "https://ahsfhirprod.hutchclinic.com/R2/fhir", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cardassoc.com/R4/fhir-R4", - "OrganizationName": "Cardiology Assoc of Mobile PC", + "URL": "https://ahsfhirprod.hutchclinic.com/R2/open", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cardassoc.com/R4/open-R4", - "OrganizationName": "Cardiology Assoc of Mobile PC", + "URL": "https://ahsfhirprod.hutchclinic.com/open", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cardassoc.com/open", - "OrganizationName": "Cardiology Assoc of Mobile PC", + "URL": "https://tw1fhir.hcpnv.com/R2/Fhir", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cardassoc.com/fhir", - "OrganizationName": "Cardiology Assoc of Mobile PC", + "URL": "https://tw1fhir.hcpnv.com/Fhir", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/open", - "OrganizationName": "Sheppard Pratt Health System - EP01", + "URL": "https://tw1fhir.hcpnv.com/R2/Open", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Sheppard Pratt Health System - EP01", + "URL": "https://tw1fhir.hcpnv.com/Open", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Sheppard Pratt Health System - EP01", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R2/open", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Sheppard Pratt Health System - EP01", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/fhir", - "OrganizationName": "St Vincent Hospital Inc - ST01", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/open", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/open", - "OrganizationName": "St Vincent Hospital Inc - ST01", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/fhir", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "St Vincent Hospital Inc - ST01", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "St Vincent Hospital Inc - ST01", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/open", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sny.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/fhir", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sny.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sny.hos.allscriptscloud.com/open", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", + "URL": "http://test.fhir.api.com/fhir", + "OrganizationName": "JT \u0026 MT Tester", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sny.hos.allscriptscloud.com/fhir", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", + "URL": "https://pma0fhir.ma0.allscriptstw.com/R2/Open", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://myhealth.ecmc.edu/R4/open-R4", - "OrganizationName": "Erie County Medical Center Corporation", + "URL": "https://pma0fhir.ma0.allscriptstw.com/Fhir", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://myhealth.ecmc.edu/R4/fhir-R4", - "OrganizationName": "Erie County Medical Center Corporation", + "URL": "https://pma0fhir.ma0.allscriptstw.com/R2/Fhir", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://myhealth.ecmc.edu/Open", - "OrganizationName": "Erie County Medical Center Corporation", + "URL": "https://pma0fhir.ma0.allscriptstw.com/Open", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://myhealth.ecmc.edu/Fhir", - "OrganizationName": "Erie County Medical Center Corporation", + "URL": "https://mcfhir.mankatoclinic.com/fhir", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pso0fhir.so0.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "Summit Orthopedics", + "URL": "https://mcfhir.mankatoclinic.com/R2/open", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pso0fhir.so0.allscriptstw.com/R4/open-R4", - "OrganizationName": "Summit Orthopedics", + "URL": "https://mcfhir.mankatoclinic.com/R2/fhir", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hvhs.org/open", - "OrganizationName": "Heritage Valley Health System - HV01", + "URL": "https://mcfhir.mankatoclinic.com/open", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hvhs.org/R4/open-Prod", - "OrganizationName": "Heritage Valley Health System - HV01", + "URL": "https://mea-fhir.allscriptscloud.com/R2/Fhir", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hvhs.org/R4/fhir-Prod", - "OrganizationName": "Heritage Valley Health System - HV01", + "URL": "https://mea-fhir.allscriptscloud.com/R2/Open", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hvhs.org/fhir", - "OrganizationName": "Heritage Valley Health System - HV01", + "URL": "https://mea-fhir.allscriptscloud.com/Open", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/fhir", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://mea-fhir.allscriptscloud.com/Fhir", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/R4/open-Prod", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/open", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/open", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/R4/fhir-Prod", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.reverehealth.com/R4/open-R4", - "OrganizationName": "Central Utah Clinic dba Revere Health", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.reverehealth.com/R4/fhir-R4", - "OrganizationName": "Central Utah Clinic dba Revere Health", + "URL": "https://fhirprod.numc.edu/open", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/R4/open-R4", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhirprod.numc.edu/R2/open", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/Open", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhirprod.numc.edu/R2/fhir", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/Fhir", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhirprod.numc.edu/fhir", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/R4/fhir-R4", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhirapi.thekidneydocs.com/fhir", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://fhirapi.thekidneydocs.com/R2/fhir", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://fhirapi.thekidneydocs.com/open", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/open", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://fhirapi.thekidneydocs.com/R2/open", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://SCMPORTAL.NMHS.NET/open", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/R4/fhir-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://SCMPORTAL.NMHS.NET/fhir", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/fhir", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://SCMPORTAL.NMHS.NET/R2/fhir", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/open", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://SCMPORTAL.NMHS.NET/R2/open", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/open", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://fhir.northwell.edu/R2/fhir", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/R4/open-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://fhir.northwell.edu/R2/open", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/fhir", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://fhir.northwell.edu/open", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/R4/fhir-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://fhir.northwell.edu/fhir", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/R4/open-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://tw-fhir.okarthritis.com/open", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/fhir", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://tw-fhir.okarthritis.com/R2/open", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/open", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://tw-fhir.okarthritis.com/R2/fhir", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://tw-fhir.okarthritis.com/fhir", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/open", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.orthoindy.com/open", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.orthoindy.com/fhir", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.orthoindy.com/R2/fhir", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/fhir", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.orthoindy.com/R2/open", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://ehr-fhir.piedmonthealthcare.com/Open", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/Open", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://ehr-fhir.piedmonthealthcare.com/R2/Open", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/R4/fhir-fhir-r4", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://ehr-fhir.piedmonthealthcare.com/Fhir", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/R4/open-fhir-r4", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://ehr-fhir.piedmonthealthcare.com/R2/Fhir", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/Fhir", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://fhir.pih.hos.allscriptscloud.com/open", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/fhir-R4", - "OrganizationName": "Providers Management Inc", + "URL": "https://fhir.pih.hos.allscriptscloud.com/R2/open", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/open-R4", - "OrganizationName": "Providers Management Inc", + "URL": "https://fhir.pih.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/fhir", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.pih.hos.allscriptscloud.com/fhir", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/R4/open-Prod", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.pinehurstmedical.com/fhir", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/R4/fhir-Prod", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.pinehurstmedical.com/R2/open", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/open", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.pinehurstmedical.com/open", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/R4/open-Prod", - "OrganizationName": "Liberty Hospital", + "URL": "https://fhir.pinehurstmedical.com/R2/fhir", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/R4/fhir-Prod", - "OrganizationName": "Liberty Hospital", + "URL": "https://fhir.pcpgj.com/R2/Fhir", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/open", - "OrganizationName": "Liberty Hospital", + "URL": "https://fhir.pcpgj.com/Fhir", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/fhir", - "OrganizationName": "Liberty Hospital", + "URL": "https://fhir.pcpgj.com/R2/Open", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/FHIR", - "OrganizationName": "Liberty Hospital", + "URL": "https://fhir.pcpgj.com/Open", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhir02.iowaclinic.com/R4/fhir-R4", - "OrganizationName": "Iowa Clinic", + "URL": "https://pmdsunity.allscriptscloud.com/R2/open", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhir02.iowaclinic.com/R4/open-R4", - "OrganizationName": "Iowa Clinic", + "URL": "https://pmdsunity.allscriptscloud.com/R2/fhir", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/open", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://pmdsunity.allscriptscloud.com/fhir", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/R4/fhir-Prod", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://pmdsunity.allscriptscloud.com/open", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/fhir", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://apps.genesyspho.com/R2/fhir", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/R4/open-Prod", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://apps.genesyspho.com/open", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cb0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "RHN Clark Memorial Hospital - CB1", + "URL": "https://apps.genesyspho.com/R2/open", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cb0.hos.allscriptscloud.com/R4/fhir-Prod", + "URL": "https://apps.genesyspho.com/fhir", + "OrganizationName": "Providers Management Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.cb0.hos.allscriptscloud.com/R2/open", "OrganizationName": "RHN Clark Memorial Hospital - CB1", "NPIID": "", "OrganizationZipCode": "" @@ -895,3212 +901,2804 @@ "OrganizationZipCode": "" }, { - "URL": "https://charts.uropartners.com/R4/open-R4", - "OrganizationName": "UroPartners", + "URL": "https://fhir.cb0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "RHN Clark Memorial Hospital - CB1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://charts.uropartners.com/R4/fhir-R4", - "OrganizationName": "UroPartners", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/R4/open-Prod", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/open", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/fhir", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/open", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/R4/fhir-Prod", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/fhir", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/R4/fhir-Prod", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://fhir.sng.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/R4/open-Prod", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/open", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/fhir", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://fhir.sng.hos.allscriptscloud.com/R2/open", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/open", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://fhir.sng.hos.allscriptscloud.com/open", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/R4/open-Prod", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R2/open", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/fhir", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/R4/fhir-Prod", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://fhir.sng.hos.allscriptscloud.com/fhir", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/open", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/open", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/R4/open-R4", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/fhir", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/R4/fhir-R4", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/open", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://fhirprod.snch.org/R2/open", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/R4/open-Prod", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://fhirprod.snch.org/fhir", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/R4/fhir-Prod", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://fhirprod.snch.org/open", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/open", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://fhirprod.snch.org/R2/fhir", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/fhir", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://portal.springhill.org/open", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/open", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://portal.springhill.org/R2/fhir", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/fhir", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://portal.springhill.org/R2/open", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://portal.springhill.org/fhir", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhirprod.stclair.org/R2/open", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/open", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhirprod.stclair.org/open", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhirprod.stclair.org/R2/fhir", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/fhir", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhirprod.stclair.org/fhir", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/fhir", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/open", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/fhir", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R2/open", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/R4/fhir-R4", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/open", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/R4/open-R4", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhir.summithealthcare.net/open", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/fhir", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.summithealthcare.net/R2/open", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.summithealthcare.net/fhir", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.summithealthcare.net/R2/fhir", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/open", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.sny.hos.allscriptscloud.com/open", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/R4/fhir-R4", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://fhir.sny.hos.allscriptscloud.com/R2/open", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/open", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://fhir.sny.hos.allscriptscloud.com/fhir", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/fhir", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://fhir.sny.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/R4/fhir-R4", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://ptalfhir.tal.allscriptstw.com/fhir", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://ptalfhir.tal.allscriptstw.com/R2/Open", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/open", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://ptalfhir.tal.allscriptstw.com/R2/fhir", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://ptalfhir.tal.allscriptstw.com/Open", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://amarillohealth.ttuhsc.edu/open", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/R4/open-Prod", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://amarillohealth.ttuhsc.edu/fhir", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/R4/fhir-Prod", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://amarillohealth.ttuhsc.edu/R2/open", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/fhir", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://amarillohealth.ttuhsc.edu/R2/fhir", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/open", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://fhir.br0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/open", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://fhir.br0.hos.allscriptscloud.com/fhir", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/R4/fhir-R4", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://fhir.br0.hos.allscriptscloud.com/open", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/fhir", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://fhir.br0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/R4/open-R4", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://tw22fhir.jacksonclinic.com/Fhir", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "BronxCare - BL1", + "URL": "https://tw22fhir.jacksonclinic.com/Open", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/fhir", - "OrganizationName": "BronxCare - BL1", + "URL": "https://tw22fhir.jacksonclinic.com/R2/Open", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/open", - "OrganizationName": "BronxCare - BL1", + "URL": "https://tw22fhir.jacksonclinic.com/R2/Fhir", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "BronxCare - BL1", + "URL": "https://fhir.tchealth.org/open", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/fhir", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://fhir.tchealth.org/fhir", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/R4/open-R4", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://fhir.tchealth.org/R2/open", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/Open", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://fhir.tchealth.org/R2/fhir", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://twr10devweb2.rd.allscripts.com/R2/fhir", + "OrganizationName": "TW-Prod-R2", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/open", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://twr10devweb2.rd.allscripts.com/\\open", + "OrganizationName": "TW-Prod-R2", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/fhir", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://twr10devweb2.rd.allscripts.com/R2/open", + "OrganizationName": "TW-Prod-R2", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://twr10devweb2.rd.allscripts.com/fhir", + "OrganizationName": "TW-Prod-R2", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://twr10devweb2.rd.allscripts.com/\\fhir", + "OrganizationName": "TW-Prod-R2", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/R4/open-Prod", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://twr10devweb2.rd.allscripts.com/open", + "OrganizationName": "TW-Prod-R2", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/open", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://twfhir.uasomh.uab.edu/R2/fhir", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/R4/fhir-Prod", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://twfhir.uasomh.uab.edu/open", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/fhir", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://twfhir.uasomh.uab.edu/fhir", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://twfhir.uasomh.uab.edu/R2/open", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/open", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://uhcfhir01.unityhc.com/open", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://uhcfhir01.unityhc.com/R2/open", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://uhcfhir01.unityhc.com/fhir", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://uhcfhir01.unityhc.com/R2/fhir", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://fhir.methodisthospital.org/R2/fhir", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://fhir.methodisthospital.org/open", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/open", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://fhir.methodisthospital.org/fhir", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/R4/fhir-R4", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhir.methodisthospital.org/R2/open", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/Open", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhirprod.whs.org/open", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/Fhir", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhirprod.whs.org/R2/fhir", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/R4/open-R4", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhirprod.whs.org/R2/open", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/R4/open-Prod", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://fhirprod.whs.org/fhir", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/R4/fhir-Prod", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/fhir", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/open", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/R2/open", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/R4/open-R4", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/open", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/R4/fhir-R4", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/open", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/open", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://fhir.wnj.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/fhir", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R2/fhir", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/fhir", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://fhir.wnj.hos.allscriptscloud.com/open", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/R4/fhir-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/open", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R2/open", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/R4/fhir-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://fhirprod.wyckoffhospital.org/R2/open", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/R4/open-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://fhirprod.wyckoffhospital.org/fhir", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/fhir", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://fhirprod.wyckoffhospital.org/R2/fhir", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/R4/open-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://fhirprod.wyckoffhospital.org/open", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/open", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://ahsfhirt.amc.edu/R4/open-R4", + "OrganizationName": "Albany Med Health System - Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/open", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://ahsfhirt.amc.edu/R4/fhir-R4", + "OrganizationName": "Albany Med Health System - Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/R4/fhir-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://AH1SCM2FHIR.altahospitals.com/fhir", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/R4/open-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://AH1SCM2FHIR.altahospitals.com/R4/open-Prod", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/fhir", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://AH1SCM2FHIR.altahospitals.com/R4/fhir-Prod", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/fhir", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://AH1SCM2FHIR.altahospitals.com/open", + "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/R4/fhir-R4", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://fhirprod.atlanticgeneral.org/R4/open-Prod", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/R4/open-R4", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://fhirprod.atlanticgeneral.org/open", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/open", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://fhirprod.atlanticgeneral.org/R4/fhir-Prod", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/open", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhirprod.atlanticgeneral.org/fhir", + "OrganizationName": "Atlantic General Hospital - AG01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10133739", + "OrganizationName": "Auburn Community Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/fhir", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10133739", + "OrganizationName": "Auburn Community Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128970-TEST", + "OrganizationName": "Avanti Hospitals Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/R4/open-R4", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128970-TEST", + "OrganizationName": "Avanti Hospitals Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/Fhir", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156323-TEST", + "OrganizationName": "Bakersfield Heart Hospital Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/R4/fhir-R4", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156323-TEST", + "OrganizationName": "Bakersfield Heart Hospital Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/Open", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10001613-PROD", + "OrganizationName": "Baton Rouge", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cmhshealth.org/R4/fhir-R4", - "OrganizationName": "Community Memorial Health System", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10001613-PROD", + "OrganizationName": "Baton Rouge", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cmhshealth.org/R4/open-R4", - "OrganizationName": "Community Memorial Health System", + "URL": "https://fhir.blessinghospital.com/R4/open-Prod", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/R4/open-R4", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://fhir.blessinghospital.com/R4/fhir-Prod", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/R4/fhir-R4", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://fhir.blessinghospital.com/fhir", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/fhir", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://fhir.blessinghospital.com/open", + "OrganizationName": "Blessing Hospital - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/open", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10037262", + "OrganizationName": "Blount Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr10devweb2.rd.allscripts.com/\\open", - "OrganizationName": "TW-Prod-R2", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10037262", + "OrganizationName": "Blount Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr10devweb2.rd.allscripts.com/fhir", - "OrganizationName": "TW-Prod-R2", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr10devweb2.rd.allscripts.com/\\fhir", - "OrganizationName": "TW-Prod-R2", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/fhir", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr10devweb2.rd.allscripts.com/R4/open-R4TWStandalone", - "OrganizationName": "TW-Prod-R2", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/open", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr10devweb2.rd.allscripts.com/R4/fhir-R4TWStandalone", - "OrganizationName": "TW-Prod-R2", + "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "BronxCare - BL1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr10devweb2.rd.allscripts.com/open", - "OrganizationName": "TW-Prod-R2", + "URL": "https://fhir.cardassoc.com/R4/fhir-R4", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "MaineGeneral Health", + "URL": "https://fhir.cardassoc.com/R4/open-R4", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/R4/open-R4", - "OrganizationName": "MaineGeneral Health", + "URL": "https://fhir.cardassoc.com/open", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/Fhir", - "OrganizationName": "MaineGeneral Health", + "URL": "https://fhir.cardassoc.com/fhir", + "OrganizationName": "Cardiology Assoc of Mobile PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/Open", - "OrganizationName": "MaineGeneral Health", + "URL": "https://sunexch.cmc-nh.org/R4/fhir-Prod", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/R4/fhir-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://sunexch.cmc-nh.org/R4/open-Prod", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/open-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://sunexch.cmc-nh.org/fhir", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/R4/open-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://sunexch.cmc-nh.org/open", + "OrganizationName": "Catholic Medical Center - PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/fhir-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10151767", + "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/open", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10151767", + "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/fhir", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10151767-TEST", + "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/R4/fhir-R4", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10151767-TEST", + "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/R4/open-R4", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://fhir.reverehealth.com/R4/open-R4", + "OrganizationName": "Central Utah Clinic dba Revere Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wise - WE01", + "URL": "https://fhir.reverehealth.com/R4/fhir-R4", + "OrganizationName": "Central Utah Clinic dba Revere Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wise - WE01", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10129095", + "OrganizationName": "CHA Hollywood Presbyterian", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/R4/open-Prod", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10129095", + "OrganizationName": "CHA Hollywood Presbyterian", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/open", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10049317", + "OrganizationName": "Coffee Regional Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/fhir", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", - "NPIID": "", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10049317", + "OrganizationName": "Coffee Regional Medical Center", + "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/R4/fhir-Prod", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", + "URL": "https://fhir.colaneph.com/fhir", + "OrganizationName": "Columbia Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirt.amc.edu/R4/open-R4", - "OrganizationName": "Albany Med Health System - Test", + "URL": "https://fhir.colaneph.com/R4/fhir-R4", + "OrganizationName": "Columbia Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirt.amc.edu/R4/fhir-R4", - "OrganizationName": "Albany Med Health System - Test", + "URL": "https://fhir.colaneph.com/open", + "OrganizationName": "Columbia Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.colaneph.com/R4/open-R4", + "OrganizationName": "Columbia Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/open", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10151766-PROD", + "OrganizationName": "Columbus Community", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10151766-PROD", + "OrganizationName": "Columbus Community", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/fhir", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156964", + "OrganizationName": "Comanche County Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/open", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156964", + "OrganizationName": "Comanche County Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/R4/open-R4", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156964-TEST", + "OrganizationName": "Comanche County Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/R4/fhir-R4", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156964-TEST", + "OrganizationName": "Comanche County Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/fhir", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159336", + "OrganizationName": "Common Spirit", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/R4/open-R4", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159336", + "OrganizationName": "Common Spirit", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/R4/fhir-R4", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://ehrlivefhir.corp.communitycare.com/R4/open-R4", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/open", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://ehrlivefhir.corp.communitycare.com/R4/fhir-R4", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/fhir", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://ehrlivefhir.corp.communitycare.com/open", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/open", - "OrganizationName": "Ortho Indy", + "URL": "https://ehrlivefhir.corp.communitycare.com/fhir", + "OrganizationName": "Community Care Physicians, P.C,", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/R4/fhir-R4", - "OrganizationName": "Ortho Indy", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153805-TEST", + "OrganizationName": "Community Hospital Holding Company (Optim) Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/fhir", - "OrganizationName": "Ortho Indy", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153805-TEST", + "OrganizationName": "Community Hospital Holding Company (Optim) Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/R4/open-R4", - "OrganizationName": "Ortho Indy", + "URL": "https://fhir.cmhshealth.org/R4/fhir-R4", + "OrganizationName": "Community Memorial Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/open", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhir.cmhshealth.org/R4/open-R4", + "OrganizationName": "Community Memorial Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/R4/open-Prod", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10086440", + "OrganizationName": "Cookeville Reg Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/fhir", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10086440", + "OrganizationName": "Cookeville Reg Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/R4/fhir-Prod", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159538-TEST", + "OrganizationName": "Davis Health (Test)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159538-TEST", + "OrganizationName": "Davis Health (Test)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://myhealth.ecmc.edu/R4/open-R4", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://myhealth.ecmc.edu/R4/fhir-R4", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/open", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://myhealth.ecmc.edu/Open", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pnytfhir.nyt.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "Nystrom \u0026 Assoc, Ltd.", + "URL": "https://myhealth.ecmc.edu/Fhir", + "OrganizationName": "Erie County Medical Center Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pnytfhir.nyt.allscriptstw.com/R4/open-R4", - "OrganizationName": "Nystrom \u0026 Assoc, Ltd.", + "URL": "https://FHIR.flaglerhospital.org/fhir", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/fhir", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://FHIR.flaglerhospital.org/R4/open-Prod", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/R4/fhir-R4", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://FHIR.flaglerhospital.org/open", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/open", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://FHIR.flaglerhospital.org/R4/fhir-Prod", + "OrganizationName": "Flagler Hospital Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.colaneph.com/R4/open-R4", - "OrganizationName": "Columbia Nephrology Associates", + "URL": "https://fhir.gesslerclinic.com/R4/fhir-R4", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/R4/fhir-Prod", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhir.gesslerclinic.com/Fhir", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/open", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhir.gesslerclinic.com/Open", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/R4/open-Prod", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhir.gesslerclinic.com/R4/open-R4", + "OrganizationName": "Gessler Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.whs.org/fhir", - "OrganizationName": "Washington Health System - WH01", + "URL": "https://fhirprod.jtdmh.org/R4/fhir-Prod", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/R4/fhir-Prod", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhirprod.jtdmh.org/fhir", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/R4/open-Prod", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhirprod.jtdmh.org/open", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/fhir", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhir.jtdmh.org/open", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sunexch.cmc-nh.org/open", - "OrganizationName": "Catholic Medical Center - PRODUCTION", + "URL": "https://fhirprod.jtdmh.org/R4/open-Prod", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10157444", - "OrganizationName": "Lake Charles Memorial Hospital (Southwest Louisiana)", + "URL": "https://fhir.jtdmh.org/fhir", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10157444", - "OrganizationName": "Lake Charles Memorial Hospital (Southwest Louisiana)", + "URL": "https://fhir.jtdmh.org/R4/fhir-Prod", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/R4/fhir-R4", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhir.jtdmh.org/R4/open-Prod", + "OrganizationName": "Grand Lake Health System - GL01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/Fhir", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhir.ggclinic.com/R4/fhir-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/Open", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhir.ggclinic.com/open-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.gesslerclinic.com/R4/open-R4", - "OrganizationName": "Gessler Clinic", + "URL": "https://fhir.ggclinic.com/R4/open-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/R4/open-Prod", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.ggclinic.com/fhir-R4", + "OrganizationName": "Graves Gilbert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/R4/fhir-Prod", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153750", + "OrganizationName": "Gritman Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/open", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153750", + "OrganizationName": "Gritman Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.summithealthcare.net/fhir", - "OrganizationName": "Summit Healthcare Association - PROD", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/fhir", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/open", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/R4/open-Prod", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/open", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://fhir.nb0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Hannibal Regional Health System - NB01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.snch.org/R4/fhir-Prod", - "OrganizationName": "South Nassau Communities Hospital - SN1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10014166-PROD", + "OrganizationName": "Harris Regional", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/fhir-R4", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10014166", + "OrganizationName": "Harris Regional", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/open-R4", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10014166", + "OrganizationName": "Harris Regional", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/open-R4", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10014166-PROD", + "OrganizationName": "Harris Regional", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/open", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156000-PROD", + "OrganizationName": "Haywood", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/fhir", - "OrganizationName": "Providers Management Inc (Old)", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156000-PROD", + "OrganizationName": "Haywood", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10131752-TEST", - "OrganizationName": "Valley County Health System Test", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10155929", + "OrganizationName": "Health Alliance of the Hudson Valley", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10131752-TEST", - "OrganizationName": "Valley County Health System Test", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10155929", + "OrganizationName": "Health Alliance of the Hudson Valley", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/open", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10155929-TEST", + "OrganizationName": "Health Alliance of the Hudson Valley Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/fhir", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10155929-TEST", + "OrganizationName": "Health Alliance of the Hudson Valley Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/R4/fhir-Prod", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://fhir.hf.org/R4/open-Prod", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://SCMPORTAL.NMHS.NET/R4/open-Prod", - "OrganizationName": "North Mississippi Medical Center - SCMPROD", + "URL": "https://fhir.hf.org/R4/fhir-Prod", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.atlanticgeneral.org/R4/open-Prod", - "OrganizationName": "Atlantic General Hospital - AG01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.atlanticgeneral.org/open", - "OrganizationName": "Atlantic General Hospital - AG01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.atlanticgeneral.org/R4/fhir-Prod", - "OrganizationName": "Atlantic General Hospital - AG01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.atlanticgeneral.org/fhir", - "OrganizationName": "Atlantic General Hospital - AG01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10155897-PROD", - "OrganizationName": "Trios Health (aka RCCH Health Partners)", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10155897-PROD", - "OrganizationName": "Trios Health (aka RCCH Health Partners)", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.pcpgj.com/R4/open-R4", - "OrganizationName": "Primary Care Partners PROD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.pcpgj.com/Fhir", - "OrganizationName": "Primary Care Partners PROD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.pcpgj.com/R4/fhir-R4", - "OrganizationName": "Primary Care Partners PROD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.pcpgj.com/Open", - "OrganizationName": "Primary Care Partners PROD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10132746", - "OrganizationName": "Ringgold County Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10132746", - "OrganizationName": "Ringgold County Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://tw22fhir.jacksonclinic.com/Fhir", - "OrganizationName": "The Jackson Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://tw22fhir.jacksonclinic.com/Open", - "OrganizationName": "The Jackson Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://tw22fhir.jacksonclinic.com/R4/open-R4", - "OrganizationName": "The Jackson Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://tw22fhir.jacksonclinic.com/R4/fhir-R4", - "OrganizationName": "The Jackson Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Maimonides Medical Center - MM1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/open", - "OrganizationName": "Maimonides Medical Center - MM1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Maimonides Medical Center - MM1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.mm0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Maimonides Medical Center - MM1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128947", - "OrganizationName": "Samaritan Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128947", - "OrganizationName": "Samaritan Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10158422-PROD", - "OrganizationName": "Twin County", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10158422-PROD", - "OrganizationName": "Twin County", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://twfhir04.northwell.edu/R4/open-R4", - "OrganizationName": "Northwell Health Inc - PROD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://twfhir04.northwell.edu/R4/fhir-R4", - "OrganizationName": "Northwell Health Inc - PROD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://twfhir04.northwell.edu/Open", - "OrganizationName": "Northwell Health Inc - PROD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.northwell.edu/R4/fhir-Prod", - "OrganizationName": "Northwell Health - PROD01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.northwell.edu/open", - "OrganizationName": "Northwell Health - PROD01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.northwell.edu/fhir", - "OrganizationName": "Northwell Health - PROD01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.northwell.edu/R4/open-Prod", - "OrganizationName": "Northwell Health - PROD01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.stclair.org/R4/open-Prod", - "OrganizationName": "St Clair Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.stclair.org/open", - "OrganizationName": "St Clair Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.stclair.org/fhir", - "OrganizationName": "St Clair Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.stclair.org/R4/fhir-Prod", - "OrganizationName": "St Clair Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirapi.thekidneydocs.com/fhir", - "OrganizationName": "Nephrology and Hypertension Medical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirapi.thekidneydocs.com/R4/fhir-R4", - "OrganizationName": "Nephrology and Hypertension Medical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirapi.thekidneydocs.com/R4/open-R4", - "OrganizationName": "Nephrology and Hypertension Medical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirapi.thekidneydocs.com/open", - "OrganizationName": "Nephrology and Hypertension Medical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mcfhir.mankatoclinic.com/fhir", - "OrganizationName": "Mankato Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mcfhir.mankatoclinic.com/R4/open-R4", - "OrganizationName": "Mankato Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mcfhir.mankatoclinic.com/R4/fhir-R4", - "OrganizationName": "Mankato Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mcfhir.mankatoclinic.com/open", - "OrganizationName": "Mankato Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.cardassoc.com/R4/fhir-R4", - "OrganizationName": "Cardiology Assoc of Mobile PC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.cardassoc.com/R4/open-R4", - "OrganizationName": "Cardiology Assoc of Mobile PC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.cardassoc.com/open", - "OrganizationName": "Cardiology Assoc of Mobile PC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.cardassoc.com/fhir", - "OrganizationName": "Cardiology Assoc of Mobile PC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/open", - "OrganizationName": "Sheppard Pratt Health System - EP01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Sheppard Pratt Health System - EP01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Sheppard Pratt Health System - EP01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.ep0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Sheppard Pratt Health System - EP01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/fhir", - "OrganizationName": "St Vincent Hospital Inc - ST01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/open", - "OrganizationName": "St Vincent Hospital Inc - ST01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "St Vincent Hospital Inc - ST01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhirprod.asc.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "St Vincent Hospital Inc - ST01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.sny.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.sny.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.sny.hos.allscriptscloud.com/open", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.sny.hos.allscriptscloud.com/fhir", - "OrganizationName": "SUNY Downstate Medical Center - SNY1", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10131752", - "OrganizationName": "Valley County Health System", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10131752", - "OrganizationName": "Valley County Health System", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://myhealth.ecmc.edu/R4/open-R4", - "OrganizationName": "Erie County Medical Center Corporation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://myhealth.ecmc.edu/R4/fhir-R4", - "OrganizationName": "Erie County Medical Center Corporation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://myhealth.ecmc.edu/Open", - "OrganizationName": "Erie County Medical Center Corporation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://myhealth.ecmc.edu/Fhir", - "OrganizationName": "Erie County Medical Center Corporation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://pso0fhir.so0.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "Summit Orthopedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://pso0fhir.so0.allscriptstw.com/R4/open-R4", - "OrganizationName": "Summit Orthopedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.hvhs.org/open", - "OrganizationName": "Heritage Valley Health System - HV01", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.hvhs.org/R4/open-Prod", - "OrganizationName": "Heritage Valley Health System - HV01", + "URL": "https://fhir.hf.org/fhir", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hvhs.org/R4/fhir-Prod", - "OrganizationName": "Heritage Valley Health System - HV01", + "URL": "https://fhir.hf.org/open", + "OrganizationName": "Health First Shared Services Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hvhs.org/fhir", - "OrganizationName": "Heritage Valley Health System - HV01", + "URL": "https://fhirprod.hendrickhealth.org/open", + "OrganizationName": "Hendrick Medical Center - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-PROD", - "OrganizationName": "Wise Health", + "URL": "https://fhirprod.hendrickhealth.org/R4/fhir-Prod", + "OrganizationName": "Hendrick Medical Center - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/Fhir", - "OrganizationName": "Wise Health", + "URL": "https://fhirprod.hendrickhealth.org/fhir", + "OrganizationName": "Hendrick Medical Center - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-PROD", - "OrganizationName": "Wise Health", + "URL": "https://fhirprod.hendrickhealth.org/R4/open-Prod", + "OrganizationName": "Hendrick Medical Center - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/Open", - "OrganizationName": "Wise Health", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10127839", + "OrganizationName": "Henry County Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/FHIR", - "OrganizationName": "Wise Health", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10127839", + "OrganizationName": "Henry County Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/fhir", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://fhirtw.hvhs.org/open", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/R4/open-Prod", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://fhirtw.hvhs.org/R4/fhir-R4", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/open", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://fhirtw.hvhs.org/fhir", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.flaglerhospital.org/R4/fhir-Prod", - "OrganizationName": "Flagler Hospital Inc - PROD", + "URL": "https://fhirtw.hvhs.org/R4/open-R4", + "OrganizationName": "Heritage Valley Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.reverehealth.com/R4/open-R4", - "OrganizationName": "Central Utah Clinic dba Revere Health", + "URL": "https://fhir.hvhs.org/open", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.reverehealth.com/R4/fhir-R4", - "OrganizationName": "Central Utah Clinic dba Revere Health", + "URL": "https://fhir.hvhs.org/R4/open-Prod", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10037262", - "OrganizationName": "Blount Memorial Hospital", + "URL": "https://fhir.hvhs.org/R4/fhir-Prod", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10037262", - "OrganizationName": "Blount Memorial Hospital", + "URL": "https://fhir.hvhs.org/fhir", + "OrganizationName": "Heritage Valley Health System - HV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/R4/open-R4", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/HCAPROD_36", + "OrganizationName": "Hospital Corporation Of America", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/Open", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/HCAPROD_36", + "OrganizationName": "Hospital Corporation Of America", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/Fhir", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhir.hfsc.org/R4/open-Prod", + "OrganizationName": "Hospital for Special Care - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mea-fhir.allscriptscloud.com/R4/fhir-R4", - "OrganizationName": "Medical Education Assistance Corporation", + "URL": "https://fhir.hfsc.org/R4/fhir-Prod", + "OrganizationName": "Hospital for Special Care - PROD1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128914", + "OrganizationName": "Houston Physicians Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128914", + "OrganizationName": "Houston Physicians Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/open", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://ahsfhirprod.hutchclinic.com/R4/open-R4", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.lv0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Lompoc Valley Medical Center - LV1", + "URL": "https://ahsfhirprod.hutchclinic.com/fhir", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10129782", - "OrganizationName": "Ridgecrest Regional Hospital", + "URL": "https://ahsfhirprod.hutchclinic.com/R4/fhir-R4", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10129782", - "OrganizationName": "Ridgecrest Regional Hospital", + "URL": "https://ahsfhirprod.hutchclinic.com/open", + "OrganizationName": "Hutchinson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10152760", - "OrganizationName": "Wayne Memorial Hospital", + "URL": "https://tw1fhir.hcpnv.com/R4/open-R4", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10152760", - "OrganizationName": "Wayne Memorial Hospital", + "URL": "https://tw1fhir.hcpnv.com/Fhir", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10155929", - "OrganizationName": "Health Alliance of the Hudson Valley", + "URL": "https://tw1fhir.hcpnv.com/R4/fhir-R4", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10155929", - "OrganizationName": "Health Alliance of the Hudson Valley", + "URL": "https://tw1fhir.hcpnv.com/Open", + "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/R4/fhir-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://ahsfhir02.iowaclinic.com/R4/fhir-R4", + "OrganizationName": "Iowa Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/fhir", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://ahsfhir02.iowaclinic.com/R4/open-R4", + "OrganizationName": "Iowa Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/open", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159197", + "OrganizationName": "Jackson Hospital \u0026 Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/open", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159197", + "OrganizationName": "Jackson Hospital \u0026 Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.jtdmh.org/R4/open-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://FHIRPROD.jrmc.org/R4/open-Prod", + "OrganizationName": "Jefferson Regional Medical Center - XAProduction", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/fhir", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://FHIRPROD.jrmc.org/open", + "OrganizationName": "Jefferson Regional Medical Center - XAProduction", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/R4/fhir-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://FHIRPROD.jrmc.org/fhir", + "OrganizationName": "Jefferson Regional Medical Center - XAProduction", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jtdmh.org/R4/open-Prod", - "OrganizationName": "Grand Lake Health System - GL01", + "URL": "https://FHIRPROD.jrmc.org/R4/fhir-Prod", + "OrganizationName": "Jefferson Regional Medical Center - XAProduction", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10049317", - "OrganizationName": "Coffee Regional Medical Center", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10049317", - "OrganizationName": "Coffee Regional Medical Center", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/open", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156000-PROD", - "OrganizationName": "Haywood", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156000-PROD", - "OrganizationName": "Haywood", + "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/fhir", + "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156964-TEST", - "OrganizationName": "Comanche County Test", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/open", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156964-TEST", - "OrganizationName": "Comanche County Test", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/fhir", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/HCAPROD_36", - "OrganizationName": "Hospital Corporation Of America", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/HCAPROD_36", - "OrganizationName": "Hospital Corporation Of America", + "URL": "https://fhir.jt0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/fhir", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhirprod.matherhospital.org/open", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/open", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhirprod.matherhospital.org/R4/fhir-Prod", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhirprod.matherhospital.org/R4/open-Prod", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/open", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhirprod.matherhospital.org/fhir", + "OrganizationName": "John T Mather Memorial Hospital - JT1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10058176", + "OrganizationName": "Knox Community Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10058176", + "OrganizationName": "Knox Community Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.sng.hos.allscriptscloud.com/fhir", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10157444", + "OrganizationName": "Lake Charles Memorial Hospital (Southwest Louisiana)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10157444", + "OrganizationName": "Lake Charles Memorial Hospital (Southwest Louisiana)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156964", - "OrganizationName": "Comanche County Memorial Hospital", + "URL": "https://PSEFHIR.libertyhospital.org/R4/open-Prod", + "OrganizationName": "Liberty Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156964", - "OrganizationName": "Comanche County Memorial Hospital", + "URL": "https://PSEFHIR.libertyhospital.org/R4/fhir-Prod", + "OrganizationName": "Liberty Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/Open", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://PSEFHIR.libertyhospital.org/open", + "OrganizationName": "Liberty Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/R4/fhir-fhir-r4", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://PSEFHIR.libertyhospital.org/fhir", + "OrganizationName": "Liberty Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/R4/open-fhir-r4", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://PSEFHIR.libertyhospital.org/FHIR", + "OrganizationName": "Liberty Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstsurgical.com/Fhir", - "OrganizationName": "Pinehurst Surgical Clinic", + "URL": "https://fhir.lv0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Lompoc Valley Medical Center - LV1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/fhir-R4", - "OrganizationName": "Providers Management Inc", + "URL": "https://fhir.lv0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Lompoc Valley Medical Center - LV1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://apps.genesyspho.com/R4/open-R4", - "OrganizationName": "Providers Management Inc", + "URL": "https://fhir.lv0.hos.allscriptscloud.com/open", + "OrganizationName": "Lompoc Valley Medical Center - LV1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/fhir", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.lv0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Lompoc Valley Medical Center - LV1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/R4/open-Prod", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.mm0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Maimonides Medical Center - MM1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/R4/fhir-Prod", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.mm0.hos.allscriptscloud.com/open", + "OrganizationName": "Maimonides Medical Center - MM1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://AH1SCM2FHIR.altahospitals.com/open", - "OrganizationName": "Alta Hospitals System - ALTA_SCM_PROD", + "URL": "https://fhir.mm0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Maimonides Medical Center - MM1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/R4/open-Prod", - "OrganizationName": "Liberty Hospital", + "URL": "https://fhir.mm0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Maimonides Medical Center - MM1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/R4/fhir-Prod", - "OrganizationName": "Liberty Hospital", + "URL": "https://pma0fhir.ma0.allscriptstw.com/R4/fhir-R4", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/open", - "OrganizationName": "Liberty Hospital", + "URL": "https://pma0fhir.ma0.allscriptstw.com/R4/open-R4", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/fhir", - "OrganizationName": "Liberty Hospital", + "URL": "https://pma0fhir.ma0.allscriptstw.com/Fhir", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://PSEFHIR.libertyhospital.org/FHIR", - "OrganizationName": "Liberty Hospital", + "URL": "https://pma0fhir.ma0.allscriptstw.com/Open", + "OrganizationName": "MaineGeneral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhir02.iowaclinic.com/R4/fhir-R4", - "OrganizationName": "Iowa Clinic", + "URL": "https://fhirprod.mainegeneral.org/fhir", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhir02.iowaclinic.com/R4/open-R4", - "OrganizationName": "Iowa Clinic", + "URL": "https://fhirprod.mainegeneral.org/R4/fhir-Prod", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw181unityfhir.open.allscripts.com/R4/fhir-veradigmtwr4", - "OrganizationName": "Veradigm Connect TW R4", + "URL": "https://ma01ascmshvp.ma0.hos/open", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw181unityfhir.open.allscripts.com/R4/open-veradigmtwr4", - "OrganizationName": "Veradigm Connect TW R4", + "URL": "https://ma01ascmshvp.ma0.hos/R4/fhir-Prod", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/open", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://ma01ascmshvp.ma0.hos/R4/open-Prod", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/R4/fhir-Prod", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://ma01ascmshvp.ma0.hos/fhir", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/fhir", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://fhirprod.mainegeneral.org/R4/open-Prod", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.hendrickhealth.org/R4/open-Prod", - "OrganizationName": "Hendrick Medical Center - PROD", + "URL": "https://fhirprod.mainegeneral.org/open", + "OrganizationName": "MaineGeneral Medical Center - MA1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr3devweb2.rd.allscripts.com/fhir-Fhir", - "OrganizationName": "TW", + "URL": "https://mcfhir.mankatoclinic.com/fhir", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/R2/Open", - "OrganizationName": "TW", + "URL": "https://mcfhir.mankatoclinic.com/R4/open-R4", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/FHIR", - "OrganizationName": "TW", + "URL": "https://mcfhir.mankatoclinic.com/R4/fhir-R4", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/R2/FHIR", - "OrganizationName": "TW", + "URL": "https://mcfhir.mankatoclinic.com/open", + "OrganizationName": "Mankato Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr3devweb2.rd.allscripts.com/R4/open-Fhir", - "OrganizationName": "TW", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156895-PROD", + "OrganizationName": "Maria Parham", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr3devweb2.rd.allscripts.com/R4/fhir-Fhir", - "OrganizationName": "TW", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156895-PROD", + "OrganizationName": "Maria Parham", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/Open", - "OrganizationName": "TW", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10122756-PROD", + "OrganizationName": "Marquette General Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cb0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "RHN Clark Memorial Hospital - CB1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10122756-PROD", + "OrganizationName": "Marquette General Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cb0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "RHN Clark Memorial Hospital - CB1", + "URL": "https://mea-fhir.allscriptscloud.com/R4/open-R4", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cb0.hos.allscriptscloud.com/fhir", - "OrganizationName": "RHN Clark Memorial Hospital - CB1", + "URL": "https://mea-fhir.allscriptscloud.com/Open", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cb0.hos.allscriptscloud.com/open", - "OrganizationName": "RHN Clark Memorial Hospital - CB1", + "URL": "https://mea-fhir.allscriptscloud.com/Fhir", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10034411", - "OrganizationName": "West Calcasieu Cameron Hospital", + "URL": "https://mea-fhir.allscriptscloud.com/R4/fhir-R4", + "OrganizationName": "Medical Education Assistance Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10034411", - "OrganizationName": "West Calcasieu Cameron Hospital", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10086440", - "OrganizationName": "Cookeville Reg Medical Center", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/open", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10086440", - "OrganizationName": "Cookeville Reg Medical Center", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://charts.uropartners.com/R4/open-R4", - "OrganizationName": "UroPartners", + "URL": "https://fhir.ss0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://charts.uropartners.com/R4/fhir-R4", - "OrganizationName": "UroPartners", + "URL": "https://fhir.mmclinic.com/open", + "OrganizationName": "Murfreesboro Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153803", - "OrganizationName": "Rome Memorial Hospital", + "URL": "https://fhir.mmclinic.com/R4/open-R4", + "OrganizationName": "Murfreesboro Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153803", - "OrganizationName": "Rome Memorial Hospital", + "URL": "https://fhir.mmclinic.com/R4/fhir-R4", + "OrganizationName": "Murfreesboro Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/R4/open-Prod", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://fhir.mmclinic.com/fhir", + "OrganizationName": "Murfreesboro Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/open", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://fhirprod.numc.edu/open", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/fhir", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://fhirprod.numc.edu/R4/open-Prod", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://portal.springhill.org/R4/fhir-Prod", - "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", + "URL": "https://fhirprod.numc.edu/fhir", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/R4/fhir-Prod", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://fhirprod.numc.edu/R4/fhir-Prod", + "OrganizationName": "Nassau Health Care Corporation - NU1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/R4/open-Prod", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://fhirapi.thekidneydocs.com/fhir", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/fhir", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://fhirapi.thekidneydocs.com/R4/fhir-R4", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.wyckoffhospital.org/open", - "OrganizationName": "Wyckoff Heights Medical Center - WO01", + "URL": "https://fhirapi.thekidneydocs.com/R4/open-R4", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128914", - "OrganizationName": "Houston Physicians Hospital", + "URL": "https://fhirapi.thekidneydocs.com/open", + "OrganizationName": "Nephrology and Hypertension Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128914", - "OrganizationName": "Houston Physicians Hospital", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10129092-PROD", + "OrganizationName": "New Bridge", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/R4/open-Prod", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10129092-PROD", + "OrganizationName": "New Bridge", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/fhir", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://SCMPORTAL.NMHS.NET/open", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/R4/fhir-Prod", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://SCMPORTAL.NMHS.NET/fhir", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://MobilityMD.smh.com/open", - "OrganizationName": "Sarasota Memorial Health Care - SCMP", + "URL": "https://SCMPORTAL.NMHS.NET/R4/fhir-Prod", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/R4/open-R4", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://SCMPORTAL.NMHS.NET/R4/open-Prod", + "OrganizationName": "North Mississippi Medical Center - SCMPROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/fhir", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://fhir.northwell.edu/R4/fhir-Prod", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/R4/fhir-R4", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://fhir.northwell.edu/open", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirprod.hutchclinic.com/open", - "OrganizationName": "Hutchinson Clinic", + "URL": "https://fhir.northwell.edu/fhir", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10122756-PROD", - "OrganizationName": "Marquette General Hospital", + "URL": "https://fhir.northwell.edu/R4/open-Prod", + "OrganizationName": "Northwell Health - PROD01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10122756-PROD", - "OrganizationName": "Marquette General Hospital", + "URL": "https://twfhir04.northwell.edu/R4/open-R4", + "OrganizationName": "Northwell Health Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10090707", - "OrganizationName": "Three Rivers Health", + "URL": "https://twfhir04.northwell.edu/R4/fhir-R4", + "OrganizationName": "Northwell Health Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10090707", - "OrganizationName": "Three Rivers Health", + "URL": "https://twfhir04.northwell.edu/Open", + "OrganizationName": "Northwell Health Inc - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/R4/open-Prod", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://pnytfhir.nyt.allscriptstw.com/R4/fhir-R4", + "OrganizationName": "Nystrom \u0026 Assoc, Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/R4/fhir-Prod", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://pnytfhir.nyt.allscriptstw.com/R4/open-R4", + "OrganizationName": "Nystrom \u0026 Assoc, Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/open", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153806", + "OrganizationName": "Oakbend Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.tchealth.org/fhir", - "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153806", + "OrganizationName": "Oakbend Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/open", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://tw-fhir.okarthritis.com/R4/fhir-R4", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/fhir", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://tw-fhir.okarthritis.com/open", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://tw-fhir.okarthritis.com/fhir", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://tw-fhir.okarthritis.com/R4/fhir-R4", + "OrganizationName": "Oklahoma Arthritis Center (PROD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/open", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhir.orthoindy.com/open", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.wnj.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhir.orthoindy.com/R4/fhir-R4", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/fhir", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhir.orthoindy.com/fhir", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", + "URL": "https://fhir.orthoindy.com/R4/open-R4", + "OrganizationName": "Ortho Indy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153805-TEST", - "OrganizationName": "Community Hospital Holding Company (Optim) Test", + "URL": "https://ehr-fhir.piedmonthealthcare.com/R4/fhir-R4", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153805-TEST", - "OrganizationName": "Community Hospital Holding Company (Optim) Test", + "URL": "https://ehr-fhir.piedmonthealthcare.com/Open", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hfsc.org/R4/open-Prod", - "OrganizationName": "Hospital for Special Care - PROD1", + "URL": "https://ehr-fhir.piedmonthealthcare.com/Fhir", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hfsc.org/R4/fhir-Prod", - "OrganizationName": "Hospital for Special Care - PROD1", + "URL": "https://ehr-fhir.piedmonthealthcare.com/R4/open-R4", + "OrganizationName": "Piedmont HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10151767", - "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH", + "URL": "https://fhir.pih.hos.allscriptscloud.com/open", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10151767", - "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH", + "URL": "https://fhir.pih.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10158650-PROD", - "OrganizationName": "York (Maine)", + "URL": "https://fhir.pih.hos.allscriptscloud.com/fhir", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10158650-PROD", - "OrganizationName": "York (Maine)", + "URL": "https://fhir.pih.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "PIH Health - PIH1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/open", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhir.pinehurstmedical.com/R4/open-R4", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/fhir", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhir.pinehurstmedical.com/R4/fhir-R4", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/R4/fhir-R4", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhir.pinehurstmedical.com/fhir", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uhcfhir01.unityhc.com/R4/open-R4", - "OrganizationName": "UNITY HEALTHCARE", + "URL": "https://fhir.pinehurstmedical.com/open", + "OrganizationName": "PineHurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128916", - "OrganizationName": "UPMC Somerset", + "URL": "https://fhir.pinehurstsurgical.com/Open", + "OrganizationName": "Pinehurst Surgical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128916", - "OrganizationName": "UPMC Somerset", + "URL": "https://fhir.pinehurstsurgical.com/R4/fhir-fhir-r4", + "OrganizationName": "Pinehurst Surgical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/fhir", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.pinehurstsurgical.com/R4/open-fhir-r4", + "OrganizationName": "Pinehurst Surgical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.pinehurstsurgical.com/Fhir", + "OrganizationName": "Pinehurst Surgical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.pcpgj.com/R4/open-R4", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/open", - "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", + "URL": "https://fhir.pcpgj.com/Fhir", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/R4/fhir-R4", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://fhir.pcpgj.com/R4/fhir-R4", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/open", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://fhir.pcpgj.com/Open", + "OrganizationName": "Primary Care Partners PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/fhir", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://pmdsunity.allscriptscloud.com/fhir", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw-fhir.okarthritis.com/R4/fhir-R4", - "OrganizationName": "Oklahoma Arthritis Center (PROD)", + "URL": "https://pmdsunity.allscriptscloud.com/R4/fhir-R4", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10127839", - "OrganizationName": "Henry County Medical Center", + "URL": "https://pmdsunity.allscriptscloud.com/R4/open-R4", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10127839", - "OrganizationName": "Henry County Medical Center", + "URL": "https://pmdsunity.allscriptscloud.com/open", + "OrganizationName": "PROD Medisync Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10129095", - "OrganizationName": "CHA Hollywood Presbyterian", + "URL": "https://apps.genesyspho.com/R4/fhir-R4", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10129095", - "OrganizationName": "CHA Hollywood Presbyterian", + "URL": "https://apps.genesyspho.com/R4/open-R4", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://apps.genesyspho.com/R4/open-R4", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/open", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://apps.genesyspho.com/open", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://apps.genesyspho.com/fhir", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.nb0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Hannibal Regional Health System - NB01", + "URL": "https://apps.genesyspho.com/R4/fhir-R4", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/R4/open-Prod", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://apps.genesyspho.com/R4/open-R4", + "OrganizationName": "Providers Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/R4/fhir-Prod", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://fhir.cb0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "RHN Clark Memorial Hospital - CB1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/fhir", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://fhir.cb0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "RHN Clark Memorial Hospital - CB1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.blessinghospital.com/open", - "OrganizationName": "Blessing Hospital - PROD1", + "URL": "https://fhir.cb0.hos.allscriptscloud.com/fhir", + "OrganizationName": "RHN Clark Memorial Hospital - CB1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/open", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://fhir.cb0.hos.allscriptscloud.com/open", + "OrganizationName": "RHN Clark Memorial Hospital - CB1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/R4/fhir-R4", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10129782", + "OrganizationName": "Ridgecrest Regional Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/fhir", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10129782", + "OrganizationName": "Ridgecrest Regional Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirtw.hvhs.org/R4/open-R4", - "OrganizationName": "Heritage Valley Health System", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10132746", + "OrganizationName": "Ringgold County Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10058176", - "OrganizationName": "Knox Community Hospital", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10132746", + "OrganizationName": "Ringgold County Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10058176", - "OrganizationName": "Knox Community Hospital", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153803", + "OrganizationName": "Rome Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "BronxCare - BL1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153803", + "OrganizationName": "Rome Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/fhir", - "OrganizationName": "BronxCare - BL1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10048358-PROD", + "OrganizationName": "Saint Peter’s University Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/open", - "OrganizationName": "BronxCare - BL1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10048358-PROD", + "OrganizationName": "Saint Peter’s University Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.BL0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "BronxCare - BL1", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/fhir", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/R4/open-R4", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/Open", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/open", + "OrganizationName": "Saline Memorial Hospital - SA01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ptalfhir.tal.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "Tallahassee Memorial Healthcare - PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128947", + "OrganizationName": "Samaritan Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156895-PROD", - "OrganizationName": "Maria Parham", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128947", + "OrganizationName": "Samaritan Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156895-PROD", - "OrganizationName": "Maria Parham", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/fhir", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159486", - "OrganizationName": "Western Reserve Hospital", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/open", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159486", - "OrganizationName": "Western Reserve Hospital", + "URL": "https://fhir.sng.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10155929-TEST", - "OrganizationName": "Health Alliance of the Hudson Valley Test", + "URL": "https://fhir.sng.hos.allscriptscloud.com/open", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10155929-TEST", - "OrganizationName": "Health Alliance of the Hudson Valley Test", + "URL": "https://fhir.sng.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10156323-TEST", - "OrganizationName": "Bakersfield Heart Hospital Test", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10156323-TEST", - "OrganizationName": "Bakersfield Heart Hospital Test", + "URL": "https://fhir.sng.hos.allscriptscloud.com/fhir", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/open", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://scmprodweb.sng.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "San Gorgonio Memorial Hospital - SNG_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/fhir", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://MobilityMD.smh.com/R4/open-Prod", + "OrganizationName": "Sarasota Memorial Health Care - SCMP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://MobilityMD.smh.com/fhir", + "OrganizationName": "Sarasota Memorial Health Care - SCMP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.jt0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://MobilityMD.smh.com/R4/fhir-Prod", + "OrganizationName": "Sarasota Memorial Health Care - SCMP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10129092-PROD", - "OrganizationName": "New Bridge", + "URL": "https://MobilityMD.smh.com/open", + "OrganizationName": "Sarasota Memorial Health Care - SCMP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10129092-PROD", - "OrganizationName": "New Bridge", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/open", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128970-TEST", - "OrganizationName": "Avanti Hospitals Test", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128970-TEST", - "OrganizationName": "Avanti Hospitals Test", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/R4/open-Prod", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://fhir.ep0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Sheppard Pratt Health System - EP01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/open", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://fhirprod.snch.org/fhir", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/R4/fhir-Prod", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://fhirprod.snch.org/R4/open-Prod", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.methodisthospital.org/fhir", - "OrganizationName": "USC Arcadia Hospital - PROD", + "URL": "https://fhirprod.snch.org/open", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10048358-PROD", - "OrganizationName": "Saint Peter’s University Hospital", + "URL": "https://fhirprod.snch.org/R4/fhir-Prod", + "OrganizationName": "South Nassau Communities Hospital - SN1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10048358-PROD", - "OrganizationName": "Saint Peter’s University Hospital", + "URL": "https://portal.springhill.org/R4/open-Prod", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10151766-PROD", - "OrganizationName": "Columbus Community", + "URL": "https://portal.springhill.org/open", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10151766-PROD", - "OrganizationName": "Columbus Community", + "URL": "https://portal.springhill.org/fhir", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://portal.springhill.org/R4/fhir-Prod", + "OrganizationName": "Springhill Hospitals Inc - SPRINGHILL_PRODUCTION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/open", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://fhirprod.stclair.org/R4/open-Prod", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://fhirprod.stclair.org/open", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ss0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Montefiore New Rochelle Hospital Inc - SS01", + "URL": "https://fhirprod.stclair.org/fhir", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153806", - "OrganizationName": "Oakbend Medical Center", + "URL": "https://fhirprod.stclair.org/R4/fhir-Prod", + "OrganizationName": "St Clair Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153806", - "OrganizationName": "Oakbend Medical Center", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/fhir", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://fhirprodev.asc.hos.allscriptscloud.com/open", + "OrganizationName": "St Vincent Evansville Hospital Inc - EV01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.sa0.hos.allscriptscloud.com/open", - "OrganizationName": "Saline Memorial Hospital - SA01", + "URL": "https://fhirprod.asc.hos.allscriptscloud.com/fhir", + "OrganizationName": "St Vincent Hospital Inc - ST01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/R4/fhir-R4", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhirprod.asc.hos.allscriptscloud.com/open", + "OrganizationName": "St Vincent Hospital Inc - ST01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/Open", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhirprod.asc.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "St Vincent Hospital Inc - ST01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/Fhir", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhirprod.asc.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "St Vincent Hospital Inc - ST01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehr-fhir.piedmonthealthcare.com/R4/open-R4", - "OrganizationName": "Piedmont HealthCare", + "URL": "https://fhir.summithealthcare.net/R4/open-Prod", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/R4/open-Prod", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://fhir.summithealthcare.net/R4/fhir-Prod", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/R4/fhir-Prod", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://fhir.summithealthcare.net/open", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/fhir", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://fhir.summithealthcare.net/fhir", + "OrganizationName": "Summit Healthcare Association - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.hf.org/open", - "OrganizationName": "Health First Shared Services Inc - PROD", + "URL": "https://pso0fhir.so0.allscriptstw.com/R4/fhir-R4", + "OrganizationName": "Summit Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/R4/open-R4", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://pso0fhir.so0.allscriptstw.com/R4/open-R4", + "OrganizationName": "Summit Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/R4/fhir-R4", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://fhir.sny.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/open", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://fhir.sny.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ehrlivefhir.corp.communitycare.com/fhir", - "OrganizationName": "Community Care Physicians, P.C,", + "URL": "https://fhir.sny.hos.allscriptscloud.com/open", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/fhir", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://fhir.sny.hos.allscriptscloud.com/fhir", + "OrganizationName": "SUNY Downstate Medical Center - SNY1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/R4/fhir-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://ptalfhir.tal.allscriptstw.com/fhir", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/open", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://ptalfhir.tal.allscriptstw.com/R4/open-R4", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/R4/fhir-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://ptalfhir.tal.allscriptstw.com/Open", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/R4/open-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://ptalfhir.tal.allscriptstw.com/R4/fhir-R4", + "OrganizationName": "Tallahassee Memorial Healthcare - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ma01ascmshvp.ma0.hos/fhir", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://amarillohealth.ttuhsc.edu/open", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/R4/open-Prod", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://amarillohealth.ttuhsc.edu/fhir", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.mainegeneral.org/open", - "OrganizationName": "MaineGeneral Medical Center - MA1", + "URL": "https://amarillohealth.ttuhsc.edu/R4/fhir-R4", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/open", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://amarillohealth.ttuhsc.edu/R4/open-R4", + "OrganizationName": "Texas Tech University Health Sciences Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/R4/fhir-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://fhir.br0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/R4/open-Prod", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://fhir.br0.hos.allscriptscloud.com/fhir", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.matherhospital.org/fhir", - "OrganizationName": "John T Mather Memorial Hospital - JT1", + "URL": "https://fhir.br0.hos.allscriptscloud.com/open", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10133739", - "OrganizationName": "Auburn Community Hospital", + "URL": "https://fhir.br0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "The Brooklyn Hospital - BR1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10133739", - "OrganizationName": "Auburn Community Hospital", + "URL": "https://tw22fhir.jacksonclinic.com/Fhir", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/fhir", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://tw22fhir.jacksonclinic.com/Open", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/R4/fhir-R4", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://tw22fhir.jacksonclinic.com/R4/open-R4", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/R4/open-R4", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://tw22fhir.jacksonclinic.com/R4/fhir-R4", + "OrganizationName": "The Jackson Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pmdsunity.allscriptscloud.com/open", - "OrganizationName": "PROD Medisync Midwest", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10090707", + "OrganizationName": "Three Rivers Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/open", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10090707", + "OrganizationName": "Three Rivers Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10155897-PROD", + "OrganizationName": "Trios Health (aka RCCH Health Partners)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/fhir", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10155897-PROD", + "OrganizationName": "Trios Health (aka RCCH Health Partners)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pih.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "PIH Health - PIH1", + "URL": "https://fhir.tchealth.org/R4/open-Prod", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/R4/open-R4", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://fhir.tchealth.org/R4/fhir-Prod", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/Fhir", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://fhir.tchealth.org/open", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/R4/fhir-R4", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://fhir.tchealth.org/fhir", + "OrganizationName": "Tuba City Regional Health Care Corporation - PROD_22", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://tw1fhir.hcpnv.com/Open", - "OrganizationName": "Intermountain Medical Holdings Nevada, Inc.", + "URL": "https://twr3devweb2.rd.allscripts.com/fhir-Fhir", + "OrganizationName": "TW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cmhshealth.org/R4/fhir-R4", - "OrganizationName": "Community Memorial Health System", + "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/R2/Open", + "OrganizationName": "TW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.cmhshealth.org/R4/open-R4", - "OrganizationName": "Community Memorial Health System", + "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/FHIR", + "OrganizationName": "TW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/R4/open-R4", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/R2/FHIR", + "OrganizationName": "TW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/R4/fhir-R4", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://twr3devweb2.rd.allscripts.com/R4/open-Fhir", + "OrganizationName": "TW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/fhir", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://twr3devweb2.rd.allscripts.com/R4/fhir-Fhir", + "OrganizationName": "TW", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.pinehurstmedical.com/open", - "OrganizationName": "PineHurst Medical Clinic", + "URL": "https://twr3devweb2.rd.allscripts.com/https://twr3devweb2.rd.allscripts.com/Open", + "OrganizationName": "TW", "NPIID": "", "OrganizationZipCode": "" }, @@ -4141,398 +3739,410 @@ "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "MaineGeneral Health", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10158422-PROD", + "OrganizationName": "Twin County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/R4/open-R4", - "OrganizationName": "MaineGeneral Health", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10158422-PROD", + "OrganizationName": "Twin County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://twfhirweb1.rd.allscripts.com/R4/fhir-TWProd", + "OrganizationName": "TWProd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://twfhir.uasomh.uab.edu/R4/open-R4", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/Fhir", - "OrganizationName": "MaineGeneral Health", + "URL": "https://twfhir.uasomh.uab.edu/R4/fhir-R4", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pma0fhir.ma0.allscriptstw.com/Open", - "OrganizationName": "MaineGeneral Health", + "URL": "https://twfhir.uasomh.uab.edu/open", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159197", - "OrganizationName": "Jackson Hospital \u0026 Clinic", + "URL": "https://twfhir.uasomh.uab.edu/fhir", + "OrganizationName": "UAB Huntsville Regional Medical Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159197", - "OrganizationName": "Jackson Hospital \u0026 Clinic", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10127856", + "OrganizationName": "United Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/R4/fhir-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10127856", + "OrganizationName": "United Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/open-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://uhcfhir01.unityhc.com/open", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/R4/open-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://uhcfhir01.unityhc.com/fhir", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.ggclinic.com/fhir-R4", - "OrganizationName": "Graves Gilbert", + "URL": "https://uhcfhir01.unityhc.com/R4/fhir-R4", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/open", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://uhcfhir01.unityhc.com/R4/open-R4", + "OrganizationName": "UNITY HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/fhir", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10128916", + "OrganizationName": "UPMC Somerset", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/R4/fhir-R4", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10128916", + "OrganizationName": "UPMC Somerset", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amarillohealth.ttuhsc.edu/R4/open-R4", - "OrganizationName": "Texas Tech University Health Sciences Center", + "URL": "https://charts.uropartners.com/R4/open-R4", + "OrganizationName": "UroPartners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wise - WE01", + "URL": "https://charts.uropartners.com/R4/fhir-R4", + "OrganizationName": "UroPartners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wise - WE01", + "URL": "https://charts.uropartners.com/open", + "OrganizationName": "UroPartners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159336", - "OrganizationName": "Common Spirit", + "URL": "https://charts.uropartners.com/fhir", + "OrganizationName": "UroPartners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159336", - "OrganizationName": "Common Spirit", + "URL": "https://fhir.methodisthospital.org/R4/open-Prod", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10001613-PROD", - "OrganizationName": "Baton Rouge", + "URL": "https://fhir.methodisthospital.org/open", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10001613-PROD", - "OrganizationName": "Baton Rouge", + "URL": "https://fhir.methodisthospital.org/R4/fhir-Prod", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159345", - "OrganizationName": "Waverly Health Center", + "URL": "https://fhir.methodisthospital.org/fhir", + "OrganizationName": "USC Arcadia Hospital - PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159345", - "OrganizationName": "Waverly Health Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10131752", + "OrganizationName": "Valley County Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10127856", - "OrganizationName": "United Surgeons", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10131752", + "OrganizationName": "Valley County Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10127856", - "OrganizationName": "United Surgeons", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10131752-TEST", + "OrganizationName": "Valley County Health System Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/R4/open-Prod", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10131752-TEST", + "OrganizationName": "Valley County Health System Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/open", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", + "URL": "https://tw181unityfhir.open.allscripts.com/R4/fhir-veradigmtwr4", + "OrganizationName": "Veradigm Connect TW R4", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/fhir", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", + "URL": "https://tw181unityfhir.open.allscripts.com/R4/open-veradigmtwr4", + "OrganizationName": "Veradigm Connect TW R4", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://FHIRPROD.jrmc.org/R4/fhir-Prod", - "OrganizationName": "Jefferson Regional Medical Center - XAProduction", + "URL": "https://fhirprod.whs.org/R4/fhir-Prod", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirt.amc.edu/R4/open-R4", - "OrganizationName": "Albany Med Health System - Test", + "URL": "https://fhirprod.whs.org/open", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ahsfhirt.amc.edu/R4/fhir-R4", - "OrganizationName": "Albany Med Health System - Test", + "URL": "https://fhirprod.whs.org/R4/open-Prod", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10151767-TEST", - "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH Test", + "URL": "https://fhirprod.whs.org/fhir", + "OrganizationName": "Washington Health System - WH01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10151767-TEST", - "OrganizationName": "Central Louisiana Ambulatory Surgical - CLASH Test", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159345", + "OrganizationName": "Waverly Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10153750", - "OrganizationName": "Gritman Medical Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159345", + "OrganizationName": "Waverly Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10153750", - "OrganizationName": "Gritman Medical Center", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10152760", + "OrganizationName": "Wayne Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10014166-PROD", - "OrganizationName": "Harris Regional", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10152760", + "OrganizationName": "Wayne Memorial Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10014166", - "OrganizationName": "Harris Regional", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10014166", - "OrganizationName": "Harris Regional", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10014166-PROD", - "OrganizationName": "Harris Regional", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.WM0.hos.allscriptscloud.com/open", + "OrganizationName": "Wayne Memorial Hospital - WM_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/open", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10034411", + "OrganizationName": "West Calcasieu Cameron Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10034411", + "OrganizationName": "West Calcasieu Cameron Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://scmprodweb.jsh.hos.allscriptscloud.com/fhir", - "OrganizationName": "Jennie Stuart Medical Center - JSH_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10159486", + "OrganizationName": "Western Reserve Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/open", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10159486", + "OrganizationName": "Western Reserve Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/R4/open-R4", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/open", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/R4/fhir-R4", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://fhir.wnj.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.mmclinic.com/fhir", - "OrganizationName": "Murfreesboro Medical Clinic", + "URL": "https://fhir.wnj.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/R4/open-R4", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/R4/fhir-R4", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://fhir.wnj.hos.allscriptscloud.com/open", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/open", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://fhir.wnj.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://twfhir.uasomh.uab.edu/fhir", - "OrganizationName": "UAB Huntsville Regional Medical Campus", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/fhir", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/open", - "OrganizationName": "Ortho Indy", + "URL": "https://scmprodweb.wnj.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Wilson N Jones Regional Medical Center - WNJ_PROD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/R4/fhir-R4", - "OrganizationName": "Ortho Indy", + "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-Prod", + "OrganizationName": "Wise - WE01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/fhir", - "OrganizationName": "Ortho Indy", + "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-Prod", + "OrganizationName": "Wise - WE01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.orthoindy.com/R4/open-R4", - "OrganizationName": "Ortho Indy", + "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/open-PROD", + "OrganizationName": "Wise Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10132739-TEST", - "OrganizationName": "York General Test", + "URL": "https://fhir.we0.hos.allscriptscloud.com/Fhir", + "OrganizationName": "Wise Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10132739-TEST", - "OrganizationName": "York General Test", + "URL": "https://fhir.we0.hos.allscriptscloud.com/R4/fhir-PROD", + "OrganizationName": "Wise Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/open", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhir.we0.hos.allscriptscloud.com/Open", + "OrganizationName": "Wise Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/R4/open-Prod", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhir.we0.hos.allscriptscloud.com/FHIR", + "OrganizationName": "Wise Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/fhir", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhirprod.wyckoffhospital.org/R4/fhir-Prod", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhirprod.numc.edu/R4/fhir-Prod", - "OrganizationName": "Nassau Health Care Corporation - NU1", + "URL": "https://fhirprod.wyckoffhospital.org/R4/open-Prod", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/R4/fhir-Prod", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://fhirprod.wyckoffhospital.org/fhir", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/fhir", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://fhirprod.wyckoffhospital.org/open", + "OrganizationName": "Wyckoff Heights Medical Center - WO01", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/R4/open-Prod", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10158650-PROD", + "OrganizationName": "York (Maine)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.WM0.hos.allscriptscloud.com/open", - "OrganizationName": "Wayne Memorial Hospital - WM_PROD", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10158650-PROD", + "OrganizationName": "York (Maine)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pnytfhir.nyt.allscriptstw.com/R4/fhir-R4", - "OrganizationName": "Nystrom \u0026 Assoc, Ltd.", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10132739-TEST", + "OrganizationName": "York General Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pnytfhir.nyt.allscriptstw.com/R4/open-R4", - "OrganizationName": "Nystrom \u0026 Assoc, Ltd.", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10132739-TEST", + "OrganizationName": "York General Test", "NPIID": "", "OrganizationZipCode": "" } diff --git a/resources/prod_resources/AthenaClinicals_EndpointSources.json b/resources/prod_resources/AthenaClinicals_EndpointSources.json index eaba75ed6..6074d0a77 100644 --- a/resources/prod_resources/AthenaClinicals_EndpointSources.json +++ b/resources/prod_resources/AthenaClinicals_EndpointSources.json @@ -5556,12 +5556,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Appalachian Family Practice, P.A.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CT - Greenwich Pediatric Associates, LLC", @@ -18660,12 +18654,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Copiah County Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Poverello Center, Inc", @@ -22506,6 +22494,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OrthoTexas", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Orthopedic Associates", @@ -24366,12 +24360,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Surgeon's Choice Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "GA - Elite Family Practice", @@ -30558,12 +30546,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_DEL", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_DFW", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_FGS", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_FLR", @@ -30582,6 +30582,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_NJY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_NPV", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_NV", @@ -30594,6 +30606,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_ORG", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_SF", @@ -61490,7 +61508,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Dawson Med", + "OrganizationName": "Dawson Med", "NPIID": "", "OrganizationZipCode": "" }, @@ -70620,6 +70638,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Azar A. Korbey, M.D., P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "PRACTICALLY PERFECT PHYSICAL THERAPY CONSULTING LLC", @@ -70956,6 +70980,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CORE GERIATRIC MEDICAL GROUP INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - Saim Choudhry", @@ -75798,12 +75828,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Charles City Medical Group, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - CSRA Renal Services", @@ -76074,6 +76098,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Vivian DeNise Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Garden City Center for Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - BACAS Pain Management", @@ -76878,6 +76914,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - GetWell Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - GROSSMAN, COLBY", @@ -77520,6 +77562,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pinellas Eye Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Kimberly Benton, MD PC", @@ -77796,6 +77844,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GARCIA HEART AND VASCULAR PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NORTH MISSISSIPPI PRIMARY HEALTH CARE", @@ -79062,6 +79116,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Regain Therapy Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Guiding Light Psychiatry PLLC", @@ -79200,6 +79260,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Behavioral Health of Delaware", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Behavioral Solutions", @@ -79218,6 +79284,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family Counseling Associates of New Hampshire", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "J Snyder Therapeutic Services of Pennsylvania", @@ -79232,7 +79304,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mindful Changes of Pennsylvania", + "OrganizationName": "Mindful Changes Counseling of Pennsylvania", "NPIID": "", "OrganizationZipCode": "" }, @@ -79244,7 +79316,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Psychological Healthcare", + "OrganizationName": "Psychiatry Services of New York", "NPIID": "", "OrganizationZipCode": "" }, @@ -79256,25 +79328,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RICBT", + "OrganizationName": "RICBT Rhode Island", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Relationship Resolutions - PA", + "OrganizationName": "Relationship Resolutions, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Springfield Behavioral of Pennsylvania", + "OrganizationName": "Spring Behavioral Health of NJ", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Springfield Psychological", + "OrganizationName": "Springfield Behavioral of Pennsylvania", "NPIID": "", "OrganizationZipCode": "" }, @@ -79284,6 +79356,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tides of Mind Counseling of Rhode Island", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NC - Carolina Prime Internal Medicine", @@ -79788,6 +79866,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Commonwealth Pain \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "IN - St Anthony's Free Clinic", @@ -80124,6 +80208,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Day Kimball Healthcare Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - Palmetto Health", @@ -80556,6 +80646,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Eaton Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AR - WENDY SPANOS, M.D., P.A.", @@ -80724,6 +80820,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Mountain Trail Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Naples Neuro care", @@ -80886,6 +80988,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Dr Damian Dieter DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "The Vascular Care Group", @@ -80922,6 +81030,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Gerald Gibbons MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NC - Tandem Primary Care", @@ -81032,7 +81146,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Mehdi Tajouri, MD", + "OrganizationName": "MO - Springfield Psychiatry \u0026 Addiction", "NPIID": "", "OrganizationZipCode": "" }, @@ -81222,6 +81336,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WELLSPRING PHYSICIAN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - SAMUEL D CRITIDES JR MD PA", @@ -81444,6 +81564,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunshine Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - FAST ACCESS HEALTHCARE, PLLC", @@ -81462,6 +81588,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - George Mason University Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MO - CENTRAL WEST HEALTHCARE", @@ -81486,6 +81618,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Neurology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Advanced Kidney Care of North Texas", @@ -81534,6 +81672,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Sanitas Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AL - Juanita Heersink", @@ -81546,6 +81690,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pulmonary \u0026 Sleep Associates of SFL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pulmonary \u0026 Sleep Associates of South Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "VT - Partners In Integrative Healing", @@ -81648,6 +81804,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - EDM Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Step Up Sports Medicine", @@ -81804,6 +81966,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Affinity Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "IN - Michael H Fritsch, MD", @@ -81948,6 +82116,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - HELPS Clinic and Resource Center In", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Grapeland Urgent Care", @@ -82016,7 +82190,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - DAY KIMBALL HEALTHCARE INC", + "OrganizationName": "Day Kimball Behavioral health", "NPIID": "", "OrganizationZipCode": "" }, @@ -82086,6 +82260,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Scott Baker", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - George J Ayyad MD", @@ -82182,6 +82362,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Posterity Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Compass Pointe Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WA - LOVING HEART P.L.L.C.", @@ -82304,7 +82496,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - FRESH START PRIMARY CARE CHARTERED", + "OrganizationName": "Fresh Start Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -82320,12 +82512,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Exhort Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - North Valley Surgical Associates, I", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CENTERED YOUTH CLINIC AND CONSULTI", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - Babylon Village Medical Assoc. LLC", @@ -82356,6 +82560,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alvaro I Martinez Jr MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - Micky L. Busby, M.D", @@ -82458,6 +82668,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - BRIAN MAYRSOHN, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - DAISY HOLISTICARE, LLC", @@ -82494,12 +82710,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CR WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MOBILE ANESTHESIA ASSOCIATES, LLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - FEMGEVITY OF NEW JERSEY, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Merced Faculty Associates", @@ -84540,6 +84768,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Unio Specialty Care - URO", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Valley Gastroenterology Consultants", @@ -85824,12 +86058,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Columbia Basin Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Homestead Pediatric Associates, Inc", @@ -92660,7 +92888,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Mary Kathleen W. DiTursi, M.D., P.C", + "OrganizationName": "NY - Marius Killian N DiTursi MD PC", "NPIID": "", "OrganizationZipCode": "" }, diff --git a/resources/prod_resources/Azalea_Health_EndpointSources.json b/resources/prod_resources/Azalea_Health_EndpointSources.json index 01fcd3da2..2a3d4fa0c 100644 --- a/resources/prod_resources/Azalea_Health_EndpointSources.json +++ b/resources/prod_resources/Azalea_Health_EndpointSources.json @@ -540,6 +540,12 @@ "NPIID": "", "OrganizationZipCode": "33714" }, + { + "URL": "https://app.azaleahealth.com/fhir/R4/142519", + "OrganizationName": "ABRAHAM ESKENAZI MD", + "NPIID": "", + "OrganizationZipCode": "92117-6151" + }, { "URL": "https://app.azaleahealth.com/fhir/R4/140771", "OrganizationName": "ABSECON ISLAND INTERNAL MEDICINE", @@ -576,6 +582,12 @@ "NPIID": "", "OrganizationZipCode": "19020-5364" }, + { + "URL": "https://app.azaleahealth.com/fhir/R4/142492", + "OrganizationName": "ACCEL REHABILITATION AND WOUND CONSULTAN", + "NPIID": "", + "OrganizationZipCode": "17857-0175" + }, { "URL": "https://app.azaleahealth.com/fhir/R4/141867", "OrganizationName": "ACCELERATE BEHAVIOR INTERNATIONAL", @@ -587,18 +599,6 @@ "OrganizationName": "ACCESS CHARTER SCHOOL", "NPIID": "", "OrganizationZipCode": "32810" - }, - { - "URL": "https://app.azaleahealth.com/fhir/R4/141286", - "OrganizationName": "ACCESS EYE INSTITUTE", - "NPIID": "", - "OrganizationZipCode": "91361-3069" - }, - { - "URL": "https://app.azaleahealth.com/fhir/R4/140877", - "OrganizationName": "ACCESS GASTROENTEROLOGY, INC", - "NPIID": "", - "OrganizationZipCode": "30458-1699" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Bridge_Patient_Portal_Inc_EndpointSources.json b/resources/prod_resources/Bridge_Patient_Portal_Inc_EndpointSources.json index a3505f761..51e552a60 100644 --- a/resources/prod_resources/Bridge_Patient_Portal_Inc_EndpointSources.json +++ b/resources/prod_resources/Bridge_Patient_Portal_Inc_EndpointSources.json @@ -3,7 +3,8 @@ { "URL": "https://appcert.api.playground.bridgepatientportal.com/fhir/r4/", "OrganizationName": "", - "NPIID": "" + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/CHPLEndpointResourcesList.json b/resources/prod_resources/CHPLEndpointResourcesList.json index b5a450b69..e00bfd38f 100644 --- a/resources/prod_resources/CHPLEndpointResourcesList.json +++ b/resources/prod_resources/CHPLEndpointResourcesList.json @@ -1,136 +1,118 @@ [ { "FormatType": "Lantern", - "URL": "https://open.platform.veradigm.com/fhirendpoints", - "EndpointName": "Veradigm", - "FileName": "Veradigm_EndpointSources.json" + "URL": "https://apidocs.onemedical.io/fhir/overview/", + "EndpointName": "1Life Healthcare, Inc", + "FileName": "1Life_Healthcare_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://docs.canvasmedical.com/api/service-base-urls/", - "EndpointName": "CanvasMedical", - "FileName": "CanvasMedical_EndpointSources.json" + "URL": "https://smartemr.readme.io/reference/getting-started#base-url", + "EndpointName": "VIPA Health Solutions, LLC", + "FileName": "VIPA_Health_Solutions_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", - "EndpointName": "AthenaClinicals", - "FileName": "AthenaClinicals_EndpointSources.json" + "URL": "https://varian.dynamicfhir.com/", + "EndpointName": "Varian Medical Systems", + "FileName": "Varian_Medical_Systems_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://mmdpcf.modulemd.com/cf.fhir.r4", - "EndpointName": "ModuleMD WISE", - "FileName": "ModuleMD_Wise_EndpointSources.json" + "URL": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp", + "EndpointName": "ASP.MD Inc.", + "FileName": "ASPMD_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://carepaths.com/uploads/org_endpoint_bundle.json", - "EndpointName": "CarePaths EHR", - "FileName": "Carepaths_EHR_EndpointSources.json" + "URL": "https://fhir.footholdtechnology.com/endpoints", + "EndpointName": "Foothold Technology, Inc.", + "FileName": "Foothold_Technology_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", - "EndpointName": "Tenzing Medical LLC", - "FileName": "Tenzing_Medical_LLC_EndpointSources.json" + "URL": "https://apifhir.axeium.net:8443/reference-server/", + "EndpointName": "Brilogy Corporation", + "FileName": "Brilogy_Corporation_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://www.medent.com/std_api/ServiceBaseURL.csv", - "EndpointName": "MEDENT - Community Computer Service, Inc.", - "FileName": "MEDENT_Community_Computer_Service_Inc_EndpointSources.json" + "URL": "https://developer.advancedmd.com/fhir/base-urls", + "EndpointName": "AdvancedMD", + "FileName": "AdvancedMD_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", - "EndpointName": "Nexus Clinical LLC", - "FileName": "Nexus_Clinical_LLC_EndpointSources.json" + "URL": "http://agastha.com/production-links.html", + "EndpointName": "Agastha, Inc.", + "FileName": "Agastha_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", - "EndpointName": "MPN Software Systems, Inc.", - "FileName": "MPN_Software_Systems_Inc_EndpointSources.json" + "URL": "https://smartbox.aidbox.app/service-base-urls", + "EndpointName": "Health Samurai, Inc.", + "FileName": "Health_Samurai_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://smart.mdsuite.com/Endpoints", - "EndpointName": "Azalea Health", - "FileName": "Azalea_Health_2_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", - "EndpointName": "Health Innovation Technologies, Inc.", - "FileName": "Health_Innovation_Technologies_Inc_EndpointSources.json" + "URL": "https://cmpl.aidbox.app/smart", + "EndpointName": "Health Samurai, Inc.", + "FileName": "Health_Samurai_Inc_1_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", - "EndpointName": "iSALUS Healthcare", - "FileName": "iSALUS_Healthcare_EndpointSources.json" + "URL": "https://altheafhir.mdsynergy.com", + "EndpointName": "MD Synergy Solutions, LLC", + "FileName": "MD_Synergy_Solutions_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://micromddev.dynamicfhir.com/fhir/r4/endpoints", - "EndpointName": "Henry Schein Medical Systems", - "FileName": "Henry_Schein_Medical_Systems_EndpointSources.json" + "URL": "https://hag-fhir.amazingcharts.com/ac/endpoints", + "EndpointName": "CareTracker, Inc.", + "FileName": "CareTracker_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", - "EndpointName": "TenEleven Group", - "FileName": "TenEleven_Group_EndpointSources.json" + "URL": "https://astronautehr.com/index.php/fhir-base-urls/", + "EndpointName": "Astronaut, LLC", + "FileName": "Astronaut_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", - "EndpointName": "Procentive", - "FileName": "Procentive_EndpointSources.json" + "URL": "https://fhir.pai.healthcare/documentation/endpoints.htm", + "EndpointName": "Practice Alternatives, Inc.", + "FileName": "Practice_Alternatives_Inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", - "EndpointName": "Streamline Healthcare Solutions", - "FileName": "Streamline_Healthcare_Solutions_EndpointSources.json" + "URL": "https://fhir-api.hmsfirst.com/r4/EndPoints", + "EndpointName": "Health Information Management Systems, LLC", + "FileName": "Health_Information_Management_Systems_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", - "EndpointName": "drchrono Inc.", - "FileName": "drchrono_Inc_EndpointSources.json" + "URL": "https://app.azaleahealth.com/fhir/R4/Endpoint", + "EndpointName": "Azalea Health", + "FileName": "Azalea_Health_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", - "EndpointName": "VisionWeb", - "FileName": "VisionWeb_EndpointSources.json" + "URL": "https://portal.ezcaretech.com:30112/baseUrls", + "EndpointName": "ezCaretech Co., Ltd.", + "FileName": "ezCaretech_Co_Ltd_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://ehifire.ehiconnect.com/fhir/r4/endpoints", - "EndpointName": "Enable Healthcare Inc.", - "FileName": "Enable_Healthcare_Inc_EndpointSources.json" + "URL": "https://www.braintreehealth.com/braintree-onc-certification-2015/", + "EndpointName": "Braintree Health", + "FileName": "Braintree_Health_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/Perform+ConnectServerEndpoints.json", - "EndpointName": "CitiusTech, Inc.", - "FileName": "CitiusTech_Inc_EndpointSources.json" + "URL": "https://prognocis.com/fhir/index.html", + "EndpointName": "Benchmark Systems", + "FileName": "Benchmark_Systems_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://api.medconnecthealth.com/fhir/r4/endpoints", - "EndpointName": "MedConnect, Inc.", - "FileName": "MedConnect_Inc_EndpointSources.json" - }, - { - "FormatType": "Lantern", - "URL": "https://app-52512.on-aptible.com/service-base-urls", - "EndpointName": "Healthie", - "FileName": "Healthie_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://betterdayhealth.net/fhir-docs", @@ -155,6 +137,18 @@ "EndpointName": "Bridge Patient Portal Inc.", "FileName": "Bridge_Patient_Portal_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://broadstreetcare.com/docs", + "EndpointName": "BroadStreet Health LLC", + "FileName": "BroadStreet_Health_LLC_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "http://ehealthline.com/dev/pdf/FHIR%20API%20Endpoints.htm", + "EndpointName": "E*HealthLine.com, Inc.", + "FileName": "EHealthLinecom_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://identity.emdscloud.com/api/api-resource/fhir", @@ -169,7 +163,7 @@ }, { "FormatType": "Lantern", - "URL": "https://docs.canvasmedical.com/reference/service-base-urls", + "URL": "https://docs.canvasmedical.com/api/service-base-urls/", "EndpointName": "Canvas Medical, Inc.", "FileName": "Canvas_Medical_Inc_EndpointSources.json" }, @@ -187,13 +181,13 @@ }, { "FormatType": "Lantern", - "URL": "https://qualifacts.com/api-documentation/", + "URL": "https://qualifacts.com/api-page/_downloads/carelogic-fhir-org-list.json", "EndpointName": "Qualifacts Systems, LLC", "FileName": "Qualifacts_Systems_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://carepaths.com/api_documentation/", + "URL": "https://carepaths.com/uploads/org_endpoint_bundle.json", "EndpointName": "Carepaths Inc", "FileName": "Carepaths_Inc_EndpointSources.json" }, @@ -241,10 +235,16 @@ }, { "FormatType": "Lantern", - "URL": "https://sabiamed.com/api-endpoints", + "URL": "https://www.sabiamed.com/api-endpoints", "EndpointName": "Sabiamed Corporation", "FileName": "Sabiamed_Corporation_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf", + "EndpointName": "CliniComp, Intl.", + "FileName": "CliniComp_Intl_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.goldblattsystems.com/apis", @@ -259,7 +259,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir-dev.cloudmd365.com/api", + "URL": "https://fhir-dev.cloudmd365.com/api/v1/.well-known/smart-configuration", "EndpointName": "Softbir, Inc.", "FileName": "Softbir_Inc_EndpointSources.json" }, @@ -290,8 +290,8 @@ { "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", - "EndpointName": "Credible Behavioral Health, Inc.", - "FileName": "Credible_Behavioral_Health_Inc_EndpointSources.json" + "EndpointName": "Qualifacts Systems, LLC", + "FileName": "Qualifacts_Systems_LLC_1_EndpointSources.json" }, { "FormatType": "Lantern", @@ -307,7 +307,7 @@ }, { "FormatType": "Lantern", - "URL": "https://www.curemd.com/developer/base-fhir-urls", + "URL": "https://www.curemd.com/developer/base-fhir-urls/", "EndpointName": "CureMD.com, Inc.", "FileName": "CureMDcom_Inc_EndpointSources.json" }, @@ -337,7 +337,7 @@ }, { "FormatType": "Lantern", - "URL": "https://drcloudemr.com/drcloudehr-api-documentation/", + "URL": "https://drcloudehr.com/drcloudehr-api-documentation/", "EndpointName": "EnSoftek, Inc", "FileName": "EnSoftek_Inc_EndpointSources.json" }, @@ -347,6 +347,18 @@ "EndpointName": "Keiser Computers, Inc.", "FileName": "Keiser_Computers_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", + "EndpointName": "MPN Software Systems, Inc.", + "FileName": "MPN_Software_Systems_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://interop.ehnote.com/fhir", + "EndpointName": "EHNOTE,INC", + "FileName": "EHNOTEINC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://fhirpt-stage.officeally.com/fhir/r4/endpoints", @@ -365,6 +377,12 @@ "EndpointName": "Modernizing Medicine", "FileName": "Modernizing_Medicine_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", + "EndpointName": "The Echo Group", + "FileName": "The_Echo_Group_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://elationfhir.readme.io/reference/service-base-urls", @@ -404,8 +422,8 @@ { "FormatType": "Lantern", "URL": "https://docs.fire.ly/projects/Firely-Server/en/latest/_static/g10/EndpointBundleFirely.json", - "EndpointName": "Firely B.V.", - "FileName": "Firely_BV_EndpointSources.json" + "EndpointName": "Firely USA Inc.", + "FileName": "Firely_USA_Inc_EndpointSources.json" }, { "FormatType": "Lantern", @@ -455,12 +473,24 @@ "EndpointName": "Greenway Health, LLC", "FileName": "Greenway_Health_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api/Endpoint?connection-type=hl7-fhir-rest", + "EndpointName": "Health Care Systems, Inc.", + "FileName": "Health_Care_Systems_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://hag-fhir.amazingcharts.com/ct/endpoints", "EndpointName": "Harris CareTracker, Inc", "FileName": "Harris_CareTracker_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://app-52512.on-aptible.com/service-base-urls", + "EndpointName": "Healthie", + "FileName": "Healthie_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://amsemr.com/endpoints/", @@ -469,7 +499,13 @@ }, { "FormatType": "Lantern", - "URL": "HTTPS://INPRACSYS.COM/FHIR", + "URL": "https://www.ipclinical.com/mu-disclosure.html", + "EndpointName": "Physicians EMR, LLC", + "FileName": "Physicians_EMR_LLC_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://inpracsys.com/fhir", "EndpointName": "InPracSys", "FileName": "InPracSys_EndpointSources.json" }, @@ -477,7 +513,7 @@ "FormatType": "Lantern", "URL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", "EndpointName": "Qualifacts Systems, LLC", - "FileName": "Qualifacts_Systems_LLC_1_EndpointSources.json" + "FileName": "Qualifacts_Systems_LLC_2_EndpointSources.json" }, { "FormatType": "Lantern", @@ -523,13 +559,19 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", - "EndpointName": "Tebra Technologies, Inc.", - "FileName": "Tebra_Technologies_Inc_EndpointSources.json" + "URL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_1_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://docs.kodjin.com/service-base-urls", + "URL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "EndpointName": "DSS, Inc.", + "FileName": "DSS_Inc_2_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://docs.kodjin.com/service-base-urls/", "EndpointName": "EDENLAB OÜ", "FileName": "EDENLAB_O_EndpointSources.json" }, @@ -541,7 +583,7 @@ }, { "FormatType": "Lantern", - "URL": "https://connect-demo.mdops.com/mdlogsdk/fhir/apiDocumentation.html#tag/Auth", + "URL": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html", "EndpointName": "MDOps Corporation", "FileName": "MDOps_Corporation_EndpointSources.json" }, @@ -563,6 +605,12 @@ "EndpointName": "Enable Healthcare Inc.", "FileName": "Enable_Healthcare_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.medent.com/std_api/ServiceBaseURL.csv", + "EndpointName": "MEDENT - Community Computer Service, Inc.", + "FileName": "MEDENT_Community_Computer_Service_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://api.mhdi10xasayd.com/medhost-developer-composition/v1/fhir-base-urls.json", @@ -593,6 +641,18 @@ "EndpointName": "First Insight Corporation", "FileName": "First_Insight_Corporation_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://documents.maximus.care", + "EndpointName": "MaxRemind Inc", + "FileName": "MaxRemind_Inc_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://fhir.mhealthaz.com", + "EndpointName": "MedAZ.Net, LLC", + "FileName": "MedAZNet_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://api.medconnecthealth.com/fhir/r4/endpoints", @@ -647,6 +707,12 @@ "EndpointName": "Medplum", "FileName": "Medplum_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://micromddev.dynamicfhir.com/fhir/r4/endpoints", + "EndpointName": "Henry Schein Medical Systems", + "FileName": "Henry_Schein_Medical_Systems_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://github.com/cerner/ignite-endpoints", @@ -656,12 +722,12 @@ { "FormatType": "Lantern", "URL": "https://www.mphrx.com/fhir-service-base-url-directory/", - "EndpointName": "My Personal Health Records Express Inc. d/b/a MphRx", - "FileName": "My_Personal_Health_Records_Express_Inc_dba_MphRx_EndpointSources.json" + "EndpointName": "agilon health inc.", + "FileName": "agilon_health_inc_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://mmdcf.modulemd.com/cf.fhir.r4", + "URL": "https://mmdpcf.modulemd.com/cf.fhir.r4", "EndpointName": "ModuleMD", "FileName": "ModuleMD_EndpointSources.json" }, @@ -701,6 +767,12 @@ "EndpointName": "Nextech", "FileName": "Nextech_1_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", + "EndpointName": "Nexus Clinical LLC", + "FileName": "Nexus_Clinical_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.novomedici.com/api-documents/", @@ -715,10 +787,16 @@ }, { "FormatType": "Lantern", - "URL": "https://atlas-docs-dev.patientmedrecords.com/endpoints", + "URL": "https://fhir-documentation.patientmedrecords.com/endpoints", "EndpointName": "Office Practicum", "FileName": "Office_Practicum_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", + "EndpointName": "iSALUS Healthcare", + "FileName": "iSALUS_Healthcare_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://fhirregistration.omnimd.com/#/specification", @@ -731,6 +809,12 @@ "EndpointName": "Flatiron Health", "FileName": "Flatiron_Health_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://www.medonehp.com/wp-content/uploads/2023/11/fhir-base-urls.csv", + "EndpointName": "MedOne Healthcare Partners", + "FileName": "MedOne_Healthcare_Partners_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://onetouchemr.com/onetouchemr_fhir_api.csv", @@ -767,6 +851,12 @@ "EndpointName": "PCIS GOLD", "FileName": "PCIS_GOLD_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://smart.mdsuite.com/Endpoints", + "EndpointName": "Azalea Health", + "FileName": "Azalea_Health_2_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/Perform+ConnectServerEndpoints.json", @@ -805,10 +895,22 @@ }, { "FormatType": "Lantern", - "URL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", + "URL": "https://www.willowgladetechnologies.com/requirements", + "EndpointName": "Willowglade Technologies Corporation", + "FileName": "Willowglade_Technologies_Corporation_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://mraemr.com:47102/api/FHIR_Service_URLs.asp", "EndpointName": "MD Charts, LLC", "FileName": "MD_Charts_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", + "EndpointName": "MD Charts, LLC", + "FileName": "MD_Charts_LLC_1_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://hag-fhir.amazingcharts.com/pc/endpoints", @@ -845,6 +947,12 @@ "EndpointName": "Infor-Med Medical Information Systems Inc.", "FileName": "InforMed_Medical_Information_Systems_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", + "EndpointName": "Procentive", + "FileName": "Procentive_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://hag-fhir.amazingcharts.com/pl/endpoints", @@ -893,6 +1001,12 @@ "EndpointName": "Indian Health Service", "FileName": "Indian_Health_Service_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", + "EndpointName": "Health Innovation Technologies, Inc.", + "FileName": "Health_Innovation_Technologies_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", @@ -911,6 +1025,12 @@ "EndpointName": "Genensys LLC", "FileName": "Genensys_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "EndpointName": "Streamline Healthcare Solutions", + "FileName": "Streamline_Healthcare_Solutions_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", @@ -929,12 +1049,24 @@ "EndpointName": "SolidPractice Technologies, LLC", "FileName": "SolidPractice_Technologies_LLC_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.practicegateway.net/smart", + "EndpointName": "Sophrona Solutions, Inc.", + "FileName": "Sophrona_Solutions_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.correctek.com/cost-disclosure-and-transparency/", "EndpointName": "CorrecTek", "FileName": "CorrecTek_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-fhir-base-urls.csv", + "EndpointName": "Strateq Health, Inc.", + "FileName": "Strateq_Health_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://patientportal.streamlinemd.com/FHIRReg/Practice%20Service%20based%20URL%20List.csv", @@ -959,18 +1091,36 @@ "EndpointName": "Ulrich Medical Concepts", "FileName": "Ulrich_Medical_Concepts_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", + "EndpointName": "Tebra Technologies, Inc.", + "FileName": "Tebra_Technologies_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://devportal.techcareehr.com/Help/", "EndpointName": "NaphCare, Inc.", "FileName": "NaphCare_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", + "EndpointName": "Tenzing Medical LLC", + "FileName": "Tenzing_Medical_LLC_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html", "EndpointName": "TriMed Technologies", "FileName": "TriMed_Technologies_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://usmon.com/USMON-FHIRServerURLs.csv", + "EndpointName": "US Monitoring, Inc.", + "FileName": "US_Monitoring_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", @@ -983,6 +1133,12 @@ "EndpointName": "Universal EHR, Inc.", "FileName": "Universal_EHR_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", + "EndpointName": "VisionWeb", + "FileName": "VisionWeb_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", @@ -997,15 +1153,21 @@ }, { "FormatType": "Lantern", - "URL": "https://www.vision-works.com/cert/FHIR", - "EndpointName": "Vision Works, Inc.", - "FileName": "Vision_Works_Inc_EndpointSources.json" + "URL": "https://open.platform.veradigm.com/fhirendpoints", + "EndpointName": "Veradigm", + "FileName": "Veradigm_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", - "EndpointName": "The Echo Group", - "FileName": "The_Echo_Group_EndpointSources.json" + "URL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", + "EndpointName": "VersaSuite", + "FileName": "VersaSuite_EndpointSources.json" + }, + { + "FormatType": "Lantern", + "URL": "https://www.vision-works.com/cert/FHIR", + "EndpointName": "Vision Works, Inc.", + "FileName": "Vision_Works_Inc_EndpointSources.json" }, { "FormatType": "Lantern", @@ -1027,16 +1189,10 @@ }, { "FormatType": "Lantern", - "URL": "https://mu3test.welligent.com/fhir/r4/endpoints", + "URL": "https://fhir.qa.welligent.com/", "EndpointName": "Welligent, Part of the ContinuumCloud", "FileName": "Welligent_Part_of_the_ContinuumCloud_EndpointSources.json" }, - { - "FormatType": "Lantern", - "URL": "https://sfp-nhfhirdevproxy.azurewebsites.net/fhir/metadata", - "EndpointName": "RestorixHealth", - "FileName": "RestorixHealth_EndpointSources.json" - }, { "FormatType": "Lantern", "URL": "https://zoobooksystems.com/api-documentation/", @@ -1045,7 +1201,7 @@ }, { "FormatType": "Lantern", - "URL": "https://docs.athenahealth.com/api/base-fhir-urls", + "URL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", "EndpointName": "athenahealth, Inc.", "FileName": "athenahealth_Inc_EndpointSources.json" }, @@ -1055,6 +1211,12 @@ "EndpointName": "athenahealth, Inc.", "FileName": "athenahealth_Inc_1_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", + "EndpointName": "drchrono Inc.", + "FileName": "drchrono_Inc_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html", @@ -1069,7 +1231,7 @@ }, { "FormatType": "Lantern", - "URL": "https://fhir.eclinicalworks.com/ecwopendev", + "URL": "https://fhir.eclinicalworks.com/ecwopendev/external/practiceList", "EndpointName": "eClinicalWorks, LLC", "FileName": "eClinicalWorks_LLC_EndpointSources.json" }, @@ -1105,16 +1267,22 @@ }, { "FormatType": "Lantern", - "URL": "http://code.medicasoft.us/fhir_r4_endpoints.html", + "URL": "https://code.medicasoft.us/fhir_r4_endpoints.html", "EndpointName": "MedicaSoft, LLC", "FileName": "MedicaSoft_LLC_EndpointSources.json" }, { "FormatType": "Lantern", - "URL": "https://gsehrwebapi.geniussolutions.com/Help/html/ServiceUrl.html", + "URL": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/ServiceUrl.html", "EndpointName": "Genius Solutions Inc.", "FileName": "Genius_Solutions_Inc_EndpointSources.json" }, + { + "FormatType": "Lantern", + "URL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", + "EndpointName": "TenEleven Group", + "FileName": "TenEleven_Group_EndpointSources.json" + }, { "FormatType": "Lantern", "URL": "http://www.interopengine.com/2021", @@ -1154,8 +1322,8 @@ { "FormatType": "Lantern", "URL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", - "EndpointName": "i3-iMed, LLC", - "FileName": "i3iMed_LLC_EndpointSources.json" + "EndpointName": "i3 Healthcare Solutions, LLC", + "FileName": "i3_Healthcare_Solutions_LLC_EndpointSources.json" }, { "FormatType": "Lantern", diff --git a/resources/prod_resources/CHPLProductsInfo.json b/resources/prod_resources/CHPLProductsInfo.json index 869989b51..7a122c57a 100644 --- a/resources/prod_resources/CHPLProductsInfo.json +++ b/resources/prod_resources/CHPLProductsInfo.json @@ -31,45 +31,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 42, @@ -77,84 +97,69 @@ "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -162,7 +167,7 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://apidocs.onemedical.io/fhir/overview/" }, @@ -178,7 +183,7 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" } @@ -215,34 +220,24 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 53, @@ -255,19 +250,14 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -275,9 +265,24 @@ "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -285,14 +290,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 35, @@ -300,49 +305,44 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -350,19 +350,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 34, @@ -370,14 +385,9 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -391,19 +401,19 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apidocs.chirp.app/#0" + "value": "https://apidocs.chirp.app/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.chirp.app/" + "value": "https://apidocs.chirp.app/#0" } ], "acb": "SLI Compliance" @@ -442,25 +452,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 14, @@ -468,24 +518,19 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 36, @@ -493,14 +538,19 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 43, @@ -508,19 +558,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, @@ -530,67 +570,57 @@ { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "title": "Audit Report(s)" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -602,45 +632,25 @@ "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -656,7 +666,7 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://app.smartemr.com/api/api_client.php" }, @@ -664,7 +674,7 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" } @@ -706,59 +716,29 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -766,39 +746,39 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -806,19 +786,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, @@ -826,24 +806,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 29, @@ -851,53 +831,83 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -933,40 +943,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 1, @@ -974,29 +964,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, @@ -1004,44 +1004,59 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -1049,67 +1064,62 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -1123,9 +1133,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -1167,84 +1177,69 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 43, @@ -1252,14 +1247,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 54, @@ -1267,34 +1257,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -1302,39 +1282,39 @@ "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -1342,20 +1322,42 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - } - ], - "apiDocumentation": [ + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, @@ -1368,9 +1370,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://fhirapi.asp.md:3000" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" } ], "acb": "SLI Compliance" @@ -1410,9 +1420,14 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -1420,39 +1435,44 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, @@ -1460,9 +1480,9 @@ "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -1470,19 +1490,19 @@ "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -1490,24 +1510,29 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 26, @@ -1515,19 +1540,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -1535,14 +1560,14 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 53, @@ -1550,52 +1575,45 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" }, @@ -1606,14 +1624,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1621,11 +1631,11 @@ ] }, { - "listSourceURL": "https://developer.advancedmd.com/fhir/base-urls", + "listSourceURL": "https://apifhir.axeium.net:8443/reference-server/", "softwareProducts": [ { - "id": 11064, - "chplProductNumber": "15.04.04.2666.Adva.22.04.1.221212", + "id": 11086, + "chplProductNumber": "15.05.05.1171.BRIL.02.01.1.221219", "edition": { "id": 3, "name": "2015" @@ -1635,57 +1645,62 @@ "name": "" }, "developer": { - "id": 1667, - "name": "AdvancedMD" + "id": 172, + "name": "Brilogy Corporation" }, "product": { - "id": 2722, - "name": "AdvancedMD" + "id": 3140, + "name": "AXEIUM" }, "version": { - "id": 8649, - "name": "22.3" + "id": 8005, + "name": "MU3" }, - "certificationDate": "2022-12-12", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -1693,94 +1708,69 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 32, @@ -1788,107 +1778,97 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.advancedmd.com/fhir/apis" + "value": "https://axeium.net/api/swagger/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.advancedmd.com/fhir/apis" + "value": "https://axeium.net/api/swagger/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.advancedmd.com/fhir/apis" + "value": "https://openapi.axeium.net" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "http://agastha.com/production-links.html", + "listSourceURL": "https://developer.advancedmd.com/fhir/base-urls", "softwareProducts": [ { - "id": 11152, - "chplProductNumber": "15.04.04.1056.Agas.20.01.1.221228", + "id": 11064, + "chplProductNumber": "15.04.04.2666.Adva.22.04.1.221212", "edition": { "id": 3, "name": "2015" @@ -1898,42 +1878,52 @@ "name": "" }, "developer": { - "id": 57, - "name": "Agastha, Inc." + "id": 1667, + "name": "AdvancedMD" }, "product": { - "id": 101, - "name": "Agastha Enterprise Healthcare Software" + "id": 2722, + "name": "AdvancedMD" }, "version": { - "id": 8720, - "name": "20.1" + "id": 8649, + "name": "22.3" }, - "certificationDate": "2022-12-28", + "certificationDate": "2022-12-12", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 42, @@ -1941,49 +1931,15721 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11406, + "chplProductNumber": "15.04.04.2666.Adva.23.05.1.231213", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1667, + "name": "AdvancedMD" + }, + "product": { + "id": 2722, + "name": "AdvancedMD" + }, + "version": { + "id": 8916, + "name": "23" + }, + "certificationDate": "2023-12-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.advancedmd.com/fhir/apis" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "http://agastha.com/production-links.html", + "softwareProducts": [ + { + "id": 11152, + "chplProductNumber": "15.04.04.1056.Agas.20.01.1.221228", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 57, + "name": "Agastha, Inc." + }, + "product": { + "id": 101, + "name": "Agastha Enterprise Healthcare Software" + }, + "version": { + "id": 8720, + "name": "20.1" + }, + "certificationDate": "2022-12-28", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://agastha.com/apiR4.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://agastha.com/apiR4.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://agastha.com/apiR4.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://smartbox.aidbox.app/service-base-urls", + "softwareProducts": [ + { + "id": 11204, + "chplProductNumber": "15.99.04.3119.AIDB.01.01.0.230101", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2120, + "name": "Health Samurai, Inc." + }, + "product": { + "id": 3640, + "name": "Aidbox FHIR API module" + }, + "version": { + "id": 8550, + "name": "1.0" + }, + "certificationDate": "2023-01-01", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.aidbox.app/modules-1/integration-toolkit/ccda-converter/producing-c-cda-documents" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://smartbox.aidbox.app/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://smartbox.aidbox.app/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://cmpl.aidbox.app/smart", + "softwareProducts": [ + { + "id": 10956, + "chplProductNumber": "15.07.07.3119.AI01.01.00.0.220816", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2120, + "name": "Health Samurai, Inc." + }, + "product": { + "id": 3640, + "name": "Aidbox FHIR API module" + }, + "version": { + "id": 8550, + "name": "1.0" + }, + "certificationDate": "2022-08-16", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cmpl.aidbox.app/documentation" + } + ], + "acb": "ICSA Labs" + } + ] + }, + { + "listSourceURL": "https://altheafhir.mdsynergy.com", + "softwareProducts": [ + { + "id": 11046, + "chplProductNumber": "15.04.04.1821.Alth.03.02.1.221205", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 822, + "name": "MD Synergy Solutions, LLC" + }, + "product": { + "id": 2962, + "name": "Althea Smart EHR" + }, + "version": { + "id": 8634, + "name": "Version 3.0" + }, + "certificationDate": "2022-12-05", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://hag-fhir.amazingcharts.com/ac/endpoints", + "softwareProducts": [ + { + "id": 11023, + "chplProductNumber": "15.04.04.1206.Amaz.11.05.1.221117", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 207, + "name": "CareTracker, Inc." + }, + "product": { + "id": 3127, + "name": "Amazing Charts" + }, + "version": { + "id": 8614, + "name": "11.3" + }, + "certificationDate": "2022-11-17", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11365, + "chplProductNumber": "15.04.04.1206.Amaz.11.07.1.231115", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 207, + "name": "CareTracker, Inc." + }, + "product": { + "id": 3127, + "name": "Amazing Charts" + }, + "version": { + "id": 8876, + "name": "11.5" + }, + "certificationDate": "2023-11-15", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11361, + "chplProductNumber": "15.04.04.1206.Amaz.11.06.1.231026", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 207, + "name": "CareTracker, Inc." + }, + "product": { + "id": 3127, + "name": "Amazing Charts" + }, + "version": { + "id": 8872, + "name": "11.4" + }, + "certificationDate": "2023-10-26", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://astronautehr.com/index.php/fhir-base-urls/", + "softwareProducts": [ + { + "id": 10809, + "chplProductNumber": "15.02.05.3099.ASTR.01.00.1.220201", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2100, + "name": "Astronaut, LLC" + }, + "product": { + "id": 3605, + "name": "Astronaut" + }, + "version": { + "id": 8435, + "name": "1709" + }, + "certificationDate": "2022-02-01", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://astronautehr.com/index.php/170-315g10-apis/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://astronautehr.com/index.php/disclosures/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://astronautehr.com/index.php/disclosures/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhir.pai.healthcare/documentation/endpoints.htm", + "softwareProducts": [ + { + "id": 11128, + "chplProductNumber": "15.99.04.2186.Auro.02.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1187, + "name": "Practice Alternatives, Inc." + }, + "product": { + "id": 1953, + "name": "AuroraEHR" + }, + "version": { + "id": 8698, + "name": "2.1" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pai.healthcare/documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.pai.healthcare/documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.pai.healthcare/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://fhir-api.hmsfirst.com/r4/EndPoints", + "softwareProducts": [ + { + "id": 10512, + "chplProductNumber": "15.04.04.1590.Axio.02.01.1.201229", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 591, + "name": "Health Information Management Systems, LLC" + }, + "product": { + "id": 3518, + "name": "Axiom" + }, + "version": { + "id": 8230, + "name": "Version: 7" + }, + "certificationDate": "2020-12-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://hmsfirst.com/apidocs/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-api.hmsfirst.com/documents/index.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir-api.hmsfirst.com/documents/index.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://app.azaleahealth.com/fhir/R4/Endpoint", + "softwareProducts": [ + { + "id": 11151, + "chplProductNumber": "15.04.04.2688.Azal.04.02.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1689, + "name": "Azalea Health" + }, + "product": { + "id": 3141, + "name": "Azalea EHR" + }, + "version": { + "id": 8719, + "name": "4.0" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dev.azaleahealth.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://portal.ezcaretech.com:30112/baseUrls", + "softwareProducts": [ + { + "id": 9665, + "chplProductNumber": "15.04.04.2610.BEST.02.00.1.180423", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1611, + "name": "ezCaretech Co., Ltd." + }, + "product": { + "id": 3143, + "name": "BESTCare" + }, + "version": { + "id": 7476, + "name": "2.0B" + }, + "certificationDate": "2018-04-23", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.braintreehealth.com/braintree-onc-certification-2015/", + "softwareProducts": [ + { + "id": 10727, + "chplProductNumber": "15.02.05.1167.BRNT.01.01.1.211119", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 168, + "name": "Braintree Health" + }, + "product": { + "id": 263, + "name": "BRAINTREE" + }, + "version": { + "id": 7744, + "name": "10.5.1.1" + }, + "certificationDate": "2021-11-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://prognocis.com/fhir/index.html", + "softwareProducts": [ + { + "id": 9098, + "chplProductNumber": "15.04.04.1144.AntW.71.01.1.171219", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 145, + "name": "Benchmark Systems" + }, + "product": { + "id": 2794, + "name": "Benchmark EHR" + }, + "version": { + "id": 7063, + "name": "7.1" + }, + "certificationDate": "2017-12-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://prognocis.com/ehr-interoperability/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 8856, + "chplProductNumber": "15.04.04.2689.Prog.31.00.1.170929", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1690, + "name": "Bizmatics Inc." + }, + "product": { + "id": 247, + "name": "PrognoCIS" + }, + "version": { + "id": 6882, + "name": "Denali 3.1" + }, + "certificationDate": "2017-09-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 10615, + "chplProductNumber": "15.04.04.2769.Secu.03.01.1.210423", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1770, + "name": "Inmediata Health Group LLC" + }, + "product": { + "id": 3580, + "name": "SecureEMR+" + }, + "version": { + "id": 8311, + "name": "Denali 3.1" + }, + "certificationDate": "2021-04-23", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://betterdayhealth.net/fhir-docs", + "softwareProducts": [ + { + "id": 11074, + "chplProductNumber": "15.04.04.2992.Bett.02.02.1.221214", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1993, + "name": "Better Day™ Health" + }, + "product": { + "id": 3144, + "name": "Better Day™ Health" + }, + "version": { + "id": 8656, + "name": "2.1" + }, + "certificationDate": "2022-12-14", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://api.meldrx.com/Directories/fhir/endpoints", + "softwareProducts": [ + { + "id": 10435, + "chplProductNumber": "15.04.04.1322.Blue.02.00.0.200807", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 323, + "name": "Darena Solutions LLC" + }, + "product": { + "id": 3545, + "name": "BlueButtonPRO" + }, + "version": { + "id": 8157, + "name": "2" + }, + "certificationDate": "2020-08-07", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.sb.meldrx.com/swagger/index.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://app.sb.meldrx.com/swagger/index.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://blueehr.com/fhir-urls/", + "softwareProducts": [ + { + "id": 10797, + "chplProductNumber": "15.02.05.3076.ZHHC.01.02.1.220119", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2077, + "name": "ZH Healthcare, Inc." + }, + "product": { + "id": 3542, + "name": "BlueEHR" + }, + "version": { + "id": 8357, + "name": "3" + }, + "certificationDate": "2022-01-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://blueehr.com/certifications-and-costs/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal/fhir-endpoints", + "softwareProducts": [ + { + "id": 9540, + "chplProductNumber": "15.05.05.1947.BRID.01.00.0.180703", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 948, + "name": "Bridge Patient Portal Inc." + }, + "product": { + "id": 1610, + "name": "BridgeInteract" + }, + "version": { + "id": 7378, + "name": "3" + }, + "certificationDate": "2018-07-03", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://bridgepatientportal.docs.apiary.io/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://bridgepatientportal.docs.apiary.io/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://broadstreetcare.com/docs", + "softwareProducts": [ + { + "id": 11410, + "chplProductNumber": "15.05.05.3161.BRDS.01.00.1.231222", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2162, + "name": "BroadStreet Health LLC" + }, + "product": { + "id": 3718, + "name": "BroadStreet" + }, + "version": { + "id": 8832, + "name": "1" + }, + "certificationDate": "2023-12-22", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://broadstreetcare.com/docs" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://broadstreetcare.com/docs" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://broadstreetcare.com/docs" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "http://ehealthline.com/dev/pdf/FHIR%20API%20Endpoints.htm", + "softwareProducts": [ + { + "id": 10833, + "chplProductNumber": "15.02.05.1384.EHLC.01.01.0.220217", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 385, + "name": "E*HealthLine.com, Inc." + }, + "product": { + "id": 2869, + "name": "CARE© Integrated Hospital Information Management System" + }, + "version": { + "id": 7253, + "name": "10.0.0" + }, + "certificationDate": "2022-02-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + } + ], + "acb": "SLI Compliance" + }, + { + "id": 10832, + "chplProductNumber": "15.02.05.1384.PHOE.01.01.0.220217", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 385, + "name": "E*HealthLine.com, Inc." + }, + "product": { + "id": 604, + "name": "Phoenix© Integrated Electronic Health Records" + }, + "version": { + "id": 7252, + "name": "10.0.0" + }, + "certificationDate": "2022-02-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://identity.emdscloud.com/api/api-resource/fhir", + "softwareProducts": [ + { + "id": 11167, + "chplProductNumber": "15.04.04.2700.Apri.19.01.1.221228", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1701, + "name": "CompuGroup Medical US" + }, + "product": { + "id": 3679, + "name": "CGM APRIMA" + }, + "version": { + "id": 8727, + "name": "v19" + }, + "certificationDate": "2022-12-28", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11133, + "chplProductNumber": "15.04.04.2700.eMDs.10.02.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1701, + "name": "CompuGroup Medical US" + }, + "product": { + "id": 3674, + "name": "CGM eMDs" + }, + "version": { + "id": 8703, + "name": "v10" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://apitest.emds.com/documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apitest.emds.com/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://apitest.emds.com/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://unify-developer.chbase.com/?page=FHIRAPI", + "softwareProducts": [ + { + "id": 10965, + "chplProductNumber": "15.04.04.1533.CHBa.20.03.0.220819", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 534, + "name": "Get Real Health" + }, + "product": { + "id": 3164, + "name": "CHBase™ CEHRT Edition" + }, + "version": { + "id": 8559, + "name": "20" + }, + "certificationDate": "2022-08-19", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://docs.canvasmedical.com/api/service-base-urls/", + "softwareProducts": [ + { + "id": 10904, + "chplProductNumber": "15.04.04.3112.Canv.01.00.1.220523", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2113, + "name": "Canvas Medical, Inc." + }, + "product": { + "id": 3624, + "name": "Canvas Medical" + }, + "version": { + "id": 8502, + "name": "1" + }, + "certificationDate": "2022-05-23", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.canvasmedical.com/api/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.canvasmedical.com/api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.canvasmedical.com/api/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.acurussolutions.com/Certification.html", + "softwareProducts": [ + { + "id": 10807, + "chplProductNumber": "15.02.05.2669.ACUR.01.01.1.220131", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1670, + "name": "Acurus Solutions, Inc." + }, + "product": { + "id": 83, + "name": "Capella EHR" + }, + "version": { + "id": 7258, + "name": "6.1" + }, + "certificationDate": "2022-01-31", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.acurussolutions.com/Certification.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.acurussolutions.com/Certification.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.acurussolutions.com/Certification.html" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://api-datamanager.carecloud.com/", + "softwareProducts": [ + { + "id": 11173, + "chplProductNumber": "15.04.04.2981.Care.03.01.1.221229", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1982, + "name": "CareCloud Health, Inc." + }, + "product": { + "id": 3151, + "name": "CareCloud Charts" + }, + "version": { + "id": 8730, + "name": "3.0" + }, + "certificationDate": "2022-12-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api-datamanager.carecloud.com/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11002, + "chplProductNumber": "15.04.04.2112.Vert.09.01.1.221024", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1113, + "name": "Meridian Medical Management" + }, + "product": { + "id": 2971, + "name": "VertexDr" + }, + "version": { + "id": 8596, + "name": "9.1" + }, + "certificationDate": "2022-10-24", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + } + ], + "acb": "Drummond Group" + }, + { + "id": 9799, + "chplProductNumber": "15.04.04.2790.Talk.01.01.1.181217", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1791, + "name": "CareCloud, Inc." + }, + "product": { + "id": 2709, + "name": "talkEHR" + }, + "version": { + "id": 6500, + "name": "Version 1.0" + }, + "certificationDate": "2018-12-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api-datamanager.carecloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api-datamanager.carecloud.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://qualifacts.com/api-page/_downloads/carelogic-fhir-org-list.json", + "softwareProducts": [ + { + "id": 9807, + "chplProductNumber": "15.04.04.3124.Care.S3.00.1.181220", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2125, + "name": "Qualifacts Systems, LLC" + }, + "product": { + "id": 3154, + "name": "CareLogic" + }, + "version": { + "id": 7590, + "name": "Enterprise S3" + }, + "certificationDate": "2018-12-20", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://qualifacts.com/api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://carepaths.com/uploads/org_endpoint_bundle.json", + "softwareProducts": [ + { + "id": 10607, + "chplProductNumber": "15.04.04.2982.Care.19.00.1.210408", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1983, + "name": "Carepaths Inc" + }, + "product": { + "id": 3577, + "name": "CarePaths EHR" + }, + "version": { + "id": 8303, + "name": "19.11" + }, + "certificationDate": "2021-04-08", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://carepaths.com/api_documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://carepaths.com/api_documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://carepaths.com/api_documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://carefluence.com/carefluence-fhir-endpoints/", + "softwareProducts": [ + { + "id": 10922, + "chplProductNumber": "15.04.04.2657.Care.R4.01.0.220629", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1658, + "name": "Carefluence" + }, + "product": { + "id": 2614, + "name": "Carefluence Open API" + }, + "version": { + "id": 8519, + "name": "R4" + }, + "certificationDate": "2022-06-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api.carefluence.com" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.carefluence.com" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.carefluence.com" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.charmhealth.com/resources/fhir/index.html#api-endpoints", + "softwareProducts": [ + { + "id": 9741, + "chplProductNumber": "15.04.04.1948.ChAR.12.00.1.181115", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 949, + "name": "MedicalMine Inc." + }, + "product": { + "id": 3160, + "name": "CharmHealth EHR" + }, + "version": { + "id": 7537, + "name": "1.2" + }, + "certificationDate": "2018-11-15", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.charmhealth.com/resources/fhir/index.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.charmhealth.com/resources/fhir/index.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.charmhealth.com/resources/fhir/index.html" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://api.azaleahealth.com/fhir/R4/Endpoint", + "softwareProducts": [ + { + "id": 11140, + "chplProductNumber": "15.04.04.2688.Char.07.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1689, + "name": "Azalea Health" + }, + "product": { + "id": 2881, + "name": "ChartAccess ®" + }, + "version": { + "id": 8710, + "name": "7.0" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dev.azaleahealth.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dev.azaleahealth.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dev2-charteasy.theoriamedical.com/fhir/app", + "softwareProducts": [ + { + "id": 10712, + "chplProductNumber": "15.04.04.3091.Char.01.00.1.211108", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2092, + "name": "Theoria Medical, PLLC" + }, + "product": { + "id": 3591, + "name": "ChartEasy™" + }, + "version": { + "id": 8389, + "name": "1.1" + }, + "certificationDate": "2021-11-08", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.charteasy.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.charteasy.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.charteasy.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://chartmakerapi.azurewebsites.net/", + "softwareProducts": [ + { + "id": 11070, + "chplProductNumber": "15.04.04.2296.Char.22.02.1.221213", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1297, + "name": "STI Computer Services, Inc." + }, + "product": { + "id": 3514, + "name": "ChartMaker® Medical Suite" + }, + "version": { + "id": 8653, + "name": "2022.1" + }, + "certificationDate": "2022-12-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://beta.afoundria.com/api/fhir/urls", + "softwareProducts": [ + { + "id": 10258, + "chplProductNumber": "15.04.04.2996.Char.12.01.1.191227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1997, + "name": "ChartPath, LLC" + }, + "product": { + "id": 2784, + "name": "ChartPath" + }, + "version": { + "id": 7992, + "name": "1.29" + }, + "certificationDate": "2019-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://beta.afoundria.com/api" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://beta.afoundria.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://beta.afoundria.com/api" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.claimpowerehr.com/2015ECURES/documents/CP_FHIR_URLS.csv", + "softwareProducts": [ + { + "id": 11209, + "chplProductNumber": "15.04.04.1238.Clai.06.02.1.230109", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 239, + "name": "Claimpower, Inc." + }, + "product": { + "id": 419, + "name": "Claimpower Mobile EMR" + }, + "version": { + "id": 8096, + "name": "6.1" + }, + "certificationDate": "2023-01-09", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.sabiamed.com/api-endpoints", + "softwareProducts": [ + { + "id": 9737, + "chplProductNumber": "15.04.04.2297.Clin.01.00.1.181029", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1298, + "name": "Sabiamed Corporation" + }, + "product": { + "id": 2983, + "name": "ClinNext 10" + }, + "version": { + "id": 7533, + "name": "V1.0" + }, + "certificationDate": "2018-10-29", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.sabiamed.com/api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.sabiamed.com:8081/MPIServices/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sabiamed.com/api-documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf", + "softwareProducts": [ + { + "id": 10998, + "chplProductNumber": "15.05.05.2695.CLIN.02.01.1.221013", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1696, + "name": "CliniComp, Intl." + }, + "product": { + "id": 3546, + "name": "CliniComp|EHR" + }, + "version": { + "id": 8160, + "name": "213.03" + }, + "certificationDate": "2022-10-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.goldblattsystems.com/apis", + "softwareProducts": [ + { + "id": 10765, + "chplProductNumber": "15.02.05.2738.GOLD.01.01.1.211228", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1739, + "name": "Goldblatt Systems, LLC" + }, + "product": { + "id": 3169, + "name": "Clinical Semantic Network (CSN)" + }, + "version": { + "id": 7924, + "name": "8" + }, + "certificationDate": "2021-12-28", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.goldblattsystems.com/apis/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.goldblattsystems.com/apis/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.goldblattsystems.com/apis" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhirapitest.naiacorp.net/fhir/r4/endpoints", + "softwareProducts": [ + { + "id": 11150, + "chplProductNumber": "15.04.04.3071.Clou.09.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2072, + "name": "CloudCraft, LLC" + }, + "product": { + "id": 3525, + "name": "CloudCraft Software" + }, + "version": { + "id": 8718, + "name": "9.0" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://fhir-dev.cloudmd365.com/api/v1/.well-known/smart-configuration", + "softwareProducts": [ + { + "id": 10282, + "chplProductNumber": "15.04.04.3067.Clou.01.00.1.200122", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2068, + "name": "Softbir, Inc." + }, + "product": { + "id": 3521, + "name": "CloudMD365" + }, + "version": { + "id": 8012, + "name": "1" + }, + "certificationDate": "2020-01-22", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir-dev.cloudmd365.com/api/documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-dev.cloudmd365.com/api/documentation" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://fhir.compulinkadvantage.com/", + "softwareProducts": [ + { + "id": 8873, + "chplProductNumber": "15.04.04.2701.Comp.12.00.1.171106", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1702, + "name": "Compulink Healthcare Solutions" + }, + "product": { + "id": 3175, + "name": "Compulink Advantage" + }, + "version": { + "id": 6897, + "name": "Version 12" + }, + "certificationDate": "2017-11-06", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", + "softwareProducts": [ + { + "id": 10759, + "chplProductNumber": "15.02.05.2713.DY4B.04.03.0.211221", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1714, + "name": "Dynamic Health IT, Inc" + }, + "product": { + "id": 3588, + "name": "ConnectEHR +BulkFHIR" + }, + "version": { + "id": 8379, + "name": "FHIR4-B" + }, + "certificationDate": "2021-12-21", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.dynamichealthit.com/dynamic-fhir-api", + "softwareProducts": [ + { + "id": 10697, + "chplProductNumber": "15.02.02.2713.A122.01.02.0.210928", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1714, + "name": "Dynamic Health IT, Inc" + }, + "product": { + "id": 3588, + "name": "ConnectEHR +BulkFHIR" + }, + "version": { + "id": 8379, + "name": "FHIR4-B" + }, + "certificationDate": "2021-09-28", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + } + ], + "acb": "UL LLC" + } + ] + }, + { + "listSourceURL": "https://fhir.cozeva.com/endpoints", + "softwareProducts": [ + { + "id": 11139, + "chplProductNumber": "15.04.04.1102.Coze.03.02.0.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 103, + "name": "Applied Research Works, Inc." + }, + "product": { + "id": 183, + "name": "Cozeva" + }, + "version": { + "id": 8709, + "name": "3.1" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.developers.cozeva.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.developers.cozeva.com/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.developers.cozeva.com/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", + "softwareProducts": [ + { + "id": 11183, + "chplProductNumber": "15.04.04.3124.Cred.11.01.1.221230", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2125, + "name": "Qualifacts Systems, LLC" + }, + "product": { + "id": 3179, + "name": "Credible Behavioral Health" + }, + "version": { + "id": 7143, + "name": "Version 11" + }, + "certificationDate": "2022-12-30", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.qualifacts.com/api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.qualifacts.com/api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://criterions.com/fhir-end-points/", + "softwareProducts": [ + { + "id": 10171, + "chplProductNumber": "15.04.04.2705.Crit.04.00.1.191111", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1706, + "name": "Criterions Software Inc" + }, + "product": { + "id": 3497, + "name": "Criterions EHR" + }, + "version": { + "id": 7909, + "name": "4" + }, + "certificationDate": "2019-11-11", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://criterions.com/fhir-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://criterions.com/fhir-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://criterions.com/documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.crystalpm.com/FHIRServiceURLs.csv", + "softwareProducts": [ + { + "id": 10996, + "chplProductNumber": "15.04.04.1030.Crys.06.01.1.221004", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 31, + "name": "Abeo Solutions, Inc" + }, + "product": { + "id": 3017, + "name": "Crystal Practice Management" + }, + "version": { + "id": 8592, + "name": "6.0" + }, + "certificationDate": "2022-10-04", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.curemd.com/developer/base-fhir-urls/", + "softwareProducts": [ + { + "id": 11246, + "chplProductNumber": "15.07.04.2706.CURE.10.01.1.230302", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1707, + "name": "CureMD.com, Inc." + }, + "product": { + "id": 3181, + "name": "CureMD SMART Cloud" + }, + "version": { + "id": 554, + "name": "10g" + }, + "certificationDate": "2023-03-02", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.curemd.com/developer/base-fhir-urls", + "softwareProducts": [ + { + "id": 8603, + "chplProductNumber": "15.07.07.2706.CU01.01.00.1.170705", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1707, + "name": "CureMD.com, Inc." + }, + "product": { + "id": 3181, + "name": "CureMD SMART Cloud" + }, + "version": { + "id": 6709, + "name": "10g" + }, + "certificationDate": "2017-07-05", + "certificationStatus": { + "id": 4, + "name": "Withdrawn by ONC-ACB" + }, + "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.curemd.com/developer/fhir-apis.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + } + ], + "acb": "ICSA Labs" + } + ] + }, + { + "listSourceURL": "https://aidbox.cx360.net/service-base-urls", + "softwareProducts": [ + { + "id": 9168, + "chplProductNumber": "15.04.04.2703.Cx36.07.00.1.171226", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1704, + "name": "Core Solutions Inc" + }, + "product": { + "id": 488, + "name": "Cx360" + }, + "version": { + "id": 7096, + "name": "7" + }, + "certificationDate": "2017-12-26", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir", + "softwareProducts": [ + { + "id": 10072, + "chplProductNumber": "15.04.04.2975.Cyfl.03.00.1.190813", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1976, + "name": "Cyfluent" + }, + "product": { + "id": 515, + "name": "Cyfluent" + }, + "version": { + "id": 7821, + "name": "Version 3.2" + }, + "certificationDate": "2019-08-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://portal.doxemr.aidbox.io/service-base-urls", + "softwareProducts": [ + { + "id": 10806, + "chplProductNumber": "15.02.05.1317.DOXE.01.01.1.220131", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 318, + "name": "DOX EMR" + }, + "product": { + "id": 520, + "name": "DOX EMR" + }, + "version": { + "id": 7206, + "name": "5.2" + }, + "certificationDate": "2022-01-31", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/g10-API-for-patient-and-population-services.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://digidms.com/documents/DigiDMSFHIR_ServiceURL.pdf", + "softwareProducts": [ + { + "id": 11433, + "chplProductNumber": "15.04.04.2709.Digi.24.04.1.240101", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1710, + "name": "DigiDMS, Inc." + }, + "product": { + "id": 3184, + "name": "DigiDMS" + }, + "version": { + "id": 8941, + "name": "24.0" + }, + "certificationDate": "2024-01-01", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11394, + "chplProductNumber": "15.04.04.2709.Digi.23.03.1.231205", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1710, + "name": "DigiDMS, Inc." + }, + "product": { + "id": 3184, + "name": "DigiDMS" + }, + "version": { + "id": 8904, + "name": "23.0" + }, + "certificationDate": "2023-12-05", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11059, + "chplProductNumber": "15.04.04.2709.Digi.22.02.1.221209", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1710, + "name": "DigiDMS, Inc." + }, + "product": { + "id": 3184, + "name": "DigiDMS" + }, + "version": { + "id": 8645, + "name": "22.0" + }, + "certificationDate": "2022-12-09", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://drcloudehr.com/drcloudehr-api-documentation/", + "softwareProducts": [ + { + "id": 10835, + "chplProductNumber": "15.02.05.1434.ENST.01.01.1.220218", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 435, + "name": "EnSoftek, Inc" + }, + "product": { + "id": 3081, + "name": "DrCloudEHR" + }, + "version": { + "id": 7760, + "name": "2025" + }, + "certificationDate": "2022-02-18", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.drcloudemr.com:9443/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://drcloudehr.com/drcloudehr-api-documentation/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://drsdoc.com/fhir%20service%20urls.pdf", + "softwareProducts": [ + { + "id": 11072, + "chplProductNumber": "15.04.04.1764.DrsE.12.01.1.221213", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 765, + "name": "Keiser Computers, Inc." + }, + "product": { + "id": 1141, + "name": "Drs Enterprise" + }, + "version": { + "id": 8654, + "name": "12" + }, + "certificationDate": "2022-12-13", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -1991,34 +17653,207 @@ "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://drsdoc.com/FHIRapi" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://drsdoc.com/FHIRapi" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://drsdoc.com/FHIRapi" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", + "softwareProducts": [ + { + "id": 11144, + "chplProductNumber": "15.04.04.1853.ECLI.03.01.1.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 854, + "name": "MPN Software Systems, Inc." + }, + "product": { + "id": 2855, + "name": "ECLIPSE Spectrum" + }, + "version": { + "id": 8713, + "name": "v3" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 29, @@ -2026,9 +17861,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -2036,59 +17896,227 @@ "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://interop.ehnote.com/fhir", + "softwareProducts": [ + { + "id": 11356, + "chplProductNumber": "15.04.04.3171.EHNO.01.00.1.231025", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2172, + "name": "EHNOTE,INC" + }, + "product": { + "id": 3733, + "name": "EHNOTE" + }, + "version": { + "id": 8868, + "name": "1.0" + }, + "certificationDate": "2023-10-25", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -2096,55 +18124,80 @@ "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://agastha.com/apiR4.html" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://agastha.com/apiR4.html" + "value": "https://openapi.ehnote.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://agastha.com/apiR4.html" + "value": "https://openapi.ehnote.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://openapi.ehnote.com/" } ], "acb": "Drummond Group" @@ -2152,11 +18205,11 @@ ] }, { - "listSourceURL": "https://smartbox.aidbox.app/service-base-urls", + "listSourceURL": "https://fhirpt-stage.officeally.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11204, - "chplProductNumber": "15.07.04.3119.AIDB.01.01.0.230101", + "id": 11431, + "chplProductNumber": "15.04.04.2822.EHR2.05.02.1.231230", "edition": { "id": 3, "name": "2015" @@ -2166,119 +18219,107 @@ "name": "" }, "developer": { - "id": 2120, - "name": "Health Samurai, Inc." + "id": 1823, + "name": "Office Ally, LLC" }, "product": { - "id": 3640, - "name": "Aidbox FHIR API module" + "id": 3192, + "name": "EHR 24/7" }, "version": { - "id": 8550, - "name": "1.0" + "id": 8939, + "name": "5.6.30" }, - "certificationDate": "2023-01-01", + "certificationDate": "2023-12-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - } - ], - "apiDocumentation": [ + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://smartbox.aidbox.app/documentation" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://cmpl.aidbox.app/smart", - "softwareProducts": [ - { - "id": 10956, - "chplProductNumber": "15.07.07.3119.AI01.01.00.0.220816", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 2120, - "name": "Health Samurai, Inc." - }, - "product": { - "id": 3640, - "name": "Aidbox FHIR API module" - }, - "version": { - "id": 8550, - "name": "1.0" - }, - "certificationDate": "2022-08-16", - "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" - }, - "criteriaMet": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -2286,51 +18327,122 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://cmpl.aidbox.app/documentation" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], - "acb": "ICSA Labs" - } - ] - }, - { - "listSourceURL": "https://altheafhir.mdsynergy.com", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11046, - "chplProductNumber": "15.04.04.1821.Alth.03.02.1.221205", + "id": 11093, + "chplProductNumber": "15.04.04.2822.EHR2.05.01.1.221219", "edition": { "id": 3, "name": "2015" @@ -2340,27 +18452,42 @@ "name": "" }, "developer": { - "id": 822, - "name": "MD Synergy Solutions, LLC" + "id": 1823, + "name": "Office Ally, LLC" }, "product": { - "id": 2962, - "name": "Althea" + "id": 3192, + "name": "EHR 24/7" }, "version": { - "id": 8634, - "name": "Version 3.0" + "id": 8671, + "name": "5.1.0" }, - "certificationDate": "2022-12-05", + "certificationDate": "2022-12-19", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 52, @@ -2368,44 +18495,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -2413,124 +18535,114 @@ "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -2538,25 +18650,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -2564,11 +18676,11 @@ ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/ac/endpoints", + "listSourceURL": "https://ehryourway.com/content/fhir-service-urls.pdf", "softwareProducts": [ { - "id": 11023, - "chplProductNumber": "15.04.04.1206.Amaz.11.05.1.221117", + "id": 10757, + "chplProductNumber": "15.02.05.1042.ADAP.01.01.0.211220", "edition": { "id": 3, "name": "2015" @@ -2578,82 +18690,107 @@ "name": "" }, "developer": { - "id": 207, - "name": "CareTracker, Inc." + "id": 43, + "name": "Adaptamed, LLC" }, "product": { - "id": 3127, - "name": "Amazing Charts" + "id": 2984, + "name": "EHR Your Way" }, "version": { - "id": 8614, - "name": "11.3" + "id": 7536, + "name": "9.2.0.0" }, - "certificationDate": "2022-11-17", + "certificationDate": "2021-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -2661,9 +18798,9 @@ "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 54, @@ -2676,39 +18813,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, @@ -2716,74 +18848,89 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/ac-api-documentation/" + "value": "https://www.ehryourway.com/api" }, { "criterion": { @@ -2791,27 +18938,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://harrisambulatory.com/ac-api-documentation/" + "value": "https://www.ehryourway.com/api" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://harrisambulatory.com/ac-api-documentation/" + "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://astronautehr.com/index.php/fhir-base-urls/", + "listSourceURL": "https://mm-fhir-endpoint-display.prod.fhir.ema-api.com/", "softwareProducts": [ { - "id": 10809, - "chplProductNumber": "15.02.05.3099.ASTR.01.00.1.220201", + "id": 11032, + "chplProductNumber": "15.04.04.2002.EMA6.70.18.1.221129", "edition": { "id": 3, "name": "2015" @@ -2821,102 +18968,102 @@ "name": "" }, "developer": { - "id": 2100, - "name": "Astronaut, LLC" + "id": 1003, + "name": "Modernizing Medicine" }, "product": { - "id": 3605, - "name": "Astronaut" + "id": 1697, + "name": "EMA" }, "version": { - "id": 8435, - "name": "1709" + "id": 8623, + "name": "7" }, - "certificationDate": "2022-02-01", + "certificationDate": "2022-11-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 52, @@ -2924,29 +19071,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -2959,19 +19101,24 @@ "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 32, @@ -2979,34 +19126,62 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.modmed.com/public-api-v2/" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://astronautehr.com/index.php/disclosures/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { @@ -3014,27 +19189,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://astronautehr.com/index.php/disclosures/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://astronautehr.com/index.php/170-315g10-apis/" + "value": "https://www.modmed.com/public-api-v2/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir.pai.healthcare/documentation/endpoints.htm", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11128, - "chplProductNumber": "15.99.04.2186.Auro.02.01.1.221227", + "id": 11145, + "chplProductNumber": "15.04.04.1467.Exsc.07.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -3044,16 +19206,16 @@ "name": "" }, "developer": { - "id": 1187, - "name": "Practice Alternatives, Inc." + "id": 468, + "name": "Exscribe, LLC" }, "product": { - "id": 1953, - "name": "AuroraEHR" + "id": 714, + "name": "Exscribe EHR" }, "version": { - "id": 8698, - "name": "2.1" + "id": 8714, + "name": "7" }, "certificationDate": "2022-12-27", "certificationStatus": { @@ -3061,115 +19223,125 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -3177,69 +19349,79 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.pai.healthcare/documentation" + "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { @@ -3247,27 +19429,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir.pai.healthcare/documentation" + "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.pai.healthcare/documentation" + "value": "https://exscribemobile.com/MU/EhrApiV01/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir-api.hmsfirst.com/r4/EndPoints", - "softwareProducts": [ + }, { - "id": 10512, - "chplProductNumber": "15.04.04.1590.Axio.02.01.1.201229", + "id": 11088, + "chplProductNumber": "15.04.04.2900.Eyef.07.17.1.221219", "edition": { "id": 3, "name": "2015" @@ -3277,225 +19454,235 @@ "name": "" }, "developer": { - "id": 591, - "name": "Health Information Management Systems, LLC" + "id": 1901, + "name": "Eyefinity, Inc." }, "product": { - "id": 3518, - "name": "Axiom" + "id": 3552, + "name": "Eyefinity EHR powered by EMA" }, "version": { - "id": 8230, - "name": "Version: 7" + "id": 8666, + "name": "7" }, - "certificationDate": "2020-12-29", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://fhir-api.hmsfirst.com/documents/index.html" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://hmsfirst.com/apidocs/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-api.hmsfirst.com/documents/index.html" + "value": "https://www.modmed.com/public-api-v2/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://app.azaleahealth.com/fhir/R4/Endpoint", - "softwareProducts": [ + }, { - "id": 11151, - "chplProductNumber": "15.04.04.2688.Azal.04.02.1.221227", + "id": 11054, + "chplProductNumber": "15.04.04.3031.gGas.GA.10.1.221207", "edition": { "id": 3, "name": "2015" @@ -3505,152 +19692,142 @@ "name": "" }, "developer": { - "id": 1689, - "name": "Azalea Health" + "id": 2032, + "name": "Modernizing Medicine Gastroenterology, LLC" }, "product": { - "id": 3141, - "name": "Azalea EHR" + "id": 3020, + "name": "gGastro" }, "version": { - "id": 8719, - "name": "4.0" + "id": 8640, + "name": "6" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 35, @@ -3658,14 +19835,9 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 26, @@ -3673,64 +19845,64 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -3740,23 +19912,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -3764,11 +19936,11 @@ ] }, { - "listSourceURL": "https://www.braintreehealth.com/braintree-onc-certification-2015/", + "listSourceURL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", "softwareProducts": [ { - "id": 10727, - "chplProductNumber": "15.02.05.1167.BRNT.01.01.1.211119", + "id": 11129, + "chplProductNumber": "15.04.04.2425.Echo.13.02.1.221227", "edition": { "id": 3, "name": "2015" @@ -3778,92 +19950,32 @@ "name": "" }, "developer": { - "id": 168, - "name": "Braintree Health" + "id": 1426, + "name": "The Echo Group" }, "product": { - "id": 263, - "name": "BRAINTREE" + "id": 3746, + "name": "EchoVantage" }, "version": { - "id": 7744, - "name": "10.5.1.1" + "id": 8699, + "name": "3" }, - "certificationDate": "2021-11-19", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 15, @@ -3871,194 +19983,124 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -4066,9 +20108,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { @@ -4076,27 +20118,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://prognocis.com/fhir/index.html", + "listSourceURL": "https://elationfhir.readme.io/reference/service-base-urls", "softwareProducts": [ { - "id": 9098, - "chplProductNumber": "15.04.04.1144.AntW.71.01.1.171219", + "id": 9876, + "chplProductNumber": "15.04.04.2717.Elat.03.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -4106,92 +20148,97 @@ "name": "" }, "developer": { - "id": 145, - "name": "Benchmark Systems" + "id": 1718, + "name": "Elation Health, Inc." }, "product": { - "id": 2794, - "name": "Benchmark EHR" + "id": 3036, + "name": "Elation EMR" }, "version": { - "id": 7063, - "name": "7.1" + "id": 7651, + "name": "Version 3" }, - "certificationDate": "2017-12-19", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -4199,29 +20246,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -4229,69 +20276,34 @@ "title": "Quality Management System" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "title": "Audit Report(s)" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -4299,24 +20311,19 @@ "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, @@ -4324,79 +20331,49 @@ "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "title": "Standardized API for Patient and Population Services" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://docs.elationhealth.com/reference/introduction" }, { "criterion": { @@ -4404,22 +20381,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://prognocis.com/ehr-interoperability/" + "value": "https://docs.elationhealth.com/reference" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://docs.elationhealth.com/reference/introduction" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://api.enablemyhealth.com", + "softwareProducts": [ { - "id": 8856, - "chplProductNumber": "15.04.04.2689.Prog.31.00.1.170929", + "id": 10795, + "chplProductNumber": "15.02.05.1439.ENAD.01.01.1.220118", "edition": { "id": 3, "name": "2015" @@ -4429,87 +20411,77 @@ "name": "" }, "developer": { - "id": 1690, - "name": "Bizmatics Inc." + "id": 440, + "name": "EnableDoc LLC" }, "product": { - "id": 247, - "name": "PrognoCIS" + "id": 3528, + "name": "Enablemypractice" }, "version": { - "id": 6882, - "name": "Denali 3.1" + "id": 8028, + "name": "EHR 5.0" }, - "certificationDate": "2017-09-29", + "certificationDate": "2022-01-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -4517,34 +20489,39 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -4552,69 +20529,64 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, @@ -4622,19 +20594,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -4642,57 +20614,47 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://api.enablemyhealth.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://apitest.enablemyhealth.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + "value": "https://apitest.enablemyhealth.com/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.endosoft.com/fhir", + "softwareProducts": [ { - "id": 10615, - "chplProductNumber": "15.04.04.2769.Secu.03.01.1.210423", + "id": 10854, + "chplProductNumber": "15.02.05.2721.ENDV.01.01.1.220310", "edition": { "id": 3, "name": "2015" @@ -4702,87 +20664,117 @@ "name": "" }, "developer": { - "id": 1770, - "name": "Inmediata Health Group LLC" + "id": 1722, + "name": "EndoSoft, LLC" }, "product": { - "id": 3580, - "name": "SecureEMR+" + "id": 3487, + "name": "EndoVault" }, "version": { - "id": 8311, - "name": "Denali 3.1" + "id": 7877, + "name": "3.2" }, - "certificationDate": "2021-04-23", + "certificationDate": "2022-03-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 26, @@ -4790,24 +20782,49 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 25, @@ -4815,99 +20832,94 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -4915,24 +20927,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ @@ -4940,37 +20942,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + "value": "https://www.endosoft.com/fhir" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" + "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://betterdayhealth.net/fhir-docs", + "listSourceURL": "https://open.epic.com/MyApps/Endpoints", "softwareProducts": [ { - "id": 11074, - "chplProductNumber": "15.04.04.2992.Bett.02.02.1.221214", + "id": 11340, + "chplProductNumber": "15.04.04.1447.Epic.AM.26.1.230908", "edition": { "id": 3, "name": "2015" @@ -4980,62 +20982,57 @@ "name": "" }, "developer": { - "id": 1993, - "name": "Better Day™ Health" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3144, - "name": "Better Day™ Health" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8656, - "name": "2.1" + "id": 8854, + "name": "August 2023" }, - "certificationDate": "2022-12-14", + "certificationDate": "2023-09-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -5043,49 +21040,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -5093,54 +21075,29 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -5148,107 +21105,34 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://betterdayhealth.net/OpenApiTestClient/Home/Documentation" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://hub.meldrx.com/", - "softwareProducts": [ - { - "id": 10435, - "chplProductNumber": "15.04.04.1322.Blue.02.00.0.200807", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 323, - "name": "Darena Solutions LLC" - }, - "product": { - "id": 3545, - "name": "BlueButtonPRO" - }, - "version": { - "id": 8157, - "name": "2" - }, - "certificationDate": "2020-08-07", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -5256,39 +21140,54 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -5296,9 +21195,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.sb.meldrx.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -5306,19 +21205,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.sb.meldrx.com/" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://blueehr.com/fhir-urls/", - "softwareProducts": [ + }, { - "id": 10797, - "chplProductNumber": "15.02.05.3076.ZHHC.01.02.1.220119", + "id": 10869, + "chplProductNumber": "15.04.04.1447.Epic.AM.21.1.220318", "edition": { "id": 3, "name": "2015" @@ -5328,42 +21230,42 @@ "name": "" }, "developer": { - "id": 2077, - "name": "ZH Healthcare, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3542, - "name": "BlueEHR" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8357, - "name": "3" + "id": 8467, + "name": "February 2022" }, - "certificationDate": "2022-01-19", + "certificationDate": "2022-03-18", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 5, @@ -5376,74 +21278,59 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 54, @@ -5451,19 +21338,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 42, @@ -5471,72 +21358,94 @@ "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://blueehr.com/certifications-and-costs/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -5544,19 +21453,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal/fhir-endpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 9540, - "chplProductNumber": "15.05.05.1947.BRID.01.00.0.180703", + "id": 11262, + "chplProductNumber": "15.04.04.1447.Epic.AM.24.1.230308", "edition": { "id": 3, "name": "2015" @@ -5566,47 +21478,52 @@ "name": "" }, "developer": { - "id": 948, - "name": "Bridge Patient Portal Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 1610, - "name": "Bridge Patient Portal" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 7378, - "name": "3" + "id": 8783, + "name": "February 2023" }, - "certificationDate": "2018-07-03", + "certificationDate": "2023-03-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -5614,29 +21531,59 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -5644,14 +21591,39 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 29, @@ -5659,52 +21631,92 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://bridgepatientportal.docs.apiary.io/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://bridgepatientportal.docs.apiary.io/" + "value": "https://open.epic.com/Interface/FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://identity.emdscloud.com/api/api-resource/fhir", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11167, - "chplProductNumber": "15.04.04.2700.Apri.19.01.1.221228", + "id": 11303, + "chplProductNumber": "15.04.04.1447.Epic.AM.25.1.230621", "edition": { "id": 3, "name": "2015" @@ -5714,117 +21726,107 @@ "name": "" }, "developer": { - "id": 1701, - "name": "CompuGroup Medical US" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3679, - "name": "CGM APRIMA" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8727, - "name": "v19" + "id": 8819, + "name": "May 2023" }, - "certificationDate": "2022-12-28", + "certificationDate": "2023-06-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -5832,24 +21834,9 @@ "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 4, @@ -5857,14 +21844,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -5872,14 +21854,14 @@ "title": "Automatic Access Time-out" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 59, @@ -5887,87 +21869,102 @@ "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" }, { - "id": 11133, - "chplProductNumber": "15.04.04.2700.eMDs.10.02.1.221227", + "id": 11437, + "chplProductNumber": "15.04.04.1447.Epic.AM.27.1.240104", "edition": { "id": 3, "name": "2015" @@ -5977,47 +21974,47 @@ "name": "" }, "developer": { - "id": 1701, - "name": "CompuGroup Medical US" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3674, - "name": "CGM eMDs" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8703, - "name": "v10" + "id": 8945, + "name": "November 2023" }, - "certificationDate": "2022-12-27", + "certificationDate": "2024-01-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -6025,49 +22022,54 @@ "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -6075,59 +22077,64 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, @@ -6135,29 +22142,39 @@ "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -6165,47 +22182,47 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://apitest.emds.com/documentation" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apitest.emds.com/documentation" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apitest.emds.com/documentation" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://unify-developer.chbase.com/?page=FHIRAPI", - "softwareProducts": [ + }, { - "id": 10965, - "chplProductNumber": "15.04.04.1533.CHBa.20.03.0.220819", + "id": 10941, + "chplProductNumber": "15.04.04.1447.Epic.AM.22.1.220713", "edition": { "id": 3, "name": "2015" @@ -6215,42 +22232,57 @@ "name": "" }, "developer": { - "id": 534, - "name": "Get Real Health" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3164, - "name": "CHBase™ CEHRT Edition" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8559, - "name": "20" + "id": 8537, + "name": "May 2022" }, - "certificationDate": "2022-08-19", + "certificationDate": "2022-07-13", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 29, @@ -6258,9 +22290,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 54, @@ -6268,9 +22335,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -6278,47 +22380,74 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -6326,19 +22455,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://docs.canvasmedical.com/reference/service-base-urls", - "softwareProducts": [ + }, { - "id": 10904, - "chplProductNumber": "15.04.04.3112.Canv.01.00.1.220523", + "id": 11120, + "chplProductNumber": "15.04.04.1447.Epic.AM.23.1.221222", "edition": { "id": 3, "name": "2015" @@ -6347,58 +22479,48 @@ "id": 0, "name": "" }, - "developer": { - "id": 2113, - "name": "Canvas Medical, Inc." + "developer": { + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3624, - "name": "Canvas Medical" + "id": 2980, + "name": "EpicCare Ambulatory Base" }, "version": { - "id": 8502, - "name": "1" + "id": 8693, + "name": "November 2022" }, - "certificationDate": "2022-05-23", + "certificationDate": "2022-12-22", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -6406,54 +22528,44 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -6466,29 +22578,29 @@ "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 52, @@ -6496,34 +22608,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 56, @@ -6531,42 +22653,57 @@ "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.canvasmedical.com/reference/getting-started-with-your-api" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.canvasmedical.com/reference/getting-started-with-your-api" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -6574,19 +22711,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.canvasmedical.com/reference/getting-started-with-your-api" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.acurussolutions.com/Certification.html", - "softwareProducts": [ + }, { - "id": 10807, - "chplProductNumber": "15.02.05.2669.ACUR.01.01.1.220131", + "id": 10942, + "chplProductNumber": "15.04.04.1447.Epic.IN.23.1.220713", "edition": { "id": 3, "name": "2015" @@ -6596,102 +22728,67 @@ "name": "" }, "developer": { - "id": 1670, - "name": "Acurus Solutions, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 83, - "name": "Capella EHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 7258, - "name": "6.1" + "id": 8538, + "name": "May 2022" }, - "certificationDate": "2022-01-31", + "certificationDate": "2022-07-13", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 35, @@ -6699,59 +22796,44 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 4, @@ -6759,59 +22841,64 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -6819,27 +22906,52 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.acurussolutions.com/Certification.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.acurussolutions.com/Certification.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -6847,19 +22959,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.acurussolutions.com/Certification.html" + "value": "https://open.epic.com/Interface/FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://api-datamanager.carecloud.com/", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11173, - "chplProductNumber": "15.04.04.2981.Care.03.01.1.221229", + "id": 11119, + "chplProductNumber": "15.04.04.1447.Epic.IN.24.1.221222", "edition": { "id": 3, "name": "2015" @@ -6869,67 +22976,77 @@ "name": "" }, "developer": { - "id": 1982, - "name": "CareCloud Health, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3151, - "name": "CareCloud Charts" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 8730, - "name": "3.0" + "id": 8692, + "name": "November 2022" }, - "certificationDate": "2022-12-29", + "certificationDate": "2022-12-22", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 29, @@ -6937,49 +23054,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -6987,132 +23099,122 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" }, { - "id": 11002, - "chplProductNumber": "15.04.04.2112.Vert.09.01.1.221024", + "id": 11304, + "chplProductNumber": "15.04.04.1447.Epic.IN.26.1.230621", "edition": { "id": 3, "name": "2015" @@ -7122,32 +23224,37 @@ "name": "" }, "developer": { - "id": 1113, - "name": "Meridian Medical Management" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 2971, - "name": "VertexDr" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 8596, - "name": "9.1" + "id": 8820, + "name": "May 2023" }, - "certificationDate": "2022-10-24", + "certificationDate": "2023-06-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -7155,64 +23262,49 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 35, @@ -7220,29 +23312,24 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -7250,49 +23337,64 @@ "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 14, @@ -7300,19 +23402,19 @@ "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 43, @@ -7320,47 +23422,47 @@ "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" + "value": "https://open.epic.com/Interface/FHIR" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" }, { - "id": 9799, - "chplProductNumber": "15.04.04.2790.Talk.01.01.1.181217", + "id": 11341, + "chplProductNumber": "15.04.04.1447.Epic.IN.27.1.230908", "edition": { "id": 3, "name": "2015" @@ -7370,137 +23472,72 @@ "name": "" }, "developer": { - "id": 1791, - "name": "CareCloud, Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 2709, - "name": "talkEHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 6500, - "name": "Version 1.0" + "id": 8855, + "name": "August 2023" }, - "certificationDate": "2018-12-17", + "certificationDate": "2023-09-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -7508,19 +23545,19 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 14, @@ -7528,84 +23565,94 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, @@ -7613,57 +23660,57 @@ "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api-datamanager.carecloud.com/" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://qualifacts.com/api-documentation/", - "softwareProducts": [ + }, { - "id": 9807, - "chplProductNumber": "15.04.04.3124.Care.S3.00.1.181220", + "id": 10872, + "chplProductNumber": "15.04.04.1447.Epic.IN.22.1.220318", "edition": { "id": 3, "name": "2015" @@ -7673,77 +23720,52 @@ "name": "" }, "developer": { - "id": 2125, - "name": "Qualifacts Systems, LLC" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3154, - "name": "CareLogic" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 7590, - "name": "Enterprise S3" + "id": 8470, + "name": "February 2022" }, - "certificationDate": "2018-12-20", + "certificationDate": "2022-03-18", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -7751,14 +23773,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -7766,34 +23783,29 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -7801,64 +23813,74 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -7866,24 +23888,44 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -7891,9 +23933,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://qualifacts.com/api-documentation/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { @@ -7901,27 +23943,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://qualifacts.com/api-documentation/" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://qualifacts.com/api-documentation/" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://carepaths.com/api_documentation/", - "softwareProducts": [ + }, { - "id": 10607, - "chplProductNumber": "15.04.04.2982.Care.19.00.1.210408", + "id": 11263, + "chplProductNumber": "15.04.04.1447.Epic.IN.25.1.230315", "edition": { "id": 3, "name": "2015" @@ -7931,82 +23968,32 @@ "name": "" }, "developer": { - "id": 1983, - "name": "Carepaths Inc" + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3577, - "name": "CarePaths EHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 8303, - "name": "19.11" + "id": 8784, + "name": "February 2023" }, - "certificationDate": "2021-04-08", + "certificationDate": "2023-03-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 5, @@ -8014,14 +24001,19 @@ "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -8029,34 +24021,29 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 34, @@ -8064,24 +24051,14 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, @@ -8089,97 +24066,84 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - } - ], - "apiDocumentation": [ + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://carepaths.com/api_documentation/" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://developer.carepaths.com/" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://carepaths.com/api_documentation/" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://carefluence.com/carefluence-fhir-endpoints/", - "softwareProducts": [ - { - "id": 10922, - "chplProductNumber": "15.04.04.2657.Care.R4.01.0.220629", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1658, - "name": "Carefluence" - }, - "product": { - "id": 2614, - "name": "Carefluence Open API" - }, - "version": { - "id": 8519, - "name": "R4" - }, - "certificationDate": "2022-06-29", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 29, @@ -8187,9 +24151,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -8197,24 +24166,14 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -8224,35 +24183,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.carefluence.com" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.carefluence.com" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api.carefluence.com" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.charmhealth.com/resources/fhir/index.html#api-endpoints", - "softwareProducts": [ + }, { - "id": 9741, - "chplProductNumber": "15.04.04.1948.ChAR.12.00.1.181115", + "id": 11438, + "chplProductNumber": "15.04.04.1447.Epic.IN.28.1.240104", "edition": { "id": 3, "name": "2015" @@ -8262,52 +24216,52 @@ "name": "" }, "developer": { - "id": 949, - "name": "MedicalMine Inc." + "id": 448, + "name": "Epic Systems Corporation" }, "product": { - "id": 3160, - "name": "CharmHealth EHR" + "id": 2917, + "name": "EpicCare Inpatient Base" }, "version": { - "id": 7537, - "name": "1.2" + "id": 8946, + "name": "November 2023" }, - "certificationDate": "2018-11-15", + "certificationDate": "2024-01-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 52, @@ -8315,44 +24269,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 29, @@ -8360,24 +24294,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 37, @@ -8385,109 +24324,84 @@ "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -8500,40 +24414,50 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.charmhealth.com/resources/fhir/index.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.charmhealth.com/resources/fhir/index.html" + "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.charmhealth.com/resources/fhir/index.html" + "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -8541,176 +24465,121 @@ ] }, { - "listSourceURL": "https://api.azaleahealth.com/fhir/R4/Endpoint", + "listSourceURL": "https://datalinksoftware.com/Endpoint.json", "softwareProducts": [ { - "id": 11140, - "chplProductNumber": "15.04.04.2688.Char.07.01.1.221227", + "id": 11110, + "chplProductNumber": "15.04.04.2895.Trin.04.01.1.221221", "edition": { "id": 3, "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1689, - "name": "Azalea Health" - }, - "product": { - "id": 2881, - "name": "ChartAccess ®" - }, - "version": { - "id": 8710, - "name": "7.0" - }, - "certificationDate": "2022-12-27", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1896, + "name": "DataLink Software, LLC" + }, + "product": { + "id": 3453, + "name": "EvokeEHR" + }, + "version": { + "id": 8686, + "name": "4.0" + }, + "certificationDate": "2022-12-21", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -8718,19 +24587,24 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 1, @@ -8738,24 +24612,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -8763,45 +24647,45 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dev.azaleahealth.com/" + "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" } ], "acb": "Drummond Group" @@ -8809,11 +24693,11 @@ ] }, { - "listSourceURL": "https://dev2-charteasy.theoriamedical.com/fhir/app", + "listSourceURL": "https://fhir.myeyecarerecords.com/fhir-endpoints", "softwareProducts": [ { - "id": 10712, - "chplProductNumber": "15.04.04.3091.Char.01.00.1.211108", + "id": 9988, + "chplProductNumber": "15.04.04.2725.EyeM.02.00.1.190501", "edition": { "id": 3, "name": "2015" @@ -8823,67 +24707,37 @@ "name": "" }, "developer": { - "id": 2092, - "name": "Theoria Medical, PLLC" + "id": 1726, + "name": "EyeMD EMR Healthcare Systems, Inc." }, "product": { - "id": 3591, - "name": "ChartEasy™" + "id": 3078, + "name": "EyeMD Electronic Medical Records" }, "version": { - "id": 8389, - "name": "1.1" + "id": 7748, + "name": "Version 2" }, - "certificationDate": "2021-11-08", + "certificationDate": "2019-05-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { "id": 51, @@ -8891,9 +24745,14 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, @@ -8901,34 +24760,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -8936,14 +24795,24 @@ "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 53, @@ -8951,54 +24820,54 @@ "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -9006,35 +24875,142 @@ "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.myeyecarerecords.com/api" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.charteasy.com/" + "value": "https://fhir.myeyecarerecords.com/api" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.charteasy.com/" + "value": "https://fhir.myeyecarerecords.com/api" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://docs.fire.ly/projects/Firely-Server/en/latest/_static/g10/EndpointBundleFirely.json", + "softwareProducts": [ + { + "id": 11234, + "chplProductNumber": "15.04.04.3143.Fire.05.00.0.230208", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2144, + "name": "Firely USA Inc." + }, + "product": { + "id": 3695, + "name": "Firely Server" + }, + "version": { + "id": 8764, + "name": "5" + }, + "certificationDate": "2023-02-08", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.charteasy.com/" + "value": "https://fire.ly/g10-certification/" } ], "acb": "Drummond Group" @@ -9042,11 +25018,11 @@ ] }, { - "listSourceURL": "https://chartmakerapi.azurewebsites.net/", + "listSourceURL": "https://academy.practicesuite.com/fhir-server-links/", "softwareProducts": [ { - "id": 11070, - "chplProductNumber": "15.04.04.2296.Char.22.02.1.221213", + "id": 10789, + "chplProductNumber": "15.02.05.2198.FREC.01.02.1.220113", "edition": { "id": 3, "name": "2015" @@ -9056,37 +25032,37 @@ "name": "" }, "developer": { - "id": 1297, - "name": "STI Computer Services, Inc." + "id": 1199, + "name": "PracticeSuite, Inc." }, "product": { - "id": 3514, - "name": "ChartMaker® Medical Suite" + "id": 2913, + "name": "FreeChiro" }, "version": { - "id": 8653, - "name": "2022.1" + "id": 8430, + "name": "EHR-18.0.0" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-01-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 52, @@ -9094,44 +25070,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -9139,134 +25105,134 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -9274,9 +25240,19 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -9284,9 +25260,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" }, { "criterion": { @@ -9294,27 +25270,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + "value": "http://academy.practicesuite.com/mu-api/" } ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://beta.afoundria.com/api/fhir/urls", - "softwareProducts": [ + "acb": "SLI Compliance" + }, { - "id": 10258, - "chplProductNumber": "15.04.04.2996.Char.12.01.1.191227", + "id": 10788, + "chplProductNumber": "15.02.05.2198.PRAS.01.01.1.220113", "edition": { "id": 3, "name": "2015" @@ -9324,72 +25295,47 @@ "name": "" }, "developer": { - "id": 1997, - "name": "ChartPath, LLC" + "id": 1199, + "name": "PracticeSuite, Inc." }, "product": { - "id": 2784, - "name": "ChartPath" + "id": 3401, + "name": "PracticeSuite" }, "version": { - "id": 7992, - "name": "1.29" + "id": 8429, + "name": "EHR-18.0.0" }, - "certificationDate": "2019-12-27", + "certificationDate": "2022-01-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -9397,39 +25343,39 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 32, @@ -9437,94 +25383,114 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -9532,19 +25498,24 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -9552,17 +25523,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://beta.afoundria.com/api" + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://beta.afoundria.com/api" + "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { @@ -9570,19 +25541,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://beta.afoundria.com/api" + "value": "http://academy.practicesuite.com/mu-api/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.claimpowerehr.com/2015ECURES/documents/CP_FHIR_URLS.csv", + "listSourceURL": "https://careconnect-uat.netsmartcloud.com/baseUrls", "softwareProducts": [ { - "id": 11209, - "chplProductNumber": "15.04.04.1238.Clai.06.02.1.230109", + "id": 11136, + "chplProductNumber": "15.04.04.2816.gEHR.04.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -9592,152 +25563,97 @@ "name": "" }, "developer": { - "id": 239, - "name": "Claimpower, Inc." + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 419, - "name": "Claimpower Mobile EMR" + "id": 3676, + "name": "GEHRIMED" }, "version": { - "id": 8096, - "name": "6.1" + "id": 8706, + "name": "v.4.3" }, - "certificationDate": "2023-01-09", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -9745,39 +25661,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -9785,62 +25696,77 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://sabiamed.com/api-endpoints", - "softwareProducts": [ + }, { - "id": 9737, - "chplProductNumber": "15.04.04.2297.Clin.01.00.1.181029", + "id": 11131, + "chplProductNumber": "15.04.04.2816.myEv.11.02.0.221227", "edition": { "id": 3, "name": "2015" @@ -9850,52 +25776,47 @@ "name": "" }, "developer": { - "id": 1298, - "name": "Sabiamed Corporation" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 2983, - "name": "ClinNext 10" + "id": 2870, + "name": "myEvolv Certified Edition" }, "version": { - "id": 7533, - "name": "V1.0" + "id": 8701, + "name": "11.0" }, - "certificationDate": "2018-10-29", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -9903,49 +25824,59 @@ "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -9953,137 +25884,132 @@ "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sabiamed.com/api-documentation" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.sabiamed.com/api-documentation" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { @@ -10091,19 +26017,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dev.sabiamed.com:8081/MPIServices/" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.goldblattsystems.com/apis", - "softwareProducts": [ + }, { - "id": 10765, - "chplProductNumber": "15.02.05.2738.GOLD.01.01.1.211228", + "id": 11057, + "chplProductNumber": "15.04.04.2816.myUn.22.01.0.221207", "edition": { "id": 3, "name": "2015" @@ -10113,167 +26034,92 @@ "name": "" }, "developer": { - "id": 1739, - "name": "Goldblatt Systems, LLC" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 3169, - "name": "Clinical Semantic Network (CSN)" + "id": 3573, + "name": "myUnity" }, "version": { - "id": 7924, - "name": "8" + "id": 8643, + "name": "2022" }, - "certificationDate": "2021-12-28", + "certificationDate": "2022-12-07", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -10281,19 +26127,24 @@ "title": "Integrity" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -10301,107 +26152,112 @@ "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.goldblattsystems.com/apis/" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.goldblattsystems.com/apis/" + "value": "https://careconnect.netsmartcloud.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.goldblattsystems.com/apis" + "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhirapitest.naiacorp.net/fhir/r4/endpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11150, - "chplProductNumber": "15.04.04.3071.Clou.09.01.1.221227", + "id": 11409, + "chplProductNumber": "15.04.04.2816.myUn.23.02.0.231218", "edition": { "id": 3, "name": "2015" @@ -10411,87 +26267,77 @@ "name": "" }, "developer": { - "id": 2072, - "name": "CloudCraft, LLC" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 3525, - "name": "CloudCraft Software" + "id": 3573, + "name": "myUnity" }, "version": { - "id": 8718, - "name": "9.0" + "id": 8919, + "name": "2023" }, - "certificationDate": "2022-12-27", + "certificationDate": "2023-12-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 12, @@ -10499,89 +26345,94 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -10589,14 +26440,9 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 26, @@ -10604,55 +26450,55 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhirapitest.naiacorp.net/cloudcraft/faison_medical/r4/Home/ApiDocumentation" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -10660,11 +26506,11 @@ ] }, { - "listSourceURL": "https://fhir-dev.cloudmd365.com/api", + "listSourceURL": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/FHIR_Service_URLs_MI.pdf", "softwareProducts": [ { - "id": 10282, - "chplProductNumber": "15.04.04.3067.Clou.01.00.1.200122", + "id": 10714, + "chplProductNumber": "15.04.04.2734.GEMM.77.01.1.211110", "edition": { "id": 3, "name": "2015" @@ -10674,42 +26520,47 @@ "name": "" }, "developer": { - "id": 2068, - "name": "Softbir, Inc." + "id": 1735, + "name": "GEMMS" }, "product": { - "id": 3521, - "name": "CloudMD365" + "id": 3227, + "name": "GEMMS ONE" }, "version": { - "id": 8012, - "name": "1" + "id": 7662, + "name": "V7.7C" }, - "certificationDate": "2020-01-22", + "certificationDate": "2021-11-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -10722,14 +26573,59 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -10737,9 +26633,19 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -10751,80 +26657,118 @@ "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir-dev.cloudmd365.com/api/documentation" + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir-dev.cloudmd365.com/api/documentation" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.compulinkadvantage.com/", - "softwareProducts": [ + }, { - "id": 8873, - "chplProductNumber": "15.04.04.2701.Comp.12.00.1.171106", + "id": 10683, + "chplProductNumber": "15.04.04.2795.MedI.77.01.1.210830", "edition": { "id": 3, "name": "2015" @@ -10834,52 +26778,42 @@ "name": "" }, "developer": { - "id": 1702, - "name": "Compulink Healthcare Solutions" + "id": 1796, + "name": "MedInformatix" }, "product": { - "id": 3175, - "name": "Compulink Advantage" + "id": 3039, + "name": "MedInformatix EHR" }, "version": { - "id": 6897, - "name": "Version 12" + "id": 7661, + "name": "7.7" }, - "certificationDate": "2017-11-06", + "certificationDate": "2021-08-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -10887,84 +26821,84 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, @@ -10972,39 +26906,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -11012,67 +26956,62 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/", - "softwareProducts": [ + }, { - "id": 10759, - "chplProductNumber": "15.02.05.2713.DY4B.04.03.0.211221", + "id": 11371, + "chplProductNumber": "15.04.04.2795.MedI.78.02.1.231120", "edition": { "id": 3, "name": "2015" @@ -11082,215 +27021,245 @@ "name": "" }, "developer": { - "id": 1714, - "name": "Dynamic Health IT, Inc" + "id": 1796, + "name": "MedInformatix" }, "product": { - "id": 3588, - "name": "ConnectEHR +BulkFHIR" + "id": 3039, + "name": "MedInformatix EHR" }, "version": { - "id": 8379, - "name": "FHIR4-B" + "id": 8882, + "name": "7.8" }, - "certificationDate": "2021-12-21", + "certificationDate": "2023-11-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://dynamicfhirpresentation.dynamicfhirsandbox.com/dhithealth/practiceone/r4/Home/ApiDocumentation" + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://www.dynamichealthit.com/dynamic-fhir-api", + "listSourceURL": "https://www.geesemed.com/Medical%20-%20Doc/GeeseMed%20fhir-base-urls.csv", "softwareProducts": [ { - "id": 10697, - "chplProductNumber": "15.02.02.2713.A122.01.02.0.210928", + "id": 11104, + "chplProductNumber": "15.04.04.3013.Gees.07.02.1.221221", "edition": { "id": 3, "name": "2015" @@ -11300,122 +27269,117 @@ "name": "" }, "developer": { - "id": 1714, - "name": "Dynamic Health IT, Inc" + "id": 2014, + "name": "MDOfficeManager" }, "product": { - "id": 3588, - "name": "ConnectEHR +BulkFHIR" + "id": 2859, + "name": "GeeseMed" }, "version": { - "id": 8379, - "name": "FHIR4-B" + "id": 8681, + "name": "7.1" }, - "certificationDate": "2021-09-28", + "certificationDate": "2022-12-21", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 29, @@ -11423,44 +27387,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 36, @@ -11468,9 +27452,9 @@ "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -11478,17 +27462,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + "value": "https://www.geesemed.com/api.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + "value": "https://www.geesemed.com/api.html" }, { "criterion": { @@ -11496,19 +27480,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" + "value": "https://www.geesemed.com/api.html" } ], - "acb": "UL LLC" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir.cozeva.com/endpoints", + "listSourceURL": "https://geniusdoc.com/API.php", "softwareProducts": [ { - "id": 11139, - "chplProductNumber": "15.04.04.1102.Coze.03.02.0.221227", + "id": 10745, + "chplProductNumber": "15.02.05.1529.GDOC.01.01.1.211209", "edition": { "id": 3, "name": "2015" @@ -11518,32 +27502,62 @@ "name": "" }, "developer": { - "id": 103, - "name": "Applied Research Works, Inc." + "id": 530, + "name": "GeniusDoc, Inc." }, "product": { - "id": 183, - "name": "Cozeva" + "id": 814, + "name": "GeniusDoc" }, "version": { - "id": 8709, - "name": "3.1" + "id": 7603, + "name": "12.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2021-12-09", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -11551,14 +27565,9 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -11566,39 +27575,179 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -11606,9 +27755,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhir.developers.cozeva.com/" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" }, { "criterion": { @@ -11616,27 +27765,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir.developers.cozeva.com/" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.developers.cozeva.com/" + "value": "https://geniusdoc.com/API.php" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://qualifacts.com/api-page/_downloads/credible-fhir-org-list.json", + "listSourceURL": "https://api.sevocity.com/api/patients/v1/Endpoint", "softwareProducts": [ { - "id": 11183, - "chplProductNumber": "15.04.04.2704.Cred.11.01.1.221230", + "id": 11186, + "chplProductNumber": "15.04.04.2324.Geri.GE.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -11646,197 +27795,177 @@ "name": "" }, "developer": { - "id": 1705, - "name": "Credible Behavioral Health, Inc." + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3179, - "name": "Credible Behavioral Health" + "id": 2907, + "name": "Geriatrics Select EHR powered by Sevocity�" }, "version": { - "id": 7143, - "name": "Version 11" + "id": 8740, + "name": "v13.0" }, "certificationDate": "2022-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "title": "Encrypt Authentication Credentials" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 25, @@ -11844,39 +27973,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -11886,35 +28010,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.qualifacts.com/api-documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.qualifacts.com/api-documentation/" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.qualifacts.com/api-documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://criterions.com/fhir-end-points/", - "softwareProducts": [ + }, { - "id": 10171, - "chplProductNumber": "15.04.04.2705.Crit.04.00.1.191111", + "id": 11189, + "chplProductNumber": "15.04.04.2324.Pain.PA.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -11924,47 +28043,62 @@ "name": "" }, "developer": { - "id": 1706, - "name": "Criterions Software Inc" + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3497, - "name": "Criterions EHR" + "id": 2908, + "name": "Pain Care Select EHR powered by Sevocity�" }, "version": { - "id": 7909, - "name": "4" + "id": 8743, + "name": "v13.0" }, - "certificationDate": "2019-11-11", + "certificationDate": "2022-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 4, @@ -11972,44 +28106,54 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -12017,14 +28161,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 15, @@ -12032,34 +28176,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -12067,117 +28206,82 @@ "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://criterions.com/documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://criterions.com/fhir-api-documentation/" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://criterions.com/fhir-api-documentation/" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.crystalpm.com/FHIRServiceURLs.csv", - "softwareProducts": [ + }, { - "id": 10996, - "chplProductNumber": "15.04.04.1030.Crys.06.01.1.221004", + "id": 11187, + "chplProductNumber": "15.04.04.2324.Sevo.13.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -12187,32 +28291,57 @@ "name": "" }, "developer": { - "id": 31, - "name": "Abeo Solutions, Inc" + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3017, - "name": "Crystal Practice Management" + "id": 2132, + "name": "Sevocity" }, "version": { - "id": 8592, - "name": "6.0" + "id": 8741, + "name": "v13.0" }, - "certificationDate": "2022-10-04", + "certificationDate": "2022-12-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 34, @@ -12220,59 +28349,54 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -12280,44 +28404,34 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -12325,29 +28439,29 @@ "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 14, @@ -12355,77 +28469,67 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.curemd.com/developer/base-fhir-urls", - "softwareProducts": [ + }, { - "id": 11246, - "chplProductNumber": "15.07.04.2706.CURE.10.01.1.230302", + "id": 11193, + "chplProductNumber": "15.04.04.2324.Surg.SU.01.1.221230", "edition": { "id": 3, "name": "2015" @@ -12435,87 +28539,62 @@ "name": "" }, "developer": { - "id": 1707, - "name": "CureMD.com, Inc." + "id": 1325, + "name": "Sevocity, a division of Conceptual MindWorks, Inc" }, "product": { - "id": 3181, - "name": "CureMD SMART Cloud" + "id": 2909, + "name": "Surgery Select EHR powered by Sevocity�" }, "version": { - "id": 554, - "name": "10g" + "id": 8745, + "name": "v13.0" }, - "certificationDate": "2023-03-02", + "certificationDate": "2022-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 34, @@ -12523,9 +28602,14 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 44, @@ -12533,14 +28617,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -12548,19 +28642,29 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 52, @@ -12568,14 +28672,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -12583,24 +28682,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 5, @@ -12608,29 +28707,29 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -12638,62 +28737,52 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://static.glaceemr.com/endpoints/urls.json", + "softwareProducts": [ { - "id": 8603, - "chplProductNumber": "15.07.07.2706.CU01.01.00.1.170705", + "id": 9559, + "chplProductNumber": "15.04.04.1535.Glac.06.00.1.180629", "edition": { "id": 3, "name": "2015" @@ -12703,82 +28792,47 @@ "name": "" }, "developer": { - "id": 1707, - "name": "CureMD.com, Inc." + "id": 536, + "name": "Glenwood Systems LLC" }, "product": { - "id": 3181, - "name": "CureMD SMART Cloud" + "id": 3229, + "name": "GlaceEMR" }, "version": { - "id": 6709, - "name": "10g" + "id": 7396, + "name": "6.0" }, - "certificationDate": "2017-07-05", + "certificationDate": "2018-06-29", "certificationStatus": { - "id": 4, - "name": "Withdrawn by ONC-ACB" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -12786,9 +28840,9 @@ "title": "Quality Management System" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 35, @@ -12796,49 +28850,59 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -12846,34 +28910,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 26, @@ -12881,54 +28940,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 1, @@ -12936,39 +29000,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -12978,35 +29057,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + "value": "https://api.glaceemr.com/documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.curemd.com/developer/curemdapiguide.pdf" + "value": "https://api.glaceemr.com/documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.curemd.com/developer/fhir-apis.pdf" + "value": "https://api.glaceemr.com/documentation" } ], - "acb": "ICSA Labs" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://aidbox.cx360.net/service-base-urls", + "listSourceURL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", "softwareProducts": [ { - "id": 9168, - "chplProductNumber": "15.04.04.2703.Cx36.07.00.1.171226", + "id": 11352, + "chplProductNumber": "15.04.04.2913.Prim.21.03.1.231003", "edition": { "id": 3, "name": "2015" @@ -13016,152 +29095,147 @@ "name": "" }, "developer": { - "id": 1704, - "name": "Core Solutions Inc" + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 488, - "name": "Cx360" + "id": 3230, + "name": "Greenway Prime Suite" }, "version": { - "id": 7096, - "name": "7" + "id": 8563, + "name": "v21" }, - "certificationDate": "2017-12-26", + "certificationDate": "2023-10-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 4, @@ -13169,92 +29243,87 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" + "value": "https://developers.greenwayhealth.com/developer-platform" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir", - "softwareProducts": [ + }, { - "id": 10072, - "chplProductNumber": "15.04.04.2975.Cyfl.03.00.1.190813", + "id": 10969, + "chplProductNumber": "15.04.04.2913.Gree.21.02.1.220831", "edition": { "id": 3, "name": "2015" @@ -13264,127 +29333,42 @@ "name": "" }, "developer": { - "id": 1976, - "name": "Cyfluent" + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 515, - "name": "Cyfluent" + "id": 3230, + "name": "Greenway Prime Suite" }, "version": { - "id": 7821, - "name": "Version 3.2" + "id": 8563, + "name": "v21" }, - "certificationDate": "2019-08-13", + "certificationDate": "2022-08-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -13392,49 +29376,44 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -13442,24 +29421,24 @@ "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -13467,19 +29446,29 @@ "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 21, @@ -13487,24 +29476,29 @@ "title": "Data Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 14, @@ -13512,52 +29506,67 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developers.greenwayhealth.com/developer-platform" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://portal.doxemr.aidbox.io/service-base-urls", - "softwareProducts": [ + }, { - "id": 10806, - "chplProductNumber": "15.02.05.1317.DOXE.01.01.1.220131", + "id": 10968, + "chplProductNumber": "15.04.04.2913.Gree.21.04.0.220831", "edition": { "id": 3, "name": "2015" @@ -13567,67 +29576,77 @@ "name": "" }, "developer": { - "id": 318, - "name": "DOX EMR" + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 520, - "name": "DOX EMR" + "id": 3504, + "name": "Intergy EHR" }, "version": { - "id": 7206, - "name": "5.2" + "id": 8562, + "name": "v21" }, - "certificationDate": "2022-01-31", + "certificationDate": "2022-08-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 12, @@ -13635,162 +29654,162 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://podiatry.doxemr.net/DoxExtAPI/g10-API-for-patient-and-population-services.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://digidms.com/documents/DigiDMSFHIR_ServiceURL.pdf", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11059, - "chplProductNumber": "15.04.04.2709.Digi.22.02.1.221209", + "id": 11351, + "chplProductNumber": "15.04.04.2913.Inte.21.05.0.231003", "edition": { "id": 3, "name": "2015" @@ -13800,132 +29819,52 @@ "name": "" }, "developer": { - "id": 1710, - "name": "DigiDMS, Inc." + "id": 1914, + "name": "Greenway Health, LLC" }, "product": { - "id": 3184, - "name": "DigiDMS" + "id": 3504, + "name": "Intergy EHR" }, "version": { - "id": 8645, - "name": "22.0" + "id": 8562, + "name": "v21" }, - "certificationDate": "2022-12-09", + "certificationDate": "2023-10-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -13933,114 +29872,134 @@ "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -14048,35 +30007,40 @@ "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" } ], "acb": "Drummond Group" @@ -14084,11 +30048,11 @@ ] }, { - "listSourceURL": "https://drcloudemr.com/drcloudehr-api-documentation/", + "listSourceURL": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR/api/Endpoint?connection-type=hl7-fhir-rest", "softwareProducts": [ { - "id": 10835, - "chplProductNumber": "15.02.05.1434.ENST.01.01.1.220218", + "id": 11416, + "chplProductNumber": "15.99.04.1582.HC01.10.02.1.231220", "edition": { "id": 3, "name": "2015" @@ -14098,87 +30062,92 @@ "name": "" }, "developer": { - "id": 435, - "name": "EnSoftek, Inc" + "id": 583, + "name": "Health Care Systems, Inc." }, "product": { - "id": 3081, - "name": "DrCloudEHR" + "id": 889, + "name": "HCS eMR" }, "version": { - "id": 7760, - "name": "2025" + "id": 8925, + "name": "10" }, - "certificationDate": "2022-02-18", + "certificationDate": "2023-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, @@ -14191,59 +30160,64 @@ "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 14, @@ -14251,29 +30225,39 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 15, @@ -14281,59 +30265,87 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://drcloudemr.com/drcloudehr-api-documentation/" + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, { "criterion": { @@ -14341,27 +30353,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.drcloudemr.com/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://docs.drcloudemr.com/display/DRCLOUD/End+User+DrCloudEHR+MU3+API+Documentation" + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://drsdoc.com/fhir%20service%20urls.pdf", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11072, - "chplProductNumber": "15.04.04.1764.DrsE.12.01.1.221213", + "id": 11168, + "chplProductNumber": "15.07.04.1582.HC01.09.01.1.221229", "edition": { "id": 3, "name": "2015" @@ -14371,37 +30370,97 @@ "name": "" }, "developer": { - "id": 765, - "name": "Keiser Computers, Inc." + "id": 583, + "name": "Health Care Systems, Inc." }, "product": { - "id": 1141, - "name": "Drs Enterprise" + "id": 889, + "name": "HCS eMR" }, "version": { - "id": 8654, - "name": "12" + "id": 7771, + "name": "9" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 12, @@ -14409,29 +30468,44 @@ "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -14439,34 +30513,39 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -14474,29 +30553,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, @@ -14504,34 +30568,34 @@ "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 36, @@ -14539,9 +30603,9 @@ "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 4, @@ -14549,29 +30613,47 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://drsdoc.com/FHIRapi" + "value": "https://hcswebportal.corporate.hcsinc.net/hcsclinicals_fhir" }, { "criterion": { @@ -14579,15 +30661,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://drsdoc.com/FHIRapi" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "http://drsdoc.com/FHIRapi" + "value": "https://hcswebportal.corporate.hcsinc.net/hcsclinicals_fhir" } ], "acb": "Drummond Group" @@ -14595,11 +30669,11 @@ ] }, { - "listSourceURL": "https://mpnproxyfhirstore.blob.core.windows.net/serviceurl/ServiceBaseURLs.csv", + "listSourceURL": "https://hag-fhir.amazingcharts.com/ct/endpoints", "softwareProducts": [ { - "id": 11144, - "chplProductNumber": "15.04.04.1853.ECLI.03.01.1.221227", + "id": 9589, + "chplProductNumber": "15.04.04.1569.Harr.09.00.1.180701", "edition": { "id": 3, "name": "2015" @@ -14609,57 +30683,62 @@ "name": "" }, "developer": { - "id": 854, - "name": "MPN Software Systems, Inc." + "id": 570, + "name": "Harris CareTracker, Inc" }, "product": { - "id": 2855, - "name": "ECLIPSE Spectrum" + "id": 3231, + "name": "Harris CareTracker" }, "version": { - "id": 8713, - "name": "v3" + "id": 7411, + "name": "9" }, - "certificationDate": "2022-12-27", + "certificationDate": "2018-07-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, @@ -14667,169 +30746,177 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" + "value": "https://harrisambulatory.com/caretracker-api-documentation/" }, { "criterion": { @@ -14837,15 +30924,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -14853,11 +30932,11 @@ ] }, { - "listSourceURL": "https://fhirpt-stage.officeally.com/fhir/r4/endpoints", + "listSourceURL": "https://app-52512.on-aptible.com/service-base-urls", "softwareProducts": [ { - "id": 11093, - "chplProductNumber": "15.04.04.2822.EHR2.05.01.1.221219", + "id": 11055, + "chplProductNumber": "15.04.04.3130.Heal.01.00.1.221207", "edition": { "id": 3, "name": "2015" @@ -14867,82 +30946,92 @@ "name": "" }, "developer": { - "id": 1823, - "name": "Office Ally, LLC" + "id": 2131, + "name": "Healthie" }, "product": { - "id": 3192, - "name": "EHR 24/7" + "id": 3661, + "name": "Healthie" }, "version": { - "id": 8671, - "name": "5.1.0" + "id": 8641, + "name": "Cures 1" }, - "certificationDate": "2022-12-19", + "certificationDate": "2022-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -14952,42 +31041,27 @@ { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 29, @@ -14995,79 +31069,84 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + "value": "https://cmpl.aidbox.app/documentation" }, { "criterion": { @@ -15075,15 +31154,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + "value": "https://cmpl.aidbox.app/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -15091,11 +31170,11 @@ ] }, { - "listSourceURL": "https://ehryourway.com/content/fhir-service-urls.pdf", + "listSourceURL": "https://amsemr.com/endpoints/", "softwareProducts": [ { - "id": 10757, - "chplProductNumber": "15.02.05.1042.ADAP.01.01.0.211220", + "id": 10834, + "chplProductNumber": "15.02.05.1086.AMEM.01.01.1.220217", "edition": { "id": 3, "name": "2015" @@ -15105,82 +31184,52 @@ "name": "" }, "developer": { - "id": 43, - "name": "Adaptamed, LLC" + "id": 87, + "name": "American Medical Solutions, Inc." }, "product": { - "id": 2984, - "name": "EHR Your Way" + "id": 166, + "name": "Helios" }, "version": { - "id": 7536, - "name": "9.2.0.0" + "id": 8077, + "name": "2.0" }, - "certificationDate": "2021-12-20", + "certificationDate": "2022-02-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 25, @@ -15188,49 +31237,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 32, @@ -15238,24 +31287,29 @@ "title": "Amendments" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -15263,24 +31317,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -15288,64 +31347,77 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.interopengine.com/2021/open-api-documentation.html" + }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ehryourway.com/api" + "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, { "criterion": { @@ -15353,15 +31425,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ehryourway.com/api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" + "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" } ], "acb": "SLI Compliance" @@ -15369,11 +31433,11 @@ ] }, { - "listSourceURL": "https://mm-fhir-endpoint-display.prod.fhir.ema-api.com/", + "listSourceURL": "https://www.ipclinical.com/mu-disclosure.html", "softwareProducts": [ { - "id": 11032, - "chplProductNumber": "15.04.04.2002.EMA6.70.18.1.221129", + "id": 10278, + "chplProductNumber": "15.05.05.2163.PEMR.01.00.1.200123", "edition": { "id": 3, "name": "2015" @@ -15383,32 +31447,47 @@ "name": "" }, "developer": { - "id": 1003, - "name": "Modernizing Medicine" + "id": 1164, + "name": "Physicians EMR, LLC" }, "product": { - "id": 1697, - "name": "EMA" + "id": 1925, + "name": "IPClinical" }, "version": { - "id": 8623, - "name": "7" + "id": 1259, + "name": "2.1" }, - "certificationDate": "2022-11-29", + "certificationDate": "2020-01-23", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { "id": 56, @@ -15416,19 +31495,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 12, @@ -15436,99 +31505,179 @@ "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 34, @@ -15536,77 +31685,72 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ipclinical.com/mu-disclosure.html" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.modmed.com/public-api-v2/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://inpracsys.com/fhir", + "softwareProducts": [ { - "id": 11145, - "chplProductNumber": "15.04.04.1467.Exsc.07.01.1.221227", + "id": 10194, + "chplProductNumber": "15.05.05.2762.INPS.01.00.1.191206", "edition": { "id": 3, "name": "2015" @@ -15616,42 +31760,67 @@ "name": "" }, "developer": { - "id": 468, - "name": "Exscribe, Inc." + "id": 1763, + "name": "InPracSys" }, "product": { - "id": 714, - "name": "Exscribe EHR" + "id": 3261, + "name": "InPracSys EHR" }, "version": { - "id": 8714, - "name": "7" + "id": 7931, + "name": "9.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2019-12-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -15664,109 +31833,124 @@ "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 9, @@ -15774,49 +31958,49 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -15824,9 +32008,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://exscribemobile.com/MU/EhrApiV01/" + "value": "https://inpracsys.com/fhir" }, { "criterion": { @@ -15834,22 +32018,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://exscribemobile.com/MU/EhrApiV01/" + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://exscribemobile.com/MU/EhrApiV01/" + "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", + "softwareProducts": [ { - "id": 11088, - "chplProductNumber": "15.04.04.2900.Eyef.07.17.1.221219", + "id": 10858, + "chplProductNumber": "15.02.05.3124.INSY.01.03.1.220314", "edition": { "id": 3, "name": "2015" @@ -15859,27 +32048,47 @@ "name": "" }, "developer": { - "id": 1901, - "name": "Eyefinity, Inc." + "id": 2125, + "name": "Qualifacts Systems, LLC" }, "product": { - "id": 3552, - "name": "Eyefinity EHR powered by EMA" + "id": 1070, + "name": "Insync EMR/PM" }, "version": { - "id": 8666, - "name": "7" + "id": 7961, + "name": "10" }, - "certificationDate": "2022-12-19", + "certificationDate": "2022-03-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -15887,104 +32096,124 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -15992,24 +32221,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -16017,39 +32241,39 @@ "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -16057,32 +32281,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://www.qualifacts.com/api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://www.qualifacts.com/api-documentation/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://www.integraconnect.com/certifications/", + "softwareProducts": [ { - "id": 11054, - "chplProductNumber": "15.04.04.3031.gGas.GA.10.1.221207", + "id": 11025, + "chplProductNumber": "15.04.04.2964.Inte.20.02.1.221122", "edition": { "id": 3, "name": "2015" @@ -16092,52 +32321,47 @@ "name": "" }, "developer": { - "id": 2032, - "name": "Modernizing Medicine Gastroenterology, Inc." + "id": 1965, + "name": "Integra Connect Newco, LLC" }, "product": { - "id": 3020, - "name": "gGastro" + "id": 3006, + "name": "IntegraCloud EHR" }, "version": { - "id": 8640, - "name": "6" + "id": 8616, + "name": "20.28" }, - "certificationDate": "2022-12-07", + "certificationDate": "2022-11-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -16145,64 +32369,69 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -16210,104 +32439,84 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, { "criterion": { @@ -16315,15 +32524,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.modmed.com/public-api-v2/" + "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } ], "acb": "Drummond Group" @@ -16331,11 +32540,11 @@ ] }, { - "listSourceURL": "https://elationfhir.readme.io/reference/service-base-urls", + "listSourceURL": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/", "softwareProducts": [ { - "id": 9876, - "chplProductNumber": "15.04.04.2717.Elat.03.00.1.181231", + "id": 11067, + "chplProductNumber": "15.05.05.3133.CHTS.01.00.1.221213", "edition": { "id": 3, "name": "2015" @@ -16345,32 +32554,37 @@ "name": "" }, "developer": { - "id": 1718, - "name": "Elation Health, Inc." + "id": 2134, + "name": "CHN Tech Solutions LLC" }, "product": { - "id": 3036, - "name": "Elation EMR" + "id": 3664, + "name": "Integrated Care EHR" }, "version": { - "id": 7651, - "name": "Version 3" + "id": 8651, + "name": "3" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -16378,14 +32592,9 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -16393,44 +32602,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -16438,39 +32667,122 @@ "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://onc.chntechsolutions.com/home/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhirtest.intelichart.com/Help/BaseUrl", + "softwareProducts": [ + { + "id": 8854, + "chplProductNumber": "15.04.04.1722.Inte.35.00.1.170921", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 723, + "name": "InteliChart LLC" + }, + "product": { + "id": 1086, + "name": "InteliChart Patient Portal" + }, + "version": { + "id": 6881, + "name": "3.5" + }, + "certificationDate": "2017-09-21", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -16478,34 +32790,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -16513,29 +32815,24 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 42, @@ -16543,24 +32840,34 @@ "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -16570,35 +32877,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.elationhealth.com/reference" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.elationhealth.com/reference/introduction" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.elationhealth.com/reference/introduction" + "value": "https://openapitest.intelichart.com/Help" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://api.enablemyhealth.com", - "softwareProducts": [ + }, { - "id": 10795, - "chplProductNumber": "15.02.05.1439.ENAD.01.01.1.220118", + "id": 11344, + "chplProductNumber": "15.04.04.2925.JUNP.23.01.1.230914", "edition": { "id": 3, "name": "2015" @@ -16608,87 +32910,27 @@ "name": "" }, "developer": { - "id": 440, - "name": "EnableDoc LLC" + "id": 1926, + "name": "DSS, Inc." }, "product": { - "id": 3528, - "name": "Enablemypractice" + "id": 3729, + "name": "Juno Patient Portal" }, "version": { - "id": 8028, - "name": "EHR 5.0" + "id": 8858, + "name": "V23" }, - "certificationDate": "2022-01-18", + "certificationDate": "2023-09-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, @@ -16696,49 +32938,19 @@ "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 33, @@ -16746,39 +32958,44 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -16788,32 +33005,22 @@ { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -16821,37 +33028,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://apitest.enablemyhealth.com/" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apitest.enablemyhealth.com/" + "value": "https://openapitest.intelichart.com/Help" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api.enablemyhealth.com" + "value": "https://openapitest.intelichart.com/Help" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://www.endosoft.com/fhir", + "listSourceURL": "https://www.nextech.com/developers-portal", "softwareProducts": [ { - "id": 10854, - "chplProductNumber": "15.02.05.2721.ENDV.01.01.1.220310", + "id": 11027, + "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", "edition": { "id": 3, "name": "2015" @@ -16861,77 +33068,27 @@ "name": "" }, "developer": { - "id": 1722, - "name": "EndoSoft, LLC" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 3487, - "name": "EndoVault" + "id": 3655, + "name": "IntelleChartPRO" }, "version": { - "id": 7877, - "name": "3.2" + "id": 8618, + "name": "8" }, - "certificationDate": "2022-03-10", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -16939,34 +33096,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 32, @@ -16974,39 +33131,14 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 25, @@ -17014,69 +33146,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "title": "Transitions of Care" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -17084,92 +33196,97 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.endosoft.com/fhir" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://open.epic.com/MyApps/Endpoints", + "listSourceURL": "https://www.meditab.com/fhir/endpoints", "softwareProducts": [ { - "id": 10869, - "chplProductNumber": "15.04.04.1447.Epic.AM.21.1.220318", + "id": 9739, + "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", "edition": { "id": 3, "name": "2015" @@ -17179,37 +33296,37 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1805, + "name": "MedPharm Services LLC" }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 2978, + "name": "Intelligent Medical Software (IMS)" }, "version": { - "id": 8467, - "name": "February 2022" + "id": 7535, + "name": "14.0 SP 1" }, - "certificationDate": "2022-03-18", + "certificationDate": "2018-11-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -17217,84 +33334,109 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 42, @@ -17302,54 +33444,59 @@ "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 2, @@ -17357,34 +33504,29 @@ "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -17392,17 +33534,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.meditab.com/fhir/specifications" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://meditab.com/api" }, { "criterion": { @@ -17410,14 +33552,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "http://www.meditab.com/api/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://demo.interopx.com/ix-auth-server/#/endpoints", + "softwareProducts": [ { - "id": 11262, - "chplProductNumber": "15.04.04.1447.Epic.AM.24.1.230308", + "id": 10939, + "chplProductNumber": "15.04.04.3116.Inte.01.00.0.220707", "edition": { "id": 3, "name": "2015" @@ -17427,32 +33574,27 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 2117, + "name": "InteropX" }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 3635, + "name": "InteropX" }, "version": { - "id": 8783, - "name": "February 2023" + "id": 8535, + "name": "1.5.3" }, - "certificationDate": "2023-03-08", + "certificationDate": "2022-07-07", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -17460,84 +33602,86 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, + } + ], + "apiDocumentation": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://demo.interopx.com/ix-auth-server/#/api-specifications" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", + "softwareProducts": [ + { + "id": 11283, + "chplProductNumber": "15.04.04.2925.CONN.04.04.0.230427", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1926, + "name": "DSS, Inc." + }, + "product": { + "id": 3642, + "name": "Juno ConnectEHR" + }, + "version": { + "id": 8800, + "name": "v22" + }, + "certificationDate": "2023-04-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -17545,34 +33689,34 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -17580,14 +33724,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 32, @@ -17595,44 +33739,64 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -17642,30 +33806,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" }, { - "id": 10941, - "chplProductNumber": "15.04.04.1447.Epic.AM.22.1.220713", + "id": 10962, + "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", "edition": { "id": 3, "name": "2015" @@ -17675,152 +33839,127 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1926, + "name": "DSS, Inc." }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 3642, + "name": "Juno ConnectEHR" }, "version": { - "id": 8537, - "name": "May 2022" + "id": 8556, + "name": "22" }, - "certificationDate": "2022-07-13", + "certificationDate": "2022-08-17", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -17828,19 +33967,14 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 51, @@ -17848,49 +33982,42 @@ "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { @@ -17898,22 +34025,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://fhirjuno-prod-web.dssinc.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 11120, - "chplProductNumber": "15.04.04.1447.Epic.AM.23.1.221222", + "id": 11301, + "chplProductNumber": "15.04.04.2925.Juno.23.01.1.230620", "edition": { "id": 3, "name": "2015" @@ -17923,67 +34047,62 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1926, + "name": "DSS, Inc." }, "product": { - "id": 2980, - "name": "EpicCare Ambulatory Base" + "id": 2938, + "name": "Juno EHR" }, "version": { - "id": 8693, - "name": "November 2022" + "id": 8817, + "name": "v23" }, - "certificationDate": "2022-12-22", + "certificationDate": "2023-06-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 1, @@ -17991,9 +34110,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -18001,34 +34120,29 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -18036,99 +34150,84 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -18136,122 +34235,81 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://fhirjuno-prod-web.dssinc.com/communityhealthhospitals/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://dssjess-dev-web.dssinc.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 10942, - "chplProductNumber": "15.04.04.1447.Epic.IN.23.1.220713", + "id": 10864, + "chplProductNumber": "15.04.04.2925.JESS.03.02.1.220304", "edition": { "id": 3, "name": "2015" }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 448, - "name": "Epic Systems Corporation" - }, - "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" - }, - "version": { - "id": 8538, - "name": "May 2022" - }, - "certificationDate": "2022-07-13", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1926, + "name": "DSS, Inc." + }, + "product": { + "id": 3539, + "name": "Juno Emergency Services Solution" + }, + "version": { + "id": 8462, + "name": "v3.2" + }, + "certificationDate": "2022-03-04", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 5, @@ -18259,69 +34317,64 @@ "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -18329,24 +34382,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 12, @@ -18354,62 +34422,46 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://dssjess-dev-web.dssinc.com/jess/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://docs.kodjin.com/service-base-urls/", + "softwareProducts": [ { - "id": 11119, - "chplProductNumber": "15.04.04.1447.Epic.IN.24.1.221222", + "id": 11265, + "chplProductNumber": "15.04.04.3148.Kodj.03.00.0.230330", "edition": { "id": 3, "name": "2015" @@ -18419,107 +34471,202 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 2149, + "name": "EDENLAB OÜ" }, "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" + "id": 3702, + "name": "Kodjin FHIR Server" }, "version": { - "id": 8692, - "name": "November 2022" + "id": 8785, + "name": "3" }, - "certificationDate": "2022-12-22", + "certificationDate": "2023-03-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.kodjin.com/getting-started-with-standartized-api" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.kodjin.com/getting-started-with-standartized-api" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.mdlogic.com/solutions/standard-api-documentation", + "softwareProducts": [ + { + "id": 11403, + "chplProductNumber": "15.04.04.2785.MDLo.08.03.1.231206", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1786, + "name": "MD Logic, Inc." + }, + "product": { + "id": 2821, + "name": "MD Logic EHR" + }, + "version": { + "id": 8913, + "name": "8.0" + }, + "certificationDate": "2023-12-06", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 52, @@ -18527,84 +34674,94 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -18612,52 +34769,42 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" }, { - "id": 10872, - "chplProductNumber": "15.04.04.1447.Epic.IN.22.1.220318", + "id": 11056, + "chplProductNumber": "15.04.04.2785.MDLo.07.02.1.221207", "edition": { "id": 3, "name": "2015" @@ -18667,77 +34814,67 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 1786, + "name": "MD Logic, Inc." }, "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" + "id": 2821, + "name": "MD Logic EHR" }, "version": { - "id": 8470, - "name": "February 2022" + "id": 8642, + "name": "7.2" }, - "certificationDate": "2022-03-18", + "certificationDate": "2022-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 42, @@ -18747,52 +34884,62 @@ { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 51, @@ -18800,44 +34947,39 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -18845,52 +34987,47 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" }, { "criterion": { @@ -18898,14 +35035,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://www.mdlogic.com/solutions/api-documentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html", + "softwareProducts": [ { - "id": 11263, - "chplProductNumber": "15.04.04.1447.Epic.IN.25.1.230315", + "id": 10792, + "chplProductNumber": "15.02.05.1836.MDOP.01.01.1.220117", "edition": { "id": 3, "name": "2015" @@ -18915,192 +35057,147 @@ "name": "" }, "developer": { - "id": 448, - "name": "Epic Systems Corporation" + "id": 837, + "name": "MDOps Corporation" }, "product": { - "id": 2917, - "name": "EpicCare Inpatient Base" + "id": 1266, + "name": "MDLog" }, "version": { - "id": 8784, - "name": "February 2023" + "id": 8306, + "name": "5.0" }, - "certificationDate": "2023-03-15", + "certificationDate": "2022-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -19108,19 +35205,14 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -19128,37 +35220,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://open.epic.com/Interface/FHIR" + "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://datalinksoftware.com/Endpoint.json", + "listSourceURL": "https://mdrfhirapi.mdronline.net", "softwareProducts": [ { - "id": 11110, - "chplProductNumber": "15.04.04.2895.Trin.04.01.1.221221", + "id": 9797, + "chplProductNumber": "15.04.04.2413.MDRh.08.00.1.181208", "edition": { "id": 3, "name": "2015" @@ -19168,27 +35260,32 @@ "name": "" }, "developer": { - "id": 1896, - "name": "DataLink Software, LLC" + "id": 1414, + "name": "TechSoft, Inc." }, "product": { - "id": 3453, - "name": "EvokeEHR" + "id": 2268, + "name": "MDRhythm" }, "version": { - "id": 8686, - "name": "4.0" + "id": 7581, + "name": "Version 8" }, - "certificationDate": "2022-12-21", + "certificationDate": "2018-12-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 52, @@ -19196,104 +35293,149 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -19301,80 +35443,90 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" + "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" + "value": "http://www.mdrhythm.com/onc-compliance.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://datalinksoftware.com/DataLink-FHIR-API-Documentation.html" + "value": "http://www.mdrhythm.com/onc-compliance.html" } ], "acb": "Drummond Group" @@ -19382,11 +35534,11 @@ ] }, { - "listSourceURL": "https://fhir.myeyecarerecords.com/fhir-endpoints", + "listSourceURL": "https://www.provider.care/FHIR/MDVitaFHIRUrls.csv", "softwareProducts": [ { - "id": 9988, - "chplProductNumber": "15.04.04.2725.EyeM.02.00.1.190501", + "id": 11000, + "chplProductNumber": "15.04.04.2904.MDVi.27.02.1.221020", "edition": { "id": 3, "name": "2015" @@ -19396,47 +35548,72 @@ "name": "" }, "developer": { - "id": 1726, - "name": "EyeMD EMR Healthcare Systems, Inc." + "id": 1905, + "name": "Health Care 2000, Inc." }, "product": { - "id": 3078, - "name": "EyeMD Electronic Medical Records" + "id": 3292, + "name": "MDVita" }, "version": { - "id": 7748, - "name": "Version 2" + "id": 8595, + "name": "27" }, - "certificationDate": "2019-05-01", + "certificationDate": "2022-10-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 171, "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -19444,54 +35621,69 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, @@ -19499,54 +35691,29 @@ "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 4, @@ -19554,60 +35721,65 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.myeyecarerecords.com/api" + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.myeyecarerecords.com/api" + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.myeyecarerecords.com/api" + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } ], "acb": "Drummond Group" @@ -19615,11 +35787,11 @@ ] }, { - "listSourceURL": "https://docs.fire.ly/projects/Firely-Server/en/latest/_static/g10/EndpointBundleFirely.json", + "listSourceURL": "https://ehifire.ehiconnect.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11234, - "chplProductNumber": "15.04.04.3143.Fire.05.00.0.230208", + "id": 10247, + "chplProductNumber": "15.04.04.2719.MDne.10.01.1.191231", "edition": { "id": 3, "name": "2015" @@ -19629,139 +35801,77 @@ "name": "" }, "developer": { - "id": 2144, - "name": "Firely B.V." + "id": 1720, + "name": "Enable Healthcare Inc." }, "product": { - "id": 3695, - "name": "Firely Server" + "id": 3289, + "name": "MDnet" }, "version": { - "id": 8764, - "name": "5" + "id": 7788, + "name": "V10" }, - "certificationDate": "2023-02-08", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://fire.ly/g10-certification/" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://academy.practicesuite.com/fhir-server-links/", - "softwareProducts": [ - { - "id": 10789, - "chplProductNumber": "15.02.05.2198.FREC.01.02.1.220113", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1199, - "name": "PracticeSuite, Inc." - }, - "product": { - "id": 2913, - "name": "FreeChiro" - }, - "version": { - "id": 8430, - "name": "EHR-18.0.0" - }, - "certificationDate": "2022-01-13", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -19769,134 +35879,109 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -19904,39 +35989,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -19944,32 +36019,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" } ], - "acb": "SLI Compliance" - }, + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.medent.com/std_api/ServiceBaseURL.csv", + "softwareProducts": [ { - "id": 10788, - "chplProductNumber": "15.02.05.2198.PRAS.01.01.1.220113", + "id": 10609, + "chplProductNumber": "15.04.04.1840.MEDE.23.01.1.210413", "edition": { "id": 3, "name": "2015" @@ -19979,67 +36059,37 @@ "name": "" }, "developer": { - "id": 1199, - "name": "PracticeSuite, Inc." + "id": 841, + "name": "MEDENT - Community Computer Service, Inc." }, "product": { - "id": 3401, - "name": "PracticeSuite" + "id": 3299, + "name": "MEDENT" }, "version": { - "id": 8429, - "name": "EHR-18.0.0" + "id": 8305, + "name": "v23.5" }, - "certificationDate": "2022-01-13", + "certificationDate": "2021-04-13", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 59, @@ -20052,144 +36102,184 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, @@ -20197,47 +36287,47 @@ "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" + "value": "https://www.medent.com/onc/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://academy.practicesuite.com/mu-api/" + "value": "https://www.medent.com/onc/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://careconnect-uat.netsmartcloud.com/baseUrls", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11136, - "chplProductNumber": "15.04.04.2816.gEHR.04.03.1.221227", + "id": 11347, + "chplProductNumber": "15.04.04.1840.MEDE.23.02.1.230918", "edition": { "id": 3, "name": "2015" @@ -20247,18 +36337,18 @@ "name": "" }, "developer": { - "id": 1817, - "name": "Netsmart Technologies" + "id": 841, + "name": "MEDENT - Community Computer Service, Inc." }, "product": { - "id": 3676, - "name": "GEHRIMED" + "id": 3299, + "name": "MEDENT" }, "version": { - "id": 8706, - "name": "v.4.3" + "id": 8861, + "name": "v23.7" }, - "certificationDate": "2022-12-27", + "certificationDate": "2023-09-18", "certificationStatus": { "id": 1, "name": "Active" @@ -20270,24 +36360,79 @@ "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -20295,9 +36440,19 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -20305,19 +36460,24 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -20325,79 +36485,84 @@ "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -20407,22 +36572,17 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://www.medent.com/onc/" }, { "criterion": { @@ -20430,22 +36590,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://www.medent.com/onc/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://api.mhdi10xasayd.com/medhost-developer-composition/v1/fhir-base-urls.json", + "softwareProducts": [ { - "id": 11131, - "chplProductNumber": "15.04.04.2816.myEv.11.02.0.221227", + "id": 11374, + "chplProductNumber": "15.04.04.2788.MEDH.CL.09.1.231123", "edition": { "id": 3, "name": "2015" @@ -20455,52 +36620,27 @@ "name": "" }, "developer": { - "id": 1817, - "name": "Netsmart Technologies" + "id": 1789, + "name": "MEDHOST" }, "product": { - "id": 2870, - "name": "myEvolv Certified Edition" + "id": 2763, + "name": "MEDHOST Enterprise - Clinicals" }, "version": { - "id": 8701, - "name": "11.0" + "id": 8885, + "name": "2023 R1" }, - "certificationDate": "2022-12-27", + "certificationDate": "2023-11-23", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 37, @@ -20508,54 +36648,59 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -20563,9 +36708,14 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 4, @@ -20573,117 +36723,107 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { @@ -20691,14 +36831,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" } ], "acb": "Drummond Group" }, { - "id": 11057, - "chplProductNumber": "15.04.04.2816.myUn.22.01.0.221207", + "id": 10820, + "chplProductNumber": "15.04.04.2788.MEDH.CL.08.1.220204", "edition": { "id": 3, "name": "2015" @@ -20708,18 +36848,18 @@ "name": "" }, "developer": { - "id": 1817, - "name": "Netsmart Technologies" + "id": 1789, + "name": "MEDHOST" }, "product": { - "id": 3573, - "name": "myUnity" + "id": 2763, + "name": "MEDHOST Enterprise - Clinicals" }, "version": { - "id": 8643, - "name": "2022" + "id": 8441, + "name": "2022 R1" }, - "certificationDate": "2022-12-07", + "certificationDate": "2022-02-04", "certificationStatus": { "id": 1, "name": "Active" @@ -20730,30 +36870,15 @@ "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -20761,109 +36886,109 @@ "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, @@ -20871,34 +36996,44 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -20906,17 +37041,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://careconnect-uat.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" }, { "criterion": { @@ -20924,7 +37059,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://careconnect.netsmartcloud.com/" + "value": "https://developer.yourcareinteract.com/documentation" } ], "acb": "Drummond Group" @@ -20932,11 +37067,11 @@ ] }, { - "listSourceURL": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/FHIR_Service_URLs_MI.pdf", + "listSourceURL": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm", "softwareProducts": [ { - "id": 10714, - "chplProductNumber": "15.04.04.2734.GEMM.77.01.1.211110", + "id": 10972, + "chplProductNumber": "15.04.04.2931.MEDI.EH.01.1.220901", "edition": { "id": 3, "name": "2015" @@ -20946,37 +37081,27 @@ "name": "" }, "developer": { - "id": 1735, - "name": "GEMMS" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3227, - "name": "GEMMS ONE" + "id": 2837, + "name": "MEDITECH 6.0 Electronic Health Record Core HCIS" }, "version": { - "id": 7662, - "name": "V7.7C" + "id": 8566, + "name": "v6.08c" }, - "certificationDate": "2021-11-10", + "certificationDate": "2022-09-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -20984,39 +37109,34 @@ "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -21024,14 +37144,19 @@ "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 3, @@ -21039,94 +37164,74 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, @@ -21134,34 +37239,39 @@ "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" } ], "apiDocumentation": [ @@ -21169,17 +37279,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -21187,14 +37297,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 10683, - "chplProductNumber": "15.04.04.2795.MedI.77.01.1.210830", + "id": 10973, + "chplProductNumber": "15.04.04.2931.MEDI.E6.01.1.220901", "edition": { "id": 3, "name": "2015" @@ -21204,147 +37314,142 @@ "name": "" }, "developer": { - "id": 1796, - "name": "MedInformatix" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3039, - "name": "MedInformatix EHR" + "id": 3315, + "name": "MEDITECH 6.0 Emergency Department Management" }, "version": { - "id": 7661, - "name": "7.7" + "id": 8567, + "name": "v6.08c" }, - "certificationDate": "2021-08-30", + "certificationDate": "2022-09-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 39, @@ -21352,39 +37457,39 @@ "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -21392,19 +37497,14 @@ "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -21414,35 +37514,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.geesemed.com/Medical%20-%20Doc/GeeseMed%20fhir-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11104, - "chplProductNumber": "15.04.04.3013.Gees.07.02.1.221221", + "id": 10975, + "chplProductNumber": "15.04.04.2931.MEDI.08.01.1.220901", "edition": { "id": 3, "name": "2015" @@ -21452,62 +37547,57 @@ "name": "" }, "developer": { - "id": 2014, - "name": "MDOfficeManager" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2859, - "name": "GeeseMed" + "id": 2832, + "name": "MEDITECH 6.0 Medical and Practice Management (MPM) Electronic Health Record" }, "version": { - "id": 8681, - "name": "7.1" + "id": 8569, + "name": "v6.08c" }, - "certificationDate": "2022-12-21", + "certificationDate": "2022-09-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -21515,49 +37605,54 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -21565,39 +37660,39 @@ "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 4, @@ -21605,14 +37700,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -21620,24 +37715,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -21647,35 +37742,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.geesemed.com/api.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.geesemed.com/api.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.geesemed.com/api.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://geniusdoc.com/API.php", - "softwareProducts": [ + }, { - "id": 10745, - "chplProductNumber": "15.02.05.1529.GDOC.01.01.1.211209", + "id": 10937, + "chplProductNumber": "15.04.04.2931.MEDI.AM.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -21685,127 +37775,112 @@ "name": "" }, "developer": { - "id": 530, - "name": "GeniusDoc, Inc." + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 814, - "name": "GeniusDoc" + "id": 3322, + "name": "MEDITECH 6.1 Ambulatory Electronic Health Record" }, "version": { - "id": 7603, - "name": "12.0" + "id": 8533, + "name": "v6.15c" }, - "certificationDate": "2021-12-09", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -21813,24 +37888,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -21838,34 +37898,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -21873,19 +37918,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 15, @@ -21893,82 +37938,67 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://geniusdoc.com/API.php" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://api.sevocity.com/api/patients/v1/Endpoint", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11186, - "chplProductNumber": "15.04.04.2324.Geri.GE.01.1.221230", + "id": 10931, + "chplProductNumber": "15.04.04.2931.MEDI.HC.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -21978,67 +38008,52 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2907, - "name": "Geriatrics Select EHR powered by Sevocity�" + "id": 2838, + "name": "MEDITECH 6.1 Electronic Health Record Core HCIS" }, "version": { - "id": 8740, - "name": "v13.0" + "id": 8527, + "name": "v6.15c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -22046,19 +38061,24 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 52, @@ -22066,39 +38086,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -22106,79 +38121,79 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 25, @@ -22191,32 +38206,32 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 11189, - "chplProductNumber": "15.04.04.2324.Pain.PA.01.1.221230", + "id": 10935, + "chplProductNumber": "15.04.04.2931.MEDI.15.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -22226,52 +38241,37 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2908, - "name": "Pain Care Select EHR powered by Sevocity�" + "id": 3324, + "name": "MEDITECH 6.1 Emergency Department Management" }, "version": { - "id": 8743, - "name": "v13.0" + "id": 8531, + "name": "v6.15c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 34, @@ -22279,49 +38279,49 @@ "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, @@ -22329,34 +38329,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -22364,107 +38364,107 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 11187, - "chplProductNumber": "15.04.04.2324.Sevo.13.01.1.221230", + "id": 10982, + "chplProductNumber": "15.04.04.2931.MEDI.MC.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -22474,97 +38474,82 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2132, - "name": "Sevocity" + "id": 3328, + "name": "MEDITECH Client/Server Electronic Health Record Core HCIS" }, "version": { - "id": 8741, - "name": "v13.0" + "id": 8576, + "name": "v5.67c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 35, @@ -22572,114 +38557,114 @@ "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -22689,30 +38674,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 11193, - "chplProductNumber": "15.04.04.2324.Surg.SU.01.1.221230", + "id": 10984, + "chplProductNumber": "15.04.04.2931.MEDI.CS.01.1.220916", "edition": { "id": 3, "name": "2015" @@ -22722,77 +38707,47 @@ "name": "" }, "developer": { - "id": 1325, - "name": "Sevocity, a division of Conceptual MindWorks, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 2909, - "name": "Surgery Select EHR powered by Sevocity�" + "id": 3330, + "name": "MEDITECH Client/Server Emergency Department Management" }, "version": { - "id": 8745, - "name": "v13.0" + "id": 8578, + "name": "v5.67c" }, - "certificationDate": "2022-12-30", + "certificationDate": "2022-09-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -22800,54 +38755,64 @@ "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -22855,79 +38820,84 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" } ], "apiDocumentation": [ @@ -22935,17 +38905,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -22953,19 +38923,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://static.glaceemr.com/endpoints/urls.json", - "softwareProducts": [ + }, { - "id": 9559, - "chplProductNumber": "15.04.04.1535.Glac.06.00.1.180629", + "id": 10983, + "chplProductNumber": "15.04.04.2931.MEDI.PM.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -22975,82 +38940,57 @@ "name": "" }, "developer": { - "id": 536, - "name": "Glenwood Systems LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3229, - "name": "GlaceEMR" + "id": 3648, + "name": "MEDITECH Client/Server Medical and Practice Management (MPM) Electronic Health Record" }, "version": { - "id": 7396, - "name": "6.0" + "id": 8577, + "name": "v5.67c" }, - "certificationDate": "2018-06-29", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -23058,49 +38998,39 @@ "title": "Demographics" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 2, @@ -23108,29 +39038,19 @@ "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, @@ -23138,29 +39058,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23168,14 +39083,9 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -23183,54 +39093,39 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -23240,35 +39135,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.glaceemr.com/documentation" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.glaceemr.com/documentation" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.glaceemr.com/documentation" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://developers.greenwayhealth.com/developer-platform/page/fhir-base-urls", - "softwareProducts": [ + }, { - "id": 10969, - "chplProductNumber": "15.04.04.2913.Gree.21.02.1.220831", + "id": 10928, + "chplProductNumber": "15.04.04.2931.2931.16.02.1.220630", "edition": { "id": 3, "name": "2015" @@ -23278,172 +39168,167 @@ "name": "" }, "developer": { - "id": 1914, - "name": "Greenway Health, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3230, - "name": "Greenway Prime Suite" + "id": 3631, + "name": "MEDITECH Expanse 2.1 Ambulatory" }, "version": { - "id": 8563, - "name": "v21" + "id": 8524, + "name": "v2.1c" }, - "certificationDate": "2022-08-31", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 35, @@ -23451,52 +39336,42 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -23504,14 +39379,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" }, { - "id": 10968, - "chplProductNumber": "15.04.04.2913.Gree.21.04.0.220831", + "id": 10929, + "chplProductNumber": "15.04.04.2931.MEDI.CO.01.1.220630", "edition": { "id": 3, "name": "2015" @@ -23521,32 +39396,37 @@ "name": "" }, "developer": { - "id": 1914, - "name": "Greenway Health, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3504, - "name": "Intergy EHR" + "id": 3632, + "name": "MEDITECH Expanse 2.1 Core HCIS" }, "version": { - "id": 8562, - "name": "v21" + "id": 8525, + "name": "v2.1c" }, - "certificationDate": "2022-08-31", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 42, @@ -23554,109 +39434,114 @@ "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -23664,19 +39549,14 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -23684,44 +39564,29 @@ "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -23729,37 +39594,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://hag-fhir.amazingcharts.com/ct/endpoints", - "softwareProducts": [ + }, { - "id": 9589, - "chplProductNumber": "15.04.04.1569.Harr.09.00.1.180701", + "id": 10925, + "chplProductNumber": "15.04.04.2931.2931.02.03.1.220630", "edition": { "id": 3, "name": "2015" @@ -23769,117 +39629,92 @@ "name": "" }, "developer": { - "id": 570, - "name": "Harris CareTracker, Inc" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3231, - "name": "Harris CareTracker" + "id": 3547, + "name": "MEDITECH Expanse 2.2 Ambulatory" }, "version": { - "id": 7411, - "name": "9" + "id": 8521, + "name": "v2.2c" }, - "certificationDate": "2018-07-01", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23887,99 +39722,94 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -23989,35 +39819,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://amsemr.com/endpoints/", - "softwareProducts": [ + }, { - "id": 10834, - "chplProductNumber": "15.02.05.1086.AMEM.01.01.1.220217", + "id": 10926, + "chplProductNumber": "15.04.04.2931.MEDI.CO.02.1.220630", "edition": { "id": 3, "name": "2015" @@ -24027,32 +39852,27 @@ "name": "" }, "developer": { - "id": 87, - "name": "American Medical Solutions, Inc." + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 166, - "name": "Helios" + "id": 3548, + "name": "MEDITECH Expanse 2.2 Core HCIS" }, "version": { - "id": 8077, - "name": "2.0" + "id": 8522, + "name": "v2.2c" }, - "certificationDate": "2022-02-17", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 56, @@ -24060,79 +39880,64 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 14, @@ -24145,69 +39950,69 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -24215,72 +40020,62 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.interopengine.com/2021/open-api-documentation.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "HTTPS://INPRACSYS.COM/FHIR", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10194, - "chplProductNumber": "15.05.05.2762.INPS.01.00.1.191206", + "id": 10927, + "chplProductNumber": "15.04.04.2931.MEDI.ED.03.1.220630", "edition": { "id": 3, "name": "2015" @@ -24290,82 +40085,42 @@ "name": "" }, "developer": { - "id": 1763, - "name": "InPracSys" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3261, - "name": "InPracSys EHR" + "id": 3549, + "name": "MEDITECH Expanse 2.2 Emergency Department Management" }, "version": { - "id": 7931, - "name": "9.0" + "id": 8523, + "name": "v2.2c" }, - "certificationDate": "2019-12-06", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -24373,104 +40128,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -24478,97 +40228,87 @@ "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://ipsemrapi.inpracsys.com/App/web.html#jsintroduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "HTTPS://INPRACSYS.COM/FHIR" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://qualifacts.com/api-page/platform/insync/insync-fhir-org-list.html", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10858, - "chplProductNumber": "15.02.05.3124.INSY.01.03.1.220314", + "id": 10930, + "chplProductNumber": "15.04.04.2931.MEDI.16.02.1.220630", "edition": { "id": 3, "name": "2015" @@ -24578,42 +40318,32 @@ "name": "" }, "developer": { - "id": 2125, - "name": "Qualifacts Systems, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 1070, - "name": "Insync EMR/PM" + "id": 3633, + "name": "MEDITECH Expanse Emergency Department Management" }, "version": { - "id": 7961, - "name": "9.0.28" + "id": 8526, + "name": "v2.1c" }, - "certificationDate": "2022-03-14", + "certificationDate": "2022-06-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -24626,19 +40356,14 @@ "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 9, @@ -24646,34 +40371,34 @@ "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -24681,29 +40406,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -24711,99 +40441,74 @@ "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -24813,35 +40518,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.insynchcs.com/api-developers-guide" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.insynchcs.com/api-developers-guide" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://qualifacts.com/api-page/platform/insync/insync-fhir.html" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://www.integraconnect.com/certifications/", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11025, - "chplProductNumber": "15.04.04.2964.Inte.20.02.1.221122", + "id": 10979, + "chplProductNumber": "15.04.04.2931.MEDI.MM.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -24851,32 +40551,57 @@ "name": "" }, "developer": { - "id": 1965, - "name": "Integra Connect Newco, LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3006, - "name": "IntegraCloud EHR" + "id": 3338, + "name": "MEDITECH MAGIC Electronic Health Record Core HCIS" }, "version": { - "id": 8616, - "name": "20.28" + "id": 8573, + "name": "v5.67c" }, - "certificationDate": "2022-11-22", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 4, @@ -24888,40 +40613,25 @@ "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 35, @@ -24929,59 +40639,59 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -24989,72 +40699,59 @@ "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { @@ -25062,19 +40759,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/", - "softwareProducts": [ + }, { - "id": 11067, - "chplProductNumber": "15.05.05.3133.CHTS.01.00.1.221213", + "id": 10981, + "chplProductNumber": "15.04.04.2931.MEDI.EM.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -25084,62 +40784,107 @@ "name": "" }, "developer": { - "id": 2134, - "name": "CHN Tech Solutions LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3664, - "name": "Integrated Care EHR" + "id": 3342, + "name": "MEDITECH MAGIC Emergency Department Management" }, "version": { - "id": 8651, - "name": "3" + "id": 8575, + "name": "v5.67c" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -25147,24 +40892,19 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 171, "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Electronic Health Information Export" }, { "id": 56, @@ -25172,14 +40912,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 2, @@ -25187,49 +40922,44 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -25237,47 +40967,47 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://onc.chntechsolutions.com/home/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhirtest.intelichart.com/Help/BaseUrl", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 8854, - "chplProductNumber": "15.04.04.1722.Inte.35.00.1.170921", + "id": 10980, + "chplProductNumber": "15.04.04.2931.MEDI.EL.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -25287,57 +41017,37 @@ "name": "" }, "developer": { - "id": 723, - "name": "InteliChart LLC" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 1086, - "name": "InteliChart Patient Portal" + "id": 2805, + "name": "MEDITECH MAGIC Medical and Practice Management (MPM) Electronic Health Record" }, "version": { - "id": 6881, - "name": "3.5" + "id": 8574, + "name": "v5.67c" }, - "certificationDate": "2017-09-21", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -25350,80 +41060,170 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://openapitest.intelichart.com/Help" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://openapitest.intelichart.com/Help" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirapitest.intelichart.com/swagger" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -25431,11 +41231,11 @@ ] }, { - "listSourceURL": "https://www.nextech.com/developers-portal", + "listSourceURL": "https://fhir.meditech.com/explorer/endpoints", "softwareProducts": [ { - "id": 11027, - "chplProductNumber": "15.04.04.2051.Inte.08.01.0.221121", + "id": 11018, + "chplProductNumber": "15.04.04.2931.MEDI.56.02.1.221111", "edition": { "id": 3, "name": "2015" @@ -25445,167 +41245,182 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 1932, + "name": "Medical Information Technology, Inc. (MEDITECH)" }, "product": { - "id": 3655, - "name": "IntelleChartPRO" + "id": 3063, + "name": "MEDITECH MAGIC HCA Electronic Health Record Core HCIS (without PatientKeeper)" }, "version": { - "id": 8618, - "name": "8" + "id": 8610, + "name": "v5.67c" }, - "certificationDate": "2022-11-21", + "certificationDate": "2022-11-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 9, @@ -25613,45 +41428,50 @@ "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -25659,11 +41479,11 @@ ] }, { - "listSourceURL": "https://www.meditab.com/fhir/endpoints", + "listSourceURL": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/MOSAIQ_endpoints.pdf", "softwareProducts": [ { - "id": 9739, - "chplProductNumber": "15.99.04.2804.Inte.SP.01.1.181113", + "id": 11097, + "chplProductNumber": "15.04.04.1420.MOSA.02.05.1.221220", "edition": { "id": 3, "name": "2015" @@ -25673,97 +41493,42 @@ "name": "" }, "developer": { - "id": 1805, - "name": "MedPharm Services LLC" + "id": 421, + "name": "Elekta Inc." }, "product": { - "id": 2978, - "name": "Intelligent Medical Software (IMS)" + "id": 3354, + "name": "MOSAIQ" }, "version": { - "id": 7535, - "name": "14.0 SP 1" + "id": 8674, + "name": "2.86" }, - "certificationDate": "2018-11-13", + "certificationDate": "2022-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "title": "Encrypt Authentication Credentials" }, { "id": 53, @@ -25771,14 +41536,19 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -25786,24 +41556,24 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -25811,64 +41581,69 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -25876,19 +41651,24 @@ "title": "Implantable Device List" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, @@ -25896,14 +41676,19 @@ "title": "Direct Project" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -25913,23 +41698,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.meditab.com/api/" + "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://meditab.com/api" + "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.meditab.com/fhir/specifications" + "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } ], "acb": "Drummond Group" @@ -25937,11 +41722,11 @@ ] }, { - "listSourceURL": "https://demo.interopx.com/ix-auth-server/#/endpoints", + "listSourceURL": "https://www.first-insight.com/maximeyes_fhir_base_url_endpoints/", "softwareProducts": [ { - "id": 10939, - "chplProductNumber": "15.04.04.3116.Inte.01.00.0.220707", + "id": 9410, + "chplProductNumber": "15.04.04.2729.Maxi.03.00.1.180326", "edition": { "id": 3, "name": "2015" @@ -25951,47 +41736,47 @@ "name": "" }, "developer": { - "id": 2117, - "name": "InteropX" + "id": 1730, + "name": "First Insight Corporation" }, "product": { - "id": 3635, - "name": "InteropX" + "id": 3279, + "name": "MaximEyes EHR" }, "version": { - "id": 8535, - "name": "1.5.3" + "id": 7296, + "name": "3.0" }, - "certificationDate": "2022-07-07", + "certificationDate": "2018-03-26", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -25999,71 +41784,59 @@ "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - } - ], - "apiDocumentation": [ + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://demo.interopx.com/ix-auth-server/#/api-specifications" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation#Api_Urls", - "softwareProducts": [ - { - "id": 11283, - "chplProductNumber": "15.04.04.2925.CONN.04.04.0.230427", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1926, - "name": "DSS, Inc." - }, - "product": { - "id": 3642, - "name": "Juno ConnectEHR" - }, - "version": { - "id": 8800, - "name": "v22" - }, - "certificationDate": "2023-04-27", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -26071,49 +41844,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -26121,59 +41899,59 @@ "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -26183,30 +41961,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" }, { - "id": 10962, - "chplProductNumber": "15.04.04.2925.CONN.02.04.0.220817", + "id": 10470, + "chplProductNumber": "15.04.04.2729.Maxi.01.00.1.201014", "edition": { "id": 3, "name": "2015" @@ -26216,57 +41994,47 @@ "name": "" }, "developer": { - "id": 1926, - "name": "DSS, Inc." + "id": 1730, + "name": "First Insight Corporation" }, "product": { - "id": 3642, - "name": "Juno ConnectEHR" + "id": 3558, + "name": "MaximEyes.com" }, "version": { - "id": 8556, - "name": "22" + "id": 8190, + "name": "1.1" }, - "certificationDate": "2022-08-17", + "certificationDate": "2020-10-14", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 36, @@ -26274,39 +42042,39 @@ "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -26314,87 +42082,119 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://www.first-insight.com/certifications/" }, { "criterion": { @@ -26402,7 +42202,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + "value": "https://www.first-insight.com/certifications/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.first-insight.com/certifications/" } ], "acb": "Drummond Group" @@ -26410,11 +42218,11 @@ ] }, { - "listSourceURL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", + "listSourceURL": "https://documents.maximus.care", "softwareProducts": [ { - "id": 11090, - "chplProductNumber": "15.04.04.2777.Kare.05.02.1.221219", + "id": 11360, + "chplProductNumber": "15.05.05.3173.MAXR.01.00.1.231031", "edition": { "id": 3, "name": "2015" @@ -26424,42 +42232,32 @@ "name": "" }, "developer": { - "id": 1778, - "name": "Tebra Technologies, Inc." + "id": 2174, + "name": "MaxRemind Inc" }, "product": { - "id": 3270, - "name": "Kareo EHR" + "id": 3735, + "name": "Maximus" }, "version": { - "id": 8668, - "name": "Version 5.0" + "id": 8871, + "name": "1.0" }, - "certificationDate": "2022-12-19", + "certificationDate": "2023-10-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -26467,54 +42265,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -26522,197 +42295,164 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - } - ], - "apiDocumentation": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.kareo.com/macra-mips" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.kareo.com/macra-mips" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.kareo.com/macra-mips" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://docs.kodjin.com/service-base-urls", - "softwareProducts": [ - { - "id": 11265, - "chplProductNumber": "15.04.04.3148.Kodj.03.00.0.230330", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 2149, - "name": "EDENLAB OÜ" - }, - "product": { - "id": 3702, - "name": "Kodjin FHIR Server" - }, - "version": { - "id": 8785, - "name": "3" - }, - "certificationDate": "2023-03-30", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -26722,27 +42462,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://docs.kodjin.com/getting-started-with-standartized-api" + "value": "http://documents.maximus.care/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.kodjin.com/getting-started-with-standartized-api" + "value": "https://documents.maximus.care" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documents.maximus.care" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.mdlogic.com/solutions/standard-api-documentation", + "listSourceURL": "https://fhir.mhealthaz.com", "softwareProducts": [ { - "id": 11056, - "chplProductNumber": "15.04.04.2785.MDLo.07.02.1.221207", + "id": 11300, + "chplProductNumber": "15.05.05.3150.MDAZ.01.00.1.230616", "edition": { "id": 3, "name": "2015" @@ -26752,37 +42500,37 @@ "name": "" }, "developer": { - "id": 1786, - "name": "MD Logic, Inc." + "id": 2151, + "name": "MedAZ.Net, LLC" }, "product": { - "id": 2821, - "name": "MD Logic EHR" + "id": 3707, + "name": "Med A-Z" }, "version": { - "id": 8642, - "name": "7.2" + "id": 8816, + "name": "202001" }, - "certificationDate": "2022-12-07", + "certificationDate": "2023-06-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -26790,94 +42538,94 @@ "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -26885,69 +42633,64 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -26957,35 +42700,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.mdlogic.com/solutions/api-documentation" + "value": "https://fhir.mhealthaz.com" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.mdlogic.com/solutions/api-documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.mdlogic.com/solutions/api-documentation" + "value": "https://fhir.mhealthaz.com" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://connect-demo.mdops.com/mdlogsdk/fhir/apiDocumentation.html#tag/Auth", + "listSourceURL": "https://api.medconnecthealth.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10792, - "chplProductNumber": "15.02.05.1836.MDOP.01.01.1.220117", + "id": 9183, + "chplProductNumber": "15.04.04.1889.MedC.03.00.1.171212", "edition": { "id": 3, "name": "2015" @@ -26995,27 +42730,42 @@ "name": "" }, "developer": { - "id": 837, - "name": "MDOps Corporation" + "id": 890, + "name": "MedConnect, Inc." }, "product": { - "id": 1266, - "name": "MDLog" + "id": 2813, + "name": "MedConnectHealth" }, "version": { - "id": 8306, - "name": "5.0" + "id": 7109, + "name": "3.0" }, - "certificationDate": "2022-01-17", + "certificationDate": "2017-12-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 14, @@ -27023,29 +42773,44 @@ "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -27053,34 +42818,39 @@ "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -27088,59 +42858,59 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 9, @@ -27148,47 +42918,72 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + "value": "https://medconnecthealth.com/wp-content/uploads/2020/05/API_Documentation.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://connect-demo.mdops.com/mdlogsdk/fhir/apiDocumentation.html#tag/Auth" + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://mdrfhirapi.mdronline.net", + "listSourceURL": "https://portal.viewmymed.com/fhir/Endpoint", "softwareProducts": [ { - "id": 9797, - "chplProductNumber": "15.04.04.2413.MDRh.08.00.1.181208", + "id": 11238, + "chplProductNumber": "15.04.04.1597.MedP.13.01.1.230216", "edition": { "id": 3, "name": "2015" @@ -27198,62 +42993,62 @@ "name": "" }, "developer": { - "id": 1414, - "name": "TechSoft, Inc." + "id": 598, + "name": "Health Systems Technology, Inc." }, "product": { - "id": 2268, - "name": "MDRhythm" + "id": 907, + "name": "MedPointe" }, "version": { - "id": 7581, - "name": "Version 8" + "id": 8768, + "name": "13" }, - "certificationDate": "2018-12-08", + "certificationDate": "2023-02-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 25, @@ -27261,34 +43056,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 37, @@ -27296,9 +43091,14 @@ "title": "Trusted Connection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, @@ -27306,69 +43106,59 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -27376,44 +43166,44 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -27421,50 +43211,35 @@ "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.mdrhythm.com/MDRWebAPI.pdf" + "value": "http://www.viewmymed.com/api/usage.php" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.mdrhythm.com/onc-compliance.html" + "value": "http://www.viewmymed.com/api/usage.php" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.mdrhythm.com/onc-compliance.html" + "value": "http://www.viewmymed.com/api/usage.php" } ], "acb": "Drummond Group" @@ -27472,11 +43247,11 @@ ] }, { - "listSourceURL": "https://www.provider.care/FHIR/MDVitaFHIRUrls.csv", + "listSourceURL": "https://bill.medgenehr.com:7043/fhir/.well-known/smart-configuration", "softwareProducts": [ { - "id": 11000, - "chplProductNumber": "15.04.04.2904.MDVi.27.02.1.221020", + "id": 10986, + "chplProductNumber": "15.04.04.2984.Medg.09.02.1.220915", "edition": { "id": 3, "name": "2015" @@ -27486,52 +43261,82 @@ "name": "" }, "developer": { - "id": 1905, - "name": "Health Care 2000, Inc." + "id": 1985, + "name": "Comtron Inc." }, "product": { - "id": 3292, - "name": "MDVita" + "id": 3302, + "name": "Medgen EHR" }, "version": { - "id": 8595, - "name": "27" + "id": 8579, + "name": "Version 9" }, - "certificationDate": "2022-10-20", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 52, @@ -27539,19 +43344,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 26, @@ -27559,69 +43359,64 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -27629,29 +43424,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 9, @@ -27659,39 +43459,29 @@ "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -27701,23 +43491,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } ], "acb": "Drummond Group" @@ -27725,11 +43515,11 @@ ] }, { - "listSourceURL": "https://ehifire.ehiconnect.com/fhir/r4/endpoints", + "listSourceURL": "https://medi-ehr.com/fhir-api-eps", "softwareProducts": [ { - "id": 10247, - "chplProductNumber": "15.04.04.2719.MDne.10.01.1.191231", + "id": 10831, + "chplProductNumber": "15.02.05.2979.MEDI.01.01.1.220215", "edition": { "id": 3, "name": "2015" @@ -27739,27 +43529,52 @@ "name": "" }, "developer": { - "id": 1720, - "name": "Enable Healthcare Inc." + "id": 1980, + "name": "Medi-EHR, LLC" }, "product": { - "id": 3289, - "name": "MDnet" + "id": 1464, + "name": "Medi-EHR" }, "version": { - "id": 7788, - "name": "V10" + "id": 1265, + "name": "2.1" }, - "certificationDate": "2019-12-31", + "certificationDate": "2022-02-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -27767,79 +43582,79 @@ "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 35, @@ -27847,14 +43662,14 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -27862,19 +43677,9 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 34, @@ -27882,44 +43687,39 @@ "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -27927,14 +43727,9 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 44, @@ -27942,14 +43737,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -27959,35 +43754,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" + "value": "http://medi-ehr.com/compliance" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + "value": "http://medi-ehr.com/compliance" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + "value": "https://medi-ehr.com/public-fhir-api" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.medent.com/std_api/ServiceBaseURL.csv", + "listSourceURL": "https://docs.medifusion.com/", "softwareProducts": [ { - "id": 10609, - "chplProductNumber": "15.04.04.1840.MEDE.23.01.1.210413", + "id": 10845, + "chplProductNumber": "15.05.05.3102.MEDF.01.00.1.220228", "edition": { "id": 3, "name": "2015" @@ -27997,92 +43792,82 @@ "name": "" }, "developer": { - "id": 841, - "name": "MEDENT - Community Computer Service, Inc." + "id": 2103, + "name": "MediFusion, LLC" }, "product": { - "id": 3299, - "name": "MEDENT" + "id": 3609, + "name": "MediFusion" }, "version": { - "id": 8305, - "name": "v23.5" + "id": 8453, + "name": "2.0" }, - "certificationDate": "2021-04-13", + "certificationDate": "2022-02-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 34, @@ -28090,14 +43875,14 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -28105,14 +43890,9 @@ "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 32, @@ -28120,64 +43900,69 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 14, @@ -28185,92 +43970,97 @@ "title": "Implantable Device List" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.medent.com/onc/" + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.medent.com/onc/" + "value": "https://docs.medifusion.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.medent.com/onc/" + "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://api.mhdi10xasayd.com/medhost-developer-composition/v1/fhir-base-urls.json", + "listSourceURL": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm", "softwareProducts": [ { - "id": 10820, - "chplProductNumber": "15.04.04.2788.MEDH.CL.08.1.220204", + "id": 10786, + "chplProductNumber": "15.02.05.1044.AVDC.01.01.1.220111", "edition": { "id": 3, "name": "2015" @@ -28280,47 +44070,77 @@ "name": "" }, "developer": { - "id": 1789, - "name": "MEDHOST" + "id": 45, + "name": "Advanced Data Systems Corporation" }, "product": { - "id": 2763, - "name": "MEDHOST Enterprise - Clinicals" + "id": 88, + "name": "MedicsCloud" }, "version": { - "id": 8441, - "name": "2022 R1" + "id": 7284, + "name": "11.0" }, - "certificationDate": "2022-02-04", + "certificationDate": "2022-01-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -28328,39 +44148,59 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 44, @@ -28368,29 +44208,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 35, @@ -28398,19 +44238,14 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -28418,9 +44253,9 @@ "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 34, @@ -28428,77 +44263,82 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.yourcareinteract.com/documentation" + "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.yourcareinteract.com/documentation" + "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.yourcareinteract.com/documentation" + "value": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm", + "listSourceURL": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm", "softwareProducts": [ { - "id": 10972, - "chplProductNumber": "15.04.04.2931.MEDI.EH.01.1.220901", + "id": 10785, + "chplProductNumber": "15.02.05.1044.AVDD.01.01.1.220111", "edition": { "id": 3, "name": "2015" @@ -28508,123 +44348,113 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 45, + "name": "Advanced Data Systems Corporation" }, "product": { - "id": 2837, - "name": "MEDITECH 6.0 Electronic Health Record Core HCIS" + "id": 89, + "name": "MedicsDocAssistant" }, "version": { - "id": 8566, - "name": "v6.08c" + "id": 7718, + "name": "8.0" }, - "certificationDate": "2022-09-01", + "certificationDate": "2022-01-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 12, "number": "170.315 (a)(12)", @@ -28636,74 +44466,137 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" }, { "criterion": { @@ -28711,22 +44604,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhirpresentation.assertus.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 10973, - "chplProductNumber": "15.04.04.2931.MEDI.E6.01.1.220901", + "id": 10164, + "chplProductNumber": "15.04.04.3057.Medi.01.00.1.191113", "edition": { "id": 3, "name": "2015" @@ -28736,42 +44626,42 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2058, + "name": "Medicus Clinical, LLC" }, "product": { - "id": 3315, - "name": "MEDITECH 6.0 Emergency Department Management" + "id": 3496, + "name": "MedicusEHR" }, "version": { - "id": 8567, - "name": "v6.08c" + "id": 7903, + "name": "1.0" }, - "certificationDate": "2022-09-01", + "certificationDate": "2019-11-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -28779,64 +44669,89 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -28854,19 +44769,19 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -28874,87 +44789,92 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://portal.assertus.com/es/medicusehr-application-data-access-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://api.medplum.com/openapi.json", + "softwareProducts": [ { - "id": 10975, - "chplProductNumber": "15.04.04.2931.MEDI.08.01.1.220901", + "id": 11256, + "chplProductNumber": "15.04.04.3147.Medp.02.00.0.230307", "edition": { "id": 3, "name": "2015" @@ -28964,42 +44884,27 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2148, + "name": "Medplum" }, "product": { - "id": 2832, - "name": "MEDITECH 6.0 Medical and Practice Management (MPM) Electronic Health Record" + "id": 3699, + "name": "Medplum" }, "version": { - "id": 8569, - "name": "v6.08c" + "id": 8778, + "name": "2" }, - "certificationDate": "2022-09-01", + "certificationDate": "2023-03-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -29007,109 +44912,9 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, @@ -29117,34 +44922,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -29152,32 +44957,21 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.medplum.com/docs/api" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://micromddev.dynamicfhir.com/fhir/r4/endpoints", + "softwareProducts": [ { - "id": 10937, - "chplProductNumber": "15.04.04.2931.MEDI.AM.01.1.220630", + "id": 10886, + "chplProductNumber": "15.04.04.2753.Micr.19.06.1.220429", "edition": { "id": 3, "name": "2015" @@ -29187,97 +44981,127 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1754, + "name": "Henry Schein Medical Systems" }, "product": { - "id": 3322, - "name": "MEDITECH 6.1 Ambulatory Electronic Health Record" + "id": 3350, + "name": "MicroMD EMR" }, "version": { - "id": 8533, - "name": "v6.15c" + "id": 8484, + "name": "Version 19.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-04-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { "id": 35, @@ -29285,94 +45109,94 @@ "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -29380,9 +45204,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -29390,22 +45214,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" }, { - "id": 10931, - "chplProductNumber": "15.04.04.2931.MEDI.HC.01.1.220630", + "id": 11281, + "chplProductNumber": "15.04.04.2753.Micr.20.07.1.230427", "edition": { "id": 3, "name": "2015" @@ -29415,37 +45239,72 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1754, + "name": "Henry Schein Medical Systems" }, "product": { - "id": 2838, - "name": "MEDITECH 6.1 Electronic Health Record Core HCIS" + "id": 3350, + "name": "MicroMD EMR" }, "version": { - "id": 8527, - "name": "v6.15c" + "id": 8798, + "name": "Version 20.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2023-04-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { "id": 25, @@ -29453,14 +45312,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -29468,34 +45327,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 42, @@ -29503,114 +45347,124 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -29618,22 +45472,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://github.com/cerner/ignite-endpoints", + "softwareProducts": [ { - "id": 10935, - "chplProductNumber": "15.04.04.2931.MEDI.15.01.1.220630", + "id": 11015, + "chplProductNumber": "15.04.04.1221.Mill.18.06.1.221107", "edition": { "id": 3, "name": "2015" @@ -29643,82 +45502,82 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 222, + "name": "Cerner Corporation" }, "product": { - "id": 3324, - "name": "MEDITECH 6.1 Emergency Department Management" + "id": 3653, + "name": "Millennium (Clinical)" }, "version": { - "id": 8531, - "name": "v6.15c" + "id": 8608, + "name": "2018" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-11-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 5, @@ -29726,94 +45585,94 @@ "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -29821,47 +45680,47 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://code.cerner.com/apiaccess" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://code.cerner.com/apiaccess" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://code.cerner.com/apiaccess" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.mphrx.com/fhir-service-base-url-directory/", + "softwareProducts": [ { - "id": 10982, - "chplProductNumber": "15.04.04.2931.MEDI.MC.01.1.220915", + "id": 10649, + "chplProductNumber": "15.04.04.3082.Mine.04.01.0.210609", "edition": { "id": 3, "name": "2015" @@ -29871,97 +45730,42 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2083, + "name": "agilon health inc." }, "product": { - "id": 3328, - "name": "MEDITECH Client/Server Electronic Health Record Core HCIS" + "id": 3564, + "name": "Minerva" }, "version": { - "id": 8576, - "name": "v5.67c" - }, - "certificationDate": "2022-09-15", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, + "id": 8343, + "name": "V4" + }, + "certificationDate": "2021-06-09", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -29969,94 +45773,69 @@ "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -30064,32 +45843,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.mphrx.com/api-guide_mphrx/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.mphrx.com/api-guide_mphrx/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.mphrx.com/api-guide_mphrx/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://mmdpcf.modulemd.com/cf.fhir.r4", + "softwareProducts": [ { - "id": 10984, - "chplProductNumber": "15.04.04.2931.MEDI.CS.01.1.220916", + "id": 11092, + "chplProductNumber": "15.04.04.2980.Modu.10.01.1.221219", "edition": { "id": 3, "name": "2015" @@ -30099,82 +45883,87 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1981, + "name": "ModuleMD" }, "product": { - "id": 3330, - "name": "MEDITECH Client/Server Emergency Department Management" + "id": 3353, + "name": "ModuleMD WISE™" }, "version": { - "id": 8578, - "name": "v5.67c" + "id": 8670, + "name": "10.0" }, - "certificationDate": "2022-09-16", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 9, @@ -30182,24 +45971,54 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 25, @@ -30207,14 +46026,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -30222,69 +46036,79 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -30292,32 +46116,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://openapi.modulemd.com" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9", + "softwareProducts": [ { - "id": 10983, - "chplProductNumber": "15.04.04.2931.MEDI.PM.01.1.220915", + "id": 11331, + "chplProductNumber": "15.05.05.3141.MOYA.01.01.1.230816", "edition": { "id": 3, "name": "2015" @@ -30327,197 +46156,152 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2142, + "name": "Moyae, Inc." }, "product": { - "id": 3648, - "name": "MEDITECH Client/Server Medical and Practice Management (MPM) Electronic Health Record" + "id": 3693, + "name": "Moyae" }, "version": { - "id": 8577, - "name": "v5.67c" + "id": 8761, + "name": "1" }, - "certificationDate": "2022-09-15", + "certificationDate": "2023-08-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { @@ -30525,22 +46309,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" }, { - "id": 10928, - "chplProductNumber": "15.04.04.2931.2931.16.02.1.220630", + "id": 11229, + "chplProductNumber": "15.05.05.3141.MOYA.01.00.1.230201", "edition": { "id": 3, "name": "2015" @@ -30550,47 +46334,47 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 2142, + "name": "Moyae, Inc." }, "product": { - "id": 3631, - "name": "MEDITECH Expanse 2.1 Ambulatory" + "id": 3693, + "name": "Moyae" }, "version": { - "id": 8524, - "name": "v2.1c" + "id": 8761, + "name": "1" }, - "certificationDate": "2022-06-30", + "certificationDate": "2023-02-01", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -30598,24 +46382,19 @@ "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 32, @@ -30625,37 +46404,17 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, @@ -30663,79 +46422,54 @@ "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -30745,30 +46479,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://api-portal.navigatingcare.com/service-base-urls", + "softwareProducts": [ { - "id": 10929, - "chplProductNumber": "15.04.04.2931.MEDI.CO.01.1.220630", + "id": 11068, + "chplProductNumber": "15.04.04.2034.Navi.07.01.1.221213", "edition": { "id": 3, "name": "2015" @@ -30778,197 +46517,117 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1035, + "name": "Navigating Cancer, Inc." }, "product": { - "id": 3632, - "name": "MEDITECH Expanse 2.1 Core HCIS" + "id": 2800, + "name": "Navigating Care" }, "version": { - "id": 8525, - "name": "v2.1c" + "id": 8652, + "name": "7.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -30976,9 +46635,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.navigatingcancer.com/requirements-incentives/" }, { "criterion": { @@ -30986,22 +46645,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.navigatingcancer.com/requirements-incentives/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://sfp-fhirprod.azurewebsites.net/fhir/metadata", + "softwareProducts": [ { - "id": 10925, - "chplProductNumber": "15.04.04.2931.2931.02.03.1.220630", + "id": 9836, + "chplProductNumber": "15.04.04.2815.Woun.07.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -31011,27 +46675,37 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1816, + "name": "Net Health" }, "product": { - "id": 3547, - "name": "MEDITECH Expanse 2.2 Ambulatory" + "id": 3476, + "name": "Net Health® Wound Care" }, "version": { - "id": 8521, - "name": "v2.2c" + "id": 7614, + "name": "7.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, @@ -31041,137 +46715,157 @@ { "id": 171, "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -31179,37 +46873,32 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { @@ -31217,14 +46906,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" } ], "acb": "Drummond Group" }, { - "id": 10926, - "chplProductNumber": "15.04.04.2931.MEDI.CO.02.1.220630", + "id": 10234, + "chplProductNumber": "15.04.04.2272.Woun.07.01.1.191224", "edition": { "id": 3, "name": "2015" @@ -31234,122 +46923,142 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1273, + "name": "RestorixHealth" }, "product": { - "id": 3548, - "name": "MEDITECH Expanse 2.2 Core HCIS" + "id": 2066, + "name": "WoundDocs" }, "version": { - "id": 8522, - "name": "v2.2c" + "id": 7970, + "name": "7.0" }, - "certificationDate": "2022-06-30", + "certificationDate": "2019-12-24", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -31357,64 +47066,94 @@ "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 1, @@ -31422,27 +47161,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { @@ -31450,14 +47181,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://nethealthapis-integration.nhsinc.com/index.html" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://nextgen.com/api/practice-search", + "softwareProducts": [ { - "id": 10927, - "chplProductNumber": "15.04.04.2931.MEDI.ED.03.1.220630", + "id": 10850, + "chplProductNumber": "15.04.04.2054.Next.60.09.1.220303", "edition": { "id": 3, "name": "2015" @@ -31467,52 +47211,52 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3549, - "name": "MEDITECH Expanse 2.2 Emergency Department Management" + "id": 3610, + "name": "NextGen Enterprise EHR" }, "version": { - "id": 8523, - "name": "v2.2c" + "id": 8456, + "name": "6.2021.1 Patch 79" }, - "certificationDate": "2022-06-30", + "certificationDate": "2022-03-03", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 39, @@ -31520,25 +47264,65 @@ "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, { "id": 3, "number": "170.315 (a)(3)", @@ -31550,69 +47334,54 @@ "title": "Safety-Enhanced Design" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -31625,9 +47394,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 51, @@ -31635,47 +47414,72 @@ "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { @@ -31683,14 +47487,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" }, { - "id": 10930, - "chplProductNumber": "15.04.04.2931.MEDI.16.02.1.220630", + "id": 11302, + "chplProductNumber": "15.04.04.2054.Next.80.11.1.230620", "edition": { "id": 3, "name": "2015" @@ -31700,112 +47504,117 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3633, - "name": "MEDITECH Expanse Emergency Department Management" + "id": 3359, + "name": "NextGen Enterprise EHR" }, "version": { - "id": 8526, - "name": "v2.1c" + "id": 8818, + "name": "Enterprise 8" }, - "certificationDate": "2022-06-30", + "certificationDate": "2023-06-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, @@ -31813,34 +47622,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 9, @@ -31848,29 +47657,84 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -31878,52 +47742,52 @@ "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" }, { - "id": 10979, - "chplProductNumber": "15.04.04.2931.MEDI.MM.01.1.220915", + "id": 10861, + "chplProductNumber": "15.04.04.2054.Next.60.10.1.220318", "edition": { "id": 3, "name": "2015" @@ -31933,82 +47797,87 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3338, - "name": "MEDITECH MAGIC Electronic Health Record Core HCIS" + "id": 3610, + "name": "NextGen Enterprise EHR" }, "version": { - "id": 8573, - "name": "v5.67c" + "id": 8459, + "name": "6.2021.1 Cures" }, - "certificationDate": "2022-09-15", + "certificationDate": "2022-03-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 2, @@ -32016,14 +47885,69 @@ "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -32031,14 +47955,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -32046,24 +47990,19 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 9, @@ -32071,14 +48010,19 @@ "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 33, @@ -32086,72 +48030,62 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://fhir.meditouchehr.com/api/fhir/r4", + "softwareProducts": [ { - "id": 10981, - "chplProductNumber": "15.04.04.2931.MEDI.EM.01.1.220915", + "id": 9372, + "chplProductNumber": "15.04.04.2054.Medi.05.00.1.180220", "edition": { "id": 3, "name": "2015" @@ -32161,57 +48095,52 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1055, + "name": "NextGen Healthcare" }, "product": { - "id": 3342, - "name": "MEDITECH MAGIC Emergency Department Management" + "id": 2874, + "name": "NextGen Office" }, "version": { - "id": 8575, - "name": "v5.67c" + "id": 7263, + "name": "Version 5.0" }, - "certificationDate": "2022-09-15", + "certificationDate": "2018-02-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 12, @@ -32219,34 +48148,64 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -32254,99 +48213,104 @@ "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -32356,30 +48320,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextgen.com/api" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", + "softwareProducts": [ { - "id": 10980, - "chplProductNumber": "15.04.04.2931.MEDI.EL.01.1.220915", + "id": 11028, + "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", "edition": { "id": 3, "name": "2015" @@ -32389,37 +48358,52 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 2805, - "name": "MEDITECH MAGIC Medical and Practice Management (MPM) Electronic Health Record" + "id": 3538, + "name": "Nextech" }, "version": { - "id": 8574, - "name": "v5.67c" + "id": 8619, + "name": "17" }, - "certificationDate": "2022-09-15", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 26, @@ -32427,44 +48411,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -32472,49 +48471,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 9, @@ -32522,49 +48511,39 @@ "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -32574,35 +48553,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.meditech.com/explorer/endpoints", - "softwareProducts": [ + }, { - "id": 11018, - "chplProductNumber": "15.04.04.2931.MEDI.56.02.1.221111", + "id": 11029, + "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", "edition": { "id": 3, "name": "2015" @@ -32612,37 +48586,47 @@ "name": "" }, "developer": { - "id": 1932, - "name": "Medical Information Technology, Inc. (MEDITECH)" + "id": 1052, + "name": "Nextech" }, "product": { - "id": 3063, - "name": "MEDITECH MAGIC HCA Electronic Health Record Core HCIS (without PatientKeeper)" + "id": 3358, + "name": "Nextech with NewCropRx" }, "version": { - "id": 8610, - "name": "v5.67c" + "id": 8620, + "name": "17" }, - "certificationDate": "2022-11-11", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, @@ -32650,49 +48634,54 @@ "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 52, @@ -32700,89 +48689,79 @@ "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -32790,29 +48769,24 @@ "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -32822,23 +48796,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + "value": "https://www.nextech.com/developers-portal" } ], "acb": "Drummond Group" @@ -32846,11 +48820,11 @@ ] }, { - "listSourceURL": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/MOSAIQ_endpoints.pdf", + "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", "softwareProducts": [ { - "id": 11097, - "chplProductNumber": "15.04.04.1420.MOSA.02.05.1.221220", + "id": 11130, + "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -32860,97 +48834,112 @@ "name": "" }, "developer": { - "id": 421, - "name": "Elekta Inc." + "id": 1990, + "name": "Nexus Clinical LLC" }, "product": { - "id": 3354, - "name": "MOSAIQ" + "id": 3360, + "name": "Nexus EHR" }, "version": { - "id": 8674, - "name": "2.86" + "id": 8700, + "name": "7.3" }, - "certificationDate": "2022-12-20", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 37, @@ -32958,34 +48947,34 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -32993,79 +48982,79 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { @@ -33073,15 +49062,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], "acb": "Drummond Group" @@ -33089,11 +49078,11 @@ ] }, { - "listSourceURL": "https://www.first-insight.com/maximeyes_fhir_base_url_endpoints/", + "listSourceURL": "https://www.novomedici.com/api-documents/", "softwareProducts": [ { - "id": 9410, - "chplProductNumber": "15.04.04.2729.Maxi.03.00.1.180326", + "id": 10805, + "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", "edition": { "id": 3, "name": "2015" @@ -33103,47 +49092,47 @@ "name": "" }, "developer": { - "id": 1730, - "name": "First Insight Corporation" + "id": 2016, + "name": "NovoMedici, LLC" }, "product": { - "id": 3279, - "name": "MaximEyes EHR" + "id": 2872, + "name": "NovoClinical" }, "version": { - "id": 7296, - "name": "3.0" + "id": 7257, + "name": "1.0" }, - "certificationDate": "2018-03-26", + "certificationDate": "2022-01-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -33151,34 +49140,49 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -33186,29 +49190,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 12, @@ -33216,14 +49215,9 @@ "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 26, @@ -33231,49 +49225,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -33281,77 +49270,72 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" + "value": "http://www.novomedici.com/meaningful-use/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" + "value": "http://www.novomedici.com/meaningful-use/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://customer.first-insight.com/downloads/forms/MaximEyes-FHIR-API-Documentation.pdf" + "value": "https://www.novomedici.com/api-documents/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", + "softwareProducts": [ { - "id": 10470, - "chplProductNumber": "15.04.04.2729.Maxi.01.00.1.201014", + "id": 11146, + "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", "edition": { "id": 3, "name": "2015" @@ -33361,42 +49345,42 @@ "name": "" }, "developer": { - "id": 1730, - "name": "First Insight Corporation" + "id": 1087, + "name": "Objective Medical Systems, LLC" }, "product": { - "id": 3558, - "name": "MaximEyes.com" + "id": 1823, + "name": "OMS EHR" }, "version": { - "id": 8190, - "name": "1.1" + "id": 8715, + "name": "4.4.0.00" }, - "certificationDate": "2020-10-14", + "certificationDate": "2022-12-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 25, @@ -33404,14 +49388,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 3, @@ -33419,49 +49413,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -33474,29 +49468,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -33504,9 +49483,14 @@ "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -33514,19 +49498,39 @@ "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 49, @@ -33534,37 +49538,29 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.first-insight.com/certifications/" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.first-insight.com/certifications/" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { @@ -33572,19 +49568,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.first-insight.com/certifications/" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://api.medconnecthealth.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 9183, - "chplProductNumber": "15.04.04.1889.MedC.03.00.1.171212", + "id": 11381, + "chplProductNumber": "15.04.04.2086.OMSE.05.04.1.231128", "edition": { "id": 3, "name": "2015" @@ -33594,82 +49593,82 @@ "name": "" }, "developer": { - "id": 890, - "name": "MedConnect, Inc." + "id": 1087, + "name": "Objective Medical Systems, LLC" }, "product": { - "id": 2813, - "name": "MedConnectHealth" + "id": 1823, + "name": "OMS EHR" }, "version": { - "id": 7109, - "name": "3.0" + "id": 8892, + "name": "5.0.0.00" }, - "certificationDate": "2017-12-12", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { "id": 36, @@ -33677,129 +49676,114 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -33807,9 +49791,14 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -33819,23 +49808,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://medconnecthealth.com/wp-content/uploads/2020/05/API_Documentation.pdf" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" + "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" } ], "acb": "Drummond Group" @@ -33843,11 +49832,11 @@ ] }, { - "listSourceURL": "https://portal.viewmymed.com/fhir/Endpoint", + "listSourceURL": "https://fhir-documentation.patientmedrecords.com/endpoints", "softwareProducts": [ { - "id": 11238, - "chplProductNumber": "15.04.04.1597.MedP.13.01.1.230216", + "id": 11049, + "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", "edition": { "id": 3, "name": "2015" @@ -33857,52 +49846,52 @@ "name": "" }, "developer": { - "id": 598, - "name": "Health Systems Technology, Inc." + "id": 2049, + "name": "Office Practicum" }, "product": { - "id": 907, - "name": "MedPointe" + "id": 3090, + "name": "Office Practicum" }, "version": { - "id": 8768, - "name": "13" + "id": 8636, + "name": "21" }, - "certificationDate": "2023-02-16", + "certificationDate": "2022-11-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -33910,29 +49899,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 4, @@ -33940,69 +49914,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, @@ -34010,24 +49954,14 @@ "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -34035,75 +49969,54 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://www.viewmymed.com/api/usage.php" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.viewmymed.com/api/usage.php" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.viewmymed.com/api/usage.php" + "value": "https://www.officepracticum.com/op/fhir-documentation" } ], "acb": "Drummond Group" @@ -34111,11 +50024,11 @@ ] }, { - "listSourceURL": "https://bill.medgenehr.com:7043/fhir/.well-known/smart-configuration", + "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10986, - "chplProductNumber": "15.04.04.2984.Medg.09.02.1.220915", + "id": 10914, + "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", "edition": { "id": 3, "name": "2015" @@ -34125,27 +50038,37 @@ "name": "" }, "developer": { - "id": 1985, - "name": "Comtron Inc." + "id": 1630, + "name": "iSALUS Healthcare" }, "product": { - "id": 3302, - "name": "Medgen EHR" + "id": 2566, + "name": "OfficeEMR" }, "version": { - "id": 8579, - "name": "Version 9" + "id": 8511, + "name": "2021" }, - "certificationDate": "2022-09-15", + "certificationDate": "2022-06-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -34155,12 +50078,17 @@ { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 5, @@ -34168,74 +50096,44 @@ "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -34243,9 +50141,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -34253,49 +50151,39 @@ "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, @@ -34303,59 +50191,72 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.isalushealthcare.com/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -34363,15 +50264,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -34379,11 +50272,11 @@ ] }, { - "listSourceURL": "https://medi-ehr.com/fhir-api-eps", + "listSourceURL": "https://fhirregistration.omnimd.com/#/specification", "softwareProducts": [ { - "id": 10831, - "chplProductNumber": "15.02.05.2979.MEDI.01.01.1.220215", + "id": 10784, + "chplProductNumber": "15.02.05.1717.OMNI.01.01.1.220110", "edition": { "id": 3, "name": "2015" @@ -34393,52 +50286,57 @@ "name": "" }, "developer": { - "id": 1980, - "name": "Medi-EHR, LLC" + "id": 718, + "name": "OmniMD Inc." }, "product": { - "id": 1464, - "name": "Medi-EHR" + "id": 1081, + "name": "OmniMD" }, "version": { - "id": 1265, - "name": "2.1" + "id": 7393, + "name": "18.0" }, - "certificationDate": "2022-02-15", + "certificationDate": "2022-01-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 3, @@ -34446,109 +50344,114 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { "id": 37, @@ -34556,59 +50459,74 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -34618,35 +50536,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://www.omnimd.com/open-api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://medi-ehr.com/public-fhir-api" + "value": "https://www.omnimd.com/open-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://fhirregistration.omnimd.com/#/specification" } ], "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://docs.medifusion.com/", - "softwareProducts": [ + }, { - "id": 10845, - "chplProductNumber": "15.05.05.3102.MEDF.01.00.1.220228", + "id": 11354, + "chplProductNumber": "15.05.05.1717.OM20.02.02.1.231024", "edition": { "id": 3, "name": "2015" @@ -34656,18 +50569,18 @@ "name": "" }, "developer": { - "id": 2103, - "name": "MediFusion, LLC" + "id": 718, + "name": "OmniMD Inc." }, "product": { - "id": 3609, - "name": "MediFusion" + "id": 1081, + "name": "OmniMD" }, "version": { - "id": 8453, - "name": "2.0" + "id": 8866, + "name": "20" }, - "certificationDate": "2022-02-28", + "certificationDate": "2023-10-24", "certificationStatus": { "id": 1, "name": "Active" @@ -34679,99 +50592,84 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -34779,39 +50677,44 @@ "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -34819,14 +50722,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 51, @@ -34834,85 +50737,105 @@ "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + "value": "https://www.omnimd.com/open-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.medifusion.com/" + "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -34920,11 +50843,11 @@ ] }, { - "listSourceURL": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm", + "listSourceURL": "https://fhir.prod.flatiron.io/fhir", "softwareProducts": [ { - "id": 10786, - "chplProductNumber": "15.02.05.1044.AVDC.01.01.1.220111", + "id": 11115, + "chplProductNumber": "15.04.04.3010.Onco.28.02.1.221221", "edition": { "id": 3, "name": "2015" @@ -34934,137 +50857,112 @@ "name": "" }, "developer": { - "id": 45, - "name": "Advanced Data Systems Corporation" + "id": 2011, + "name": "Flatiron Health" }, "product": { - "id": 88, - "name": "MedicsCloud" + "id": 2844, + "name": "OncoEMR" }, "version": { - "id": 7284, - "name": "11.0" + "id": 7582, + "name": "2.8" }, - "certificationDate": "2022-01-11", + "certificationDate": "2022-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, @@ -35072,44 +50970,44 @@ "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 52, @@ -35117,24 +51015,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -35142,29 +51045,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -35172,37 +51070,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://staging.medicscloud.com/MCExtAPI/FHIRMedicsCloud.htm" + "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" + "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://staging.medicscloud.com/MCExtAPI/Home/Help" + "value": "https://flatiron.force.com/FHIR/s/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm", + "listSourceURL": "https://www.medonehp.com/wp-content/uploads/2023/11/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10785, - "chplProductNumber": "15.02.05.1044.AVDD.01.01.1.220111", + "id": 11426, + "chplProductNumber": "15.04.04.3182.Onec.00.00.1.231227", "edition": { "id": 3, "name": "2015" @@ -35212,62 +51110,37 @@ "name": "" }, "developer": { - "id": 45, - "name": "Advanced Data Systems Corporation" + "id": 2183, + "name": "MedOne Healthcare Partners" }, "product": { - "id": 89, - "name": "MedicsDocAssistant" + "id": 3753, + "name": "OneConnect" }, "version": { - "id": 7718, - "name": "8.0" + "id": 8935, + "name": "Version 0" }, - "certificationDate": "2022-01-11", + "certificationDate": "2023-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -35275,19 +51148,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -35295,54 +51173,44 @@ "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -35350,24 +51218,19 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -35375,74 +51238,24 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -35450,9 +51263,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" + "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, { "criterion": { @@ -35460,27 +51273,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + "value": "https://www.medonehp.com/wp-content/uploads/2023/11/SmartOnFHIR-API.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhirpresentation.assertus.com/fhir/r4/endpoints", + "listSourceURL": "https://onetouchemr.com/onetouchemr_fhir_api.csv", "softwareProducts": [ { - "id": 10164, - "chplProductNumber": "15.04.04.3057.Medi.01.00.1.191113", + "id": 9396, + "chplProductNumber": "15.04.04.2821.OneT.03.00.1.180411", "edition": { "id": 3, "name": "2015" @@ -35490,37 +51303,32 @@ "name": "" }, "developer": { - "id": 2058, - "name": "Medicus Clinical, LLC" + "id": 1822, + "name": "OT EMR, Inc." }, "product": { - "id": 3496, - "name": "MedicusEHR" + "id": 1822, + "name": "OneTouch EMR" }, "version": { - "id": 7903, - "name": "1.0" + "id": 7283, + "name": "3" }, - "certificationDate": "2019-11-13", + "certificationDate": "2018-04-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 1, @@ -35528,64 +51336,89 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, @@ -35593,24 +51426,9 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -35618,24 +51436,24 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -35643,85 +51461,90 @@ "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://portal.assertus.com/es/medicusehr-application-data-access-api/" + "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" + "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -35729,11 +51552,11 @@ ] }, { - "listSourceURL": "https://api.medplum.com/openapi.json", + "listSourceURL": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API", "softwareProducts": [ { - "id": 11256, - "chplProductNumber": "15.04.04.3147.Medp.02.00.0.230307", + "id": 10938, + "chplProductNumber": "15.05.05.3115.OPEN.01.00.1.220708", "edition": { "id": 3, "name": "2015" @@ -35743,27 +51566,82 @@ "name": "" }, "developer": { - "id": 2148, - "name": "Medplum" + "id": 2116, + "name": "OpenEMR Foundation" }, "product": { - "id": 3699, - "name": "Medplum" + "id": 3634, + "name": "OpenEMR" }, "version": { - "id": 8778, - "name": "2" + "id": 8534, + "name": "7.0" }, - "certificationDate": "2023-03-07", + "certificationDate": "2022-07-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -35771,14 +51649,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 54, @@ -35786,46 +51689,97 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.medplum.com/docs/api" + "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://micromddev.dynamicfhir.com/fhir/r4/endpoints", + "listSourceURL": "https://orthoplex.mkoss.com/Fhirdocs", "softwareProducts": [ { - "id": 10886, - "chplProductNumber": "15.04.04.2753.Micr.19.06.1.220429", + "id": 9349, + "chplProductNumber": "15.04.04.3014.Orth.01.00.1.180101", "edition": { "id": 3, "name": "2015" @@ -35835,27 +51789,32 @@ "name": "" }, "developer": { - "id": 1754, - "name": "Henry Schein Medical Systems" + "id": 2015, + "name": "Mendelson Kornblum Orthopedic \u0026 Spine Specialists" }, "product": { - "id": 3350, - "name": "MicroMD EMR" + "id": 2868, + "name": "OrthoplexEMR" }, "version": { - "id": 8484, - "name": "Version 19.0" + "id": 7243, + "name": "V1" }, - "certificationDate": "2022-04-29", + "certificationDate": "2018-01-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 36, @@ -35863,64 +51822,34 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 14, @@ -35928,19 +51857,24 @@ "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 34, @@ -35948,19 +51882,29 @@ "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -35968,64 +51912,69 @@ "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 53, @@ -36033,24 +51982,19 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -36058,17 +52002,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" }, { "criterion": { @@ -36076,14 +52020,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "http://www.qrshs.info/docs/fhir/service-base.csv", + "softwareProducts": [ { - "id": 11281, - "chplProductNumber": "15.04.04.2753.Micr.20.07.1.230427", + "id": 11142, + "chplProductNumber": "15.04.04.2838.PARA.22.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -36093,92 +52042,72 @@ "name": "" }, "developer": { - "id": 1754, - "name": "Henry Schein Medical Systems" + "id": 1839, + "name": "QRS, Inc." }, "product": { - "id": 3350, - "name": "MicroMD EMR" + "id": 3677, + "name": "PARADIGM®" }, "version": { - "id": 8798, - "name": "Version 20.0" + "id": 8712, + "name": "22" }, - "certificationDate": "2023-04-27", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -36196,59 +52125,79 @@ "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -36256,24 +52205,19 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -36281,24 +52225,24 @@ "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -36306,35 +52250,40 @@ "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "http://www.qrshs.info/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "http://www.qrshs.info/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "http://www.qrshs.info/" } ], "acb": "Drummond Group" @@ -36342,11 +52291,11 @@ ] }, { - "listSourceURL": "https://github.com/cerner/ignite-endpoints", + "listSourceURL": "https://www.pcesystems.com/g10APIInfo.html", "softwareProducts": [ { - "id": 11015, - "chplProductNumber": "15.04.04.1221.Mill.18.06.1.221107", + "id": 11045, + "chplProductNumber": "15.04.04.2125.PCEC.94.01.1.221205", "edition": { "id": 3, "name": "2015" @@ -36356,127 +52305,142 @@ "name": "" }, "developer": { - "id": 222, - "name": "Cerner Corporation" + "id": 1126, + "name": "PCE Systems" }, "product": { - "id": 3653, - "name": "Millennium (Clinical)" + "id": 1879, + "name": "PCE Care Management" }, "version": { - "id": 8608, - "name": "2018" + "id": 8633, + "name": "Version 9.4" }, - "certificationDate": "2022-11-07", + "certificationDate": "2022-12-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 56, @@ -36484,64 +52448,112 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.pcesystems.com/g10APIInfo.html" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://code.cerner.com/apiaccess" + "value": "https://www.pcesystems.com/g10APIInfo.html" }, { "criterion": { @@ -36549,15 +52561,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://code.cerner.com/apiaccess" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://code.cerner.com/apiaccess" + "value": "https://www.pcesystems.com/g10APIInfo.html" } ], "acb": "Drummond Group" @@ -36565,11 +52569,11 @@ ] }, { - "listSourceURL": "https://www.mphrx.com/fhir-service-base-url-directory/", + "listSourceURL": "https://fhir.pcisgold.com/fhirdocs/practices.json", "softwareProducts": [ { - "id": 10649, - "chplProductNumber": "15.04.04.3082.Mine.04.01.0.210609", + "id": 11137, + "chplProductNumber": "15.04.04.2126.PCIS.26.02.1.221222", "edition": { "id": 3, "name": "2015" @@ -36579,32 +52583,102 @@ "name": "" }, "developer": { - "id": 2083, - "name": "My Personal Health Records Express Inc. d/b/a MphRx" + "id": 1127, + "name": "PCIS GOLD" }, "product": { - "id": 3564, - "name": "Minerva" + "id": 1881, + "name": "PCIS GOLD EHR" }, "version": { - "id": 8343, - "name": "V4" + "id": 8707, + "name": "2.6" }, - "certificationDate": "2021-06-09", + "certificationDate": "2022-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -36612,59 +52686,69 @@ "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -36672,19 +52756,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -36692,17 +52801,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.mphrx.com/api-guide_mphrx/" + "value": "https://fhir.pcisgold.com" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.mphrx.com/api-guide_mphrx/" + "value": "https://fhir.pcisgold.com" }, { "criterion": { @@ -36710,7 +52819,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.mphrx.com/api-guide_mphrx/" + "value": "https://fhir.pcisgold.com" } ], "acb": "Drummond Group" @@ -36718,11 +52827,11 @@ ] }, { - "listSourceURL": "https://mmdcf.modulemd.com/cf.fhir.r4", + "listSourceURL": "https://smart.mdsuite.com/Endpoints", "softwareProducts": [ { - "id": 11092, - "chplProductNumber": "15.04.04.2980.Modu.10.01.1.221219", + "id": 9347, + "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", "edition": { "id": 3, "name": "2015" @@ -36732,122 +52841,122 @@ "name": "" }, "developer": { - "id": 1981, - "name": "ModuleMD" + "id": 1689, + "name": "Azalea Health" }, "product": { - "id": 3353, - "name": "ModuleMD WISE™" + "id": 2867, + "name": "PDS MDSuite" }, "version": { - "id": 8670, - "name": "10.0" + "id": 7241, + "name": "Version 8" }, - "certificationDate": "2022-12-19", + "certificationDate": "2018-02-02", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 44, @@ -36855,34 +52964,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 28, @@ -36890,74 +52989,79 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -36965,25 +53069,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://openapi.modulemd.com" + "value": "https://developer.mdsuite.com/api/help/index" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://openapi.modulemd.com" + "value": "https://developer.mdsuite.com/api/help" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://openapi.modulemd.com" + "value": "https://developer.mdsuite.com/api/help/index" } ], "acb": "Drummond Group" @@ -36991,11 +53095,11 @@ ] }, { - "listSourceURL": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9", + "listSourceURL": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/Perform+ConnectServerEndpoints.json", "softwareProducts": [ { - "id": 11229, - "chplProductNumber": "15.05.05.3141.MOYA.01.00.1.230201", + "id": 11095, + "chplProductNumber": "15.04.04.2694.Perf.21.00.0.221219", "edition": { "id": 3, "name": "2015" @@ -37005,32 +53109,32 @@ "name": "" }, "developer": { - "id": 2142, - "name": "Moyae, Inc." + "id": 1695, + "name": "CitiusTech, Inc." }, "product": { - "id": 3693, - "name": "Moyae" + "id": 3667, + "name": "PERFORM+ Connect" }, "version": { - "id": 8761, - "name": "1" + "id": 8673, + "name": "21.01.01" }, - "certificationDate": "2023-02-01", + "certificationDate": "2022-12-19", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -37038,99 +53142,119 @@ "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + } + ], + "apiDocumentation": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11282, + "chplProductNumber": "15.04.04.2694.Perf.22.01.0.230426", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 1695, + "name": "CitiusTech, Inc." + }, + "product": { + "id": 3667, + "name": "PERFORM+ Connect" + }, + "version": { + "id": 8799, + "name": "22.01.02" + }, + "certificationDate": "2023-04-26", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -37138,47 +53262,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://api-portal.navigatingcare.com/service-base-urls", + "listSourceURL": "https://fhir.thesnfist.com/endpointlist", "softwareProducts": [ { - "id": 11068, - "chplProductNumber": "15.04.04.2034.Navi.07.01.1.221213", + "id": 11177, + "chplProductNumber": "15.04.04.3137.Pace.20.00.1.221229", "edition": { "id": 3, "name": "2015" @@ -37188,27 +53309,57 @@ "name": "" }, "developer": { - "id": 1035, - "name": "Navigating Cancer, Inc." + "id": 2138, + "name": "Saisystems International" }, "product": { - "id": 2800, - "name": "Navigating Care" + "id": 3683, + "name": "PacEHR" }, "version": { - "id": 8652, - "name": "7.0" + "id": 8734, + "name": "v20.22.11.01" }, - "certificationDate": "2022-12-13", + "certificationDate": "2022-12-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, @@ -37216,19 +53367,39 @@ "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 34, @@ -37236,19 +53407,19 @@ "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 54, @@ -37256,70 +53427,60 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Audit Report(s)" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" + "value": "https://www.thesnfist.com/cures-update" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" + "value": "https://www.thesnfist.com/cures-update" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" + "value": "https://www.thesnfist.com/cures-update" } ], "acb": "Drummond Group" @@ -37327,11 +53488,11 @@ ] }, { - "listSourceURL": "https://sfp-fhirprod.azurewebsites.net/fhir/metadata", + "listSourceURL": "https://open.allscripts.com/fhirendpoints", "softwareProducts": [ { - "id": 9836, - "chplProductNumber": "15.04.04.2815.Woun.07.00.1.181231", + "id": 11398, + "chplProductNumber": "15.04.04.3123.Para.AM.08.1.231205", "edition": { "id": 3, "name": "2015" @@ -37341,43 +53502,68 @@ "name": "" }, "developer": { - "id": 1816, - "name": "Net Health" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3476, - "name": "Net Health® Wound Care" + "id": 3512, + "name": "Paragon® Ambulatory Care EHR" }, "version": { - "id": 7614, - "name": "7.0" + "id": 8908, + "name": "23.2" }, - "certificationDate": "2018-12-31", + "certificationDate": "2023-12-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 1, "number": "170.315 (a)(1)", @@ -37388,100 +53574,75 @@ "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -37489,54 +53650,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -37544,9 +53690,24 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -37554,37 +53715,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://nethealthapis.nhsinc.com/?__hstc=109635226.56ed3d94bc2b08f7a9854f9a87442b14.1569593004031.1569593004031.1570556123920.2\u0026__hssc=109635226.1.1570556123920\u0026__hsfp=154593434" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://nextgen.com/api/practice-search", - "softwareProducts": [ + }, { - "id": 10850, - "chplProductNumber": "15.04.04.1918.Next.60.09.1.220303", + "id": 11005, + "chplProductNumber": "15.04.04.3123.Para.AM.06.1.221027", "edition": { "id": 3, "name": "2015" @@ -37594,107 +53750,97 @@ "name": "" }, "developer": { - "id": 919, - "name": "NextGen Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3610, - "name": "NextGen Enterprise EHR" + "id": 3512, + "name": "Paragon® Ambulatory Care EHR" }, "version": { - "id": 8456, - "name": "6.2021.1 Patch 79" + "id": 8599, + "name": "22.2" }, - "certificationDate": "2022-03-03", + "certificationDate": "2022-10-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -37702,24 +53848,9 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -37727,24 +53858,9 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -37752,24 +53868,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 43, @@ -37777,24 +53883,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -37802,9 +53908,14 @@ "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, @@ -37812,72 +53923,72 @@ "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.nextgen.com/api" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" }, { - "id": 10861, - "chplProductNumber": "15.04.04.1918.Next.60.10.1.220318", + "id": 11332, + "chplProductNumber": "15.04.04.3123.Para.AM.07.1.230905", "edition": { "id": 3, "name": "2015" @@ -37887,27 +53998,27 @@ "name": "" }, "developer": { - "id": 919, - "name": "NextGen Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3610, - "name": "NextGen Enterprise EHR" + "id": 3512, + "name": "Paragon® Ambulatory Care EHR" }, "version": { - "id": 8459, - "name": "6.2021.1 Cures" + "id": 8846, + "name": "23.1" }, - "certificationDate": "2022-03-18", + "certificationDate": "2023-09-05", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -37915,49 +54026,44 @@ "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 44, @@ -37965,74 +54071,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, @@ -38040,104 +54101,109 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -38145,17 +54211,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { @@ -38163,19 +54229,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.meditouchehr.com/api/fhir/r4", - "softwareProducts": [ + }, { - "id": 9372, - "chplProductNumber": "15.04.04.2054.Medi.05.00.1.180220", + "id": 11333, + "chplProductNumber": "15.04.04.3123.Para.23.06.1.230905", "edition": { "id": 3, "name": "2015" @@ -38185,62 +54246,67 @@ "name": "" }, "developer": { - "id": 1055, - "name": "NextGen Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2874, - "name": "NextGen Office" + "id": 3379, + "name": "Paragon® for Hospitals 2015 Certified EHR" }, "version": { - "id": 7263, - "name": "Version 5.0" + "id": 8847, + "name": "23.1" }, - "certificationDate": "2018-02-20", + "certificationDate": "2023-09-05", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -38248,134 +54314,124 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -38383,57 +54439,57 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextgen.com/api" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.nextech.com/hubfs/Nextech%20FHIR%20Base%20URL.csv", - "softwareProducts": [ + }, { - "id": 11028, - "chplProductNumber": "15.04.04.2051.Ntec.17.09.1.221121", + "id": 11006, + "chplProductNumber": "15.04.04.3123.Para.22.05.1.221027", "edition": { "id": 3, "name": "2015" @@ -38443,47 +54499,42 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3538, - "name": "Nextech" + "id": 3379, + "name": "Paragon® for Hospitals 2015 Certified EHR" }, "version": { - "id": 8619, - "name": "17" + "id": 8600, + "name": "22.2" }, - "certificationDate": "2022-11-21", + "certificationDate": "2022-10-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 12, @@ -38491,89 +54542,94 @@ "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -38581,72 +54637,97 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { @@ -38654,14 +54735,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" }, { - "id": 11029, - "chplProductNumber": "15.04.04.2051.Next.17.08.1.221121", + "id": 11397, + "chplProductNumber": "15.04.04.3123.Para.23.07.1.231205", "edition": { "id": 3, "name": "2015" @@ -38671,37 +54752,32 @@ "name": "" }, "developer": { - "id": 1052, - "name": "Nextech" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3358, - "name": "Nextech with NewCropRx" + "id": 3742, + "name": "Paragon® for Hospitals EHR" }, "version": { - "id": 8620, - "name": "17" + "id": 8907, + "name": "23.2" }, - "certificationDate": "2022-11-21", + "certificationDate": "2023-12-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -38709,39 +54785,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 39, @@ -38749,129 +54825,149 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -38879,17 +54975,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { @@ -38897,19 +54993,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.nextech.com/developers-portal" + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.nexusclinical.net/nexusehr-fhirapi-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11130, - "chplProductNumber": "15.04.04.2989.Nexu.07.03.1.221227", + "id": 10906, + "chplProductNumber": "15.04.04.3123.Sunr.22.06.1.220524", "edition": { "id": 3, "name": "2015" @@ -38919,78 +55010,88 @@ "name": "" }, "developer": { - "id": 1990, - "name": "Nexus Clinical LLC" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3360, - "name": "Nexus EHR" + "id": 3437, + "name": "Sunrise Acute Care" }, "version": { - "id": 8700, - "name": "7.3" + "id": 8504, + "name": "22.1" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 26, "number": "170.315 (c)(2)", @@ -39004,82 +55105,82 @@ { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -39087,49 +55188,69 @@ "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -39137,37 +55258,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.novomedici.com/api-documents/", - "softwareProducts": [ + }, { - "id": 10805, - "chplProductNumber": "15.02.05.3015.Novo.01.01.1.220131", + "id": 11385, + "chplProductNumber": "15.04.04.3123.Sunr.22.07.1.231128", "edition": { "id": 3, "name": "2015" @@ -39177,62 +55293,57 @@ "name": "" }, "developer": { - "id": 2016, - "name": "NovoMedici, LLC" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2872, - "name": "NovoClinical" + "id": 3437, + "name": "Sunrise Acute Care" }, "version": { - "id": 7257, - "name": "1.0" + "id": 8896, + "name": "22.1 PR23" }, - "certificationDate": "2022-01-31", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -39240,39 +55351,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 1, @@ -39280,44 +55381,54 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -39325,34 +55436,34 @@ "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 34, @@ -39360,14 +55471,24 @@ "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 32, @@ -39375,52 +55496,77 @@ "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://developer.allscripts.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.novomedici.com/api-documents/" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.novomedici.com/meaningful-use/" + "value": "https://developer.allscripts.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://objectivemedicalsystems.com/products/electronic-health-record/fhir-endpoints/", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11146, - "chplProductNumber": "15.04.04.2086.OMSE.04.03.1.221227", + "id": 10907, + "chplProductNumber": "15.04.04.3123.Sunr.AH.08.1.220524", "edition": { "id": 3, "name": "2015" @@ -39430,122 +55576,152 @@ "name": "" }, "developer": { - "id": 1087, - "name": "Objective Medical Systems, LLC" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 1823, - "name": "OMS EHR" + "id": 2778, + "name": "Sunrise Acute Care for Hospital-based Providers" }, "version": { - "id": 8715, - "name": "4.4.0.00" + "id": 8505, + "name": "22.1" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Transitions of Care" }, { "id": 12, @@ -39553,54 +55729,59 @@ "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 5, @@ -39608,52 +55789,52 @@ "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://developer.allscripts.com/" }, { "criterion": { @@ -39661,19 +55842,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://atlas-docs-dev.patientmedrecords.com/endpoints", - "softwareProducts": [ + }, { - "id": 11049, - "chplProductNumber": "15.04.04.3048.Offi.21.02.1.221121", + "id": 11386, + "chplProductNumber": "15.04.04.3123.Sunr.AH.09.1.231128", "edition": { "id": 3, "name": "2015" @@ -39683,42 +55859,47 @@ "name": "" }, "developer": { - "id": 2049, - "name": "Office Practicum" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3090, - "name": "Office Practicum" + "id": 2778, + "name": "Sunrise Acute Care for Hospital-based Providers" }, "version": { - "id": 8636, - "name": "21" + "id": 8897, + "name": "22.1 PR23" }, - "certificationDate": "2022-11-21", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -39726,49 +55907,84 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 14, @@ -39776,14 +55992,19 @@ "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, @@ -39796,54 +56017,89 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -39851,21 +56107,32 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.officepracticum.com/op/fhir-documentation" + "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://isalus-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 10914, - "chplProductNumber": "15.04.04.2629.Offi.21.02.1.220606", + "id": 10908, + "chplProductNumber": "15.04.04.3123.Sunr.AM.08.1.220524", "edition": { "id": 3, "name": "2015" @@ -39875,37 +56142,52 @@ "name": "" }, "developer": { - "id": 1630, - "name": "iSALUS Healthcare" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2566, - "name": "OfficeEMR" + "id": 3438, + "name": "Sunrise Ambulatory Care" }, "version": { - "id": 8511, - "name": "2021" + "id": 8506, + "name": "22.1" }, - "certificationDate": "2022-06-06", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 56, @@ -39913,89 +56195,104 @@ "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -40003,49 +56300,54 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -40053,9 +56355,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 5, @@ -40063,57 +56370,42 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.isalushealthcare.com/" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.isalushealthcare.com/" + "value": "https://developer.allscripts.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.isalushealthcare.com/" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhirregistration.omnimd.com/#/specification", - "softwareProducts": [ + }, { - "id": 10784, - "chplProductNumber": "15.02.05.1717.OMNI.01.01.1.220110", + "id": 11384, + "chplProductNumber": "15.04.04.3123.Sunr.AM.09.1.231128", "edition": { "id": 3, "name": "2015" @@ -40123,42 +56415,52 @@ "name": "" }, "developer": { - "id": 718, - "name": "OmniMD Inc." + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 1081, - "name": "OmniMD" + "id": 3438, + "name": "Sunrise Ambulatory Care" }, "version": { - "id": 7393, - "name": "18.0" + "id": 8895, + "name": "22.1 PR23" }, - "certificationDate": "2022-01-10", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -40166,84 +56468,79 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -40251,24 +56548,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40276,94 +56568,84 @@ "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ @@ -40371,37 +56653,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.omnimd.com/open-api/" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhirregistration.omnimd.com/#/specification" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.omnimd.com/open-api/" + "value": "https://developer.allscripts.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir.prod.flatiron.io/fhir", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11115, - "chplProductNumber": "15.04.04.3010.Onco.28.02.1.221221", + "id": 11048, + "chplProductNumber": "15.04.04.3123.Touc.22.08.1.221205", "edition": { "id": 3, "name": "2015" @@ -40411,157 +56688,192 @@ "name": "" }, "developer": { - "id": 2011, - "name": "Flatiron Health" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2844, - "name": "OncoEMR" + "id": 2956, + "name": "TouchWorks EHR" }, "version": { - "id": 7582, - "name": "2.8" + "id": 8635, + "name": "22.1" }, - "certificationDate": "2022-12-21", + "certificationDate": "2022-12-05", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -40569,54 +56881,62 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://flatiron.force.com/FHIR/s/" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -40624,27 +56944,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://flatiron.force.com/FHIR/s/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://flatiron.force.com/FHIR/s/" + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://onetouchemr.com/onetouchemr_fhir_api.csv", - "softwareProducts": [ + }, { - "id": 9396, - "chplProductNumber": "15.04.04.2821.OneT.03.00.1.180411", + "id": 11383, + "chplProductNumber": "15.04.04.3123.Touc.22.09.1.231130", "edition": { "id": 3, "name": "2015" @@ -40654,57 +56961,32 @@ "name": "" }, "developer": { - "id": 1822, - "name": "OT EMR, Inc." + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 1822, - "name": "OneTouch EMR" + "id": 2956, + "name": "TouchWorks EHR" }, "version": { - "id": 7283, - "name": "3" - }, - "certificationDate": "2018-04-11", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, + "id": 8894, + "name": "22.1.6" + }, + "certificationDate": "2023-11-30", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 54, @@ -40712,24 +56994,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -40737,49 +57024,64 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 53, @@ -40787,127 +57089,142 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" + "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" + "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API", - "softwareProducts": [ + }, { - "id": 10938, - "chplProductNumber": "15.05.05.3115.OPEN.01.00.1.220708", + "id": 11081, + "chplProductNumber": "15.04.04.3123.dbMo.21.04.1.221216", "edition": { "id": 3, "name": "2015" @@ -40917,132 +57234,82 @@ "name": "" }, "developer": { - "id": 2116, - "name": "OpenEMR Foundation" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 3634, - "name": "OpenEMR" + "id": 138, + "name": "dbMotion" }, "version": { - "id": 8534, - "name": "7.0" + "id": 8662, + "name": "21.2 CU1" }, - "certificationDate": "2022-07-08", + "certificationDate": "2022-12-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 59, @@ -41050,82 +57317,59 @@ "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.open-emr.org/wiki/index.php/OpenEMR_7.0.0_API" + "value": "https://developer.allscripts.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://orthoplex.mkoss.com/Fhirdocs", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 9349, - "chplProductNumber": "15.04.04.3014.Orth.01.00.1.180101", + "id": 11297, + "chplProductNumber": "15.04.04.3123.dbMo.22.05.1.230531", "edition": { "id": 3, "name": "2015" @@ -41135,72 +57379,72 @@ "name": "" }, "developer": { - "id": 2015, - "name": "Mendelson Kornblum Orthopedic \u0026 Spine Specialists" + "id": 2124, + "name": "Altera Digital Health Inc." }, "product": { - "id": 2868, - "name": "OrthoplexEMR" + "id": 138, + "name": "dbMotion" }, "version": { - "id": 7243, - "name": "V1" + "id": 8814, + "name": "22.4" }, - "certificationDate": "2018-01-01", + "certificationDate": "2023-05-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 33, @@ -41208,14 +57452,14 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -41223,64 +57467,99 @@ "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + } + ], + "apiDocumentation": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.allscripts.com/" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11382, + "chplProductNumber": "15.04.04.3123.dbMo.24.06.1.231130", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2124, + "name": "Altera Digital Health Inc." + }, + "product": { + "id": 138, + "name": "dbMotion" + }, + "version": { + "id": 8893, + "name": "24.1" + }, + "certificationDate": "2023-11-30", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -41293,39 +57572,49 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -41333,40 +57622,32 @@ "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" + "value": "https://developer.allscripts.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://orthoplex.mkoss.com/swagger/ui/index#/ExternalApiPatients" + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -41374,11 +57655,11 @@ ] }, { - "listSourceURL": "http://www.qrshs.info/docs/fhir/service-base.csv", + "listSourceURL": "https://patagoniahealth.com/wp-content/uploads/2022/12/fhir-base-urls.csv", "softwareProducts": [ { - "id": 11142, - "chplProductNumber": "15.04.04.2838.PARA.22.01.1.221227", + "id": 11147, + "chplProductNumber": "15.04.04.2139.Pata.06.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -41388,16 +57669,16 @@ "name": "" }, "developer": { - "id": 1839, - "name": "QRS, Inc." + "id": 1140, + "name": "Patagonia Health" }, "product": { - "id": 3677, - "name": "PARADIGM®" + "id": 2875, + "name": "Patagonia Health EHR" }, "version": { - "id": 8712, - "name": "22" + "id": 8716, + "name": "6" }, "certificationDate": "2022-12-27", "certificationStatus": { @@ -41406,49 +57687,54 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 33, @@ -41456,14 +57742,14 @@ "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 12, @@ -41471,34 +57757,24 @@ "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 39, @@ -41506,59 +57782,64 @@ "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -41566,39 +57847,39 @@ "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -41608,23 +57889,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.qrshs.info/" + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.qrshs.info/" + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.qrshs.info/" + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -41632,11 +57913,11 @@ ] }, { - "listSourceURL": "https://www.pcesystems.com/g10APIInfo.html", + "listSourceURL": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation", "softwareProducts": [ { - "id": 11045, - "chplProductNumber": "15.04.04.2125.PCEC.94.01.1.221205", + "id": 10791, + "chplProductNumber": "15.02.05.2206.PRIC.01.03.1.220114", "edition": { "id": 3, "name": "2015" @@ -41646,77 +57927,82 @@ "name": "" }, "developer": { - "id": 1126, - "name": "PCE Systems" + "id": 1207, + "name": "Prime Clinical Systems, Inc." }, "product": { - "id": 1879, - "name": "PCE Care Management" + "id": 1976, + "name": "Patient Chart Manager" }, "version": { - "id": 8633, - "name": "Version 9.4" + "id": 8003, + "name": "7.1" }, - "certificationDate": "2022-12-05", + "certificationDate": "2022-01-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 1, @@ -41724,39 +58010,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 5, @@ -41769,14 +58030,29 @@ "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -41784,44 +58060,49 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -41829,54 +58110,44 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -41884,37 +58155,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.pcesystems.com/g10APIInfo.html" + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.pcesystems.com/g10APIInfo.html" + "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.pcesystems.com/g10APIInfo.html" + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.pcisgold.com/fhirdocs/practices.json", + "listSourceURL": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/fhir-base-urls.csv", "softwareProducts": [ { - "id": 11137, - "chplProductNumber": "15.04.04.2126.PCIS.26.02.1.221222", + "id": 11245, + "chplProductNumber": "15.04.04.3144.Pati.01.00.1.230302", "edition": { "id": 3, "name": "2015" @@ -41924,122 +58195,142 @@ "name": "" }, "developer": { - "id": 1127, - "name": "PCIS GOLD" + "id": 2145, + "name": "Patient Pattern, Inc" }, "product": { - "id": 1881, - "name": "PCIS GOLD EHR" + "id": 3696, + "name": "Patient Pattern" }, "version": { - "id": 8707, - "name": "2.6" + "id": 8769, + "name": "v1.0" }, - "certificationDate": "2022-12-22", + "certificationDate": "2023-03-02", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 53, @@ -42047,59 +58338,132 @@ "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.willowgladetechnologies.com/requirements", + "softwareProducts": [ + { + "id": 11411, + "chplProductNumber": "15.11.09.3179.PHN0.06.00.1.231222", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2180, + "name": "Willowglade Technologies Corporation" + }, + "product": { + "id": 3747, + "name": "Personal Health Navigator" + }, + "version": { + "id": 8920, + "name": "6.0" + }, + "certificationDate": "2023-12-22", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 56, @@ -42107,72 +58471,67 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.pcisgold.com" + "value": "https://www.willowgladetechnologies.com/requirements" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.pcisgold.com" + "value": "https://www.willowgladetechnologies.com/requirements" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.pcisgold.com" + "value": "https://www.willowgladetechnologies.com/requirements" } ], - "acb": "Drummond Group" + "acb": "Leidos" } ] }, { - "listSourceURL": "https://smart.mdsuite.com/Endpoints", + "listSourceURL": "https://mraemr.com:47102/api/FHIR_Service_URLs.asp", "softwareProducts": [ { - "id": 9347, - "chplProductNumber": "15.04.04.2688.PDSM.08.00.1.180202", + "id": 11214, + "chplProductNumber": "15.07.09.2479.PH01.11.01.1.230117", "edition": { "id": 3, "name": "2015" @@ -42182,52 +58541,52 @@ "name": "" }, "developer": { - "id": 1689, - "name": "Azalea Health" + "id": 1480, + "name": "MD Charts, LLC" }, "product": { - "id": 2867, - "name": "PDS MDSuite" + "id": 2370, + "name": "Physician's Solution" }, "version": { - "id": 7241, - "name": "Version 8" + "id": 7971, + "name": "11" }, - "certificationDate": "2018-02-02", + "certificationDate": "2023-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 44, @@ -42235,44 +58594,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 2, @@ -42280,104 +58649,104 @@ "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 34, @@ -42385,42 +58754,24 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://developer.mdsuite.com/api/help/index" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.mdsuite.com/api/help/index" + "value": "https://mraemr.com:47102/api/help_document.asp" }, { "criterion": { @@ -42428,19 +58779,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.mdsuite.com/api/help" + "value": "https://mraemr.com:47102/api/help_document.asp" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mraemr.com:47102/api/help_document.asp" } ], - "acb": "Drummond Group" + "acb": "Leidos" } ] }, { - "listSourceURL": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/Perform+ConnectServerEndpoints.json", + "listSourceURL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", "softwareProducts": [ { - "id": 11095, - "chplProductNumber": "15.04.04.2694.Perf.21.00.0.221219", + "id": 10235, + "chplProductNumber": "15.07.07.2479.PH01.01.00.1.191230", "edition": { "id": 3, "name": "2015" @@ -42450,122 +58809,77 @@ "name": "" }, "developer": { - "id": 1695, - "name": "CitiusTech, Inc." + "id": 1480, + "name": "MD Charts, LLC" }, "product": { - "id": 3667, - "name": "PERFORM+ Connect" + "id": 2370, + "name": "Physician's Solution" }, "version": { - "id": 8673, - "name": "21.01.01" + "id": 7971, + "name": "11" }, - "certificationDate": "2022-12-19", + "certificationDate": "2019-12-30", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - } - ], - "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" - } - ], - "acb": "Drummond Group" - }, - { - "id": 11282, - "chplProductNumber": "15.04.04.2694.Perf.22.01.0.230426", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 1695, - "name": "CitiusTech, Inc." - }, - "product": { - "id": 3667, - "name": "PERFORM+ Connect" - }, - "version": { - "id": 8799, - "name": "22.01.02" - }, - "certificationDate": "2023-04-26", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 54, @@ -42573,119 +58887,99 @@ "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" - } - ], - "apiDocumentation": [ + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" - } - ], - "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://fhir.thesnfist.com/endpointlist", - "softwareProducts": [ - { - "id": 11177, - "chplProductNumber": "15.04.04.3137.Pace.20.00.1.221229", - "edition": { - "id": 3, - "name": "2015" - }, - "practiceType": { - "id": 0, - "name": "" - }, - "developer": { - "id": 2138, - "name": "Saisystems International" - }, - "product": { - "id": 3683, - "name": "PacEHR" - }, - "version": { - "id": 8734, - "name": "v20.22.11.01" - }, - "certificationDate": "2022-12-29", - "certificationStatus": { - "id": 1, - "name": "Active" - }, - "criteriaMet": [ + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 34, @@ -42693,14 +58987,14 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 53, @@ -42708,69 +59002,79 @@ "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.thesnfist.com/cures-update" + "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { @@ -42778,27 +59082,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.thesnfist.com/cures-update" + "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.thesnfist.com/cures-update" + "value": "http://mraemr.com:47102/api/help_document.asp" } ], - "acb": "Drummond Group" + "acb": "ICSA Labs" } ] }, { - "listSourceURL": "https://open.allscripts.com/fhirendpoints", + "listSourceURL": "https://hag-fhir.amazingcharts.com/pc/endpoints", "softwareProducts": [ { - "id": 11005, - "chplProductNumber": "15.04.04.3123.Para.AM.06.1.221027", + "id": 11399, + "chplProductNumber": "15.04.04.2985.Pica.08.05.1.231207", "edition": { "id": 3, "name": "2015" @@ -42808,102 +59112,112 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1986, + "name": "Doc-tor.com" }, "product": { - "id": 3512, - "name": "Paragon® Ambulatory Care EHR" + "id": 3394, + "name": "Picasso" }, - "version": { - "id": 8599, - "name": "22.2" + "version": { + "id": 8909, + "name": "8.2" }, - "certificationDate": "2022-10-27", + "certificationDate": "2023-12-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 1, @@ -42911,142 +59225,142 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" }, { - "id": 11006, - "chplProductNumber": "15.04.04.3123.Para.22.05.1.221027", + "id": 11031, + "chplProductNumber": "15.04.04.2985.Pica.08.03.1.221128", "edition": { "id": 3, "name": "2015" @@ -43056,57 +59370,52 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1986, + "name": "Doc-tor.com" }, "product": { - "id": 3379, - "name": "Paragon® for Hospitals 2015 Certified EHR" + "id": 3394, + "name": "Picasso" }, "version": { - "id": 8600, - "name": "22.2" + "id": 8622, + "name": "8.0" }, - "certificationDate": "2022-10-27", + "certificationDate": "2022-11-28", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -43114,69 +59423,89 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 36, @@ -43184,39 +59513,49 @@ "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 53, @@ -43224,49 +59563,24 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -43276,30 +59590,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/Fhir/Introduction" + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" }, { - "id": 10906, - "chplProductNumber": "15.04.04.3123.Sunr.22.06.1.220524", + "id": 11327, + "chplProductNumber": "15.04.04.2985.Pica.08.04.1.230801", "edition": { "id": 3, "name": "2015" @@ -43309,47 +59623,67 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1986, + "name": "Doc-tor.com" }, "product": { - "id": 3437, - "name": "Sunrise Acute Care" + "id": 3394, + "name": "Picasso" }, "version": { - "id": 8504, - "name": "22.1" + "id": 8842, + "name": "8.1" }, - "certificationDate": "2022-05-24", + "certificationDate": "2023-08-01", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -43357,9 +59691,19 @@ "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -43367,109 +59711,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -43477,14 +59796,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 14, @@ -43492,44 +59816,14 @@ "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -43537,52 +59831,47 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "https://harrisambulatory.com/picasso-api-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/" + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://dataapi.practiceehr.com", + "softwareProducts": [ { - "id": 10907, - "chplProductNumber": "15.04.04.3123.Sunr.AH.08.1.220524", + "id": 10923, + "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", "edition": { "id": 3, "name": "2015" @@ -43592,127 +59881,117 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1998, + "name": "Practice EHR LLC" }, "product": { - "id": 2778, - "name": "Sunrise Acute Care for Hospital-based Providers" + "id": 2790, + "name": "Practice EHR" }, "version": { - "id": 8505, - "name": "22.1" + "id": 7051, + "name": "V12" }, - "certificationDate": "2022-05-24", + "certificationDate": "2022-06-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 53, @@ -43720,152 +59999,117 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/" + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", + "softwareProducts": [ { - "id": 10908, - "chplProductNumber": "15.04.04.3123.Sunr.AM.08.1.220524", + "id": 9856, + "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", "edition": { "id": 3, "name": "2015" @@ -43875,270 +60119,250 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 191, + "name": "California Medical Systems" }, "product": { - "id": 3438, - "name": "Sunrise Ambulatory Care" + "id": 289, + "name": "Practice Expert" }, "version": { - "id": 8506, - "name": "22.1" + "id": 7634, + "name": "2018" }, - "certificationDate": "2022-05-24", + "certificationDate": "2018-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.allscripts.com/" + "value": "https://cal-med.com/onc.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/" + "value": "https://cal-med.com/onc.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "http://cal-med.com/Calmed_API_Document.pdf" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", + "softwareProducts": [ { - "id": 11048, - "chplProductNumber": "15.04.04.3123.Touc.22.08.1.221205", + "id": 9833, + "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -44148,132 +60372,122 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1925, + "name": "Practice Fusion" }, "product": { - "id": 2956, - "name": "TouchWorks EHR" + "id": 3399, + "name": "Practice Fusion EHR" }, "version": { - "id": 8635, - "name": "22.1" + "id": 7611, + "name": "3.7" }, - "certificationDate": "2022-12-05", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 9, @@ -44281,29 +60495,54 @@ "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -44311,107 +60550,117 @@ "title": "Emergency Access" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicefusion.com/fhir/api-specifications/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicefusion.com/pds-api/developer-guide/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", + "softwareProducts": [ { - "id": 11009, - "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", + "id": 9590, + "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", "edition": { "id": 3, "name": "2015" @@ -44421,62 +60670,47 @@ "name": "" }, "developer": { - "id": 1892, - "name": "Allscripts" + "id": 986, + "name": "MicroFour, Inc." }, "product": { - "id": 3652, - "name": "Veradigm EHR" + "id": 1667, + "name": "PracticeStudio" }, "version": { - "id": 8603, - "name": "22.2" + "id": 7412, + "name": "X20" }, - "certificationDate": "2022-10-25", + "certificationDate": "2018-08-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -44484,24 +60718,19 @@ "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -44509,54 +60738,59 @@ "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -44564,142 +60798,157 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://developer.veradigm.com/" + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.veradigm.com/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.veradigm.com/" + "value": "https://oauth.patientwebportal.com/Fhir/Documentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", + "softwareProducts": [ { - "id": 11081, - "chplProductNumber": "15.04.04.3123.dbMo.21.04.1.221216", + "id": 10853, + "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", "edition": { "id": 3, "name": "2015" @@ -44709,37 +60958,52 @@ "name": "" }, "developer": { - "id": 2124, - "name": "Altera Digital Health Inc." + "id": 1767, + "name": "Infor-Med Medical Information Systems Inc." }, "product": { - "id": 138, - "name": "dbMotion" + "id": 3403, + "name": "Praxis EMR" }, "version": { - "id": 8662, - "name": "21.2 CU1" + "id": 8081, + "name": "9" }, - "certificationDate": "2022-12-16", + "certificationDate": "2022-03-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -44747,9 +61011,29 @@ "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -44757,64 +61041,124 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -44822,9 +61166,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://developer.allscripts.com/" + "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, { "criterion": { @@ -44832,19 +61176,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://developer.allscripts.com/" + "value": "https://www.praxisemr.com/applicationaccess/api/help/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.praxisemr.com/applicationaccess/api/help/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://patagoniahealth.com/wp-content/uploads/2022/12/fhir-base-urls.csv", + "listSourceURL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11147, - "chplProductNumber": "15.04.04.2139.Pata.06.01.1.221227", + "id": 11155, + "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", "edition": { "id": 3, "name": "2015" @@ -44854,97 +61206,87 @@ "name": "" }, "developer": { - "id": 1140, - "name": "Patagonia Health" + "id": 1215, + "name": "Procentive" }, "product": { - "id": 2875, - "name": "Patagonia Health EHR" + "id": 1987, + "name": "Procentive" }, "version": { - "id": 8716, - "name": "6" + "id": 8723, + "name": "2" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-12-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -44952,59 +61294,64 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 12, @@ -45012,85 +61359,49 @@ "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" + "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -45098,11 +61409,11 @@ ] }, { - "listSourceURL": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation", + "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", "softwareProducts": [ { - "id": 10791, - "chplProductNumber": "15.02.05.2206.PRIC.01.03.1.220114", + "id": 11391, + "chplProductNumber": "15.04.04.2837.Puls.08.02.1.231206", "edition": { "id": 3, "name": "2015" @@ -45112,67 +61423,77 @@ "name": "" }, "developer": { - "id": 1207, - "name": "Prime Clinical Systems, Inc." + "id": 1838, + "name": "Pulse Systems, Inc" }, "product": { - "id": 1976, - "name": "Patient Chart Manager" + "id": 2910, + "name": "Pulse EHR" }, "version": { - "id": 8003, - "name": "7.1" + "id": 8901, + "name": "8.01" }, - "certificationDate": "2022-01-14", + "certificationDate": "2023-12-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 56, @@ -45180,9 +61501,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -45190,19 +61516,9 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, @@ -45210,29 +61526,24 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -45240,137 +61551,112 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/fhir-base-urls.csv", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 11245, - "chplProductNumber": "15.04.04.3144.Pati.01.00.1.230302", + "id": 11180, + "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", "edition": { "id": 3, "name": "2015" @@ -45380,72 +61666,82 @@ "name": "" }, "developer": { - "id": 2145, - "name": "Patient Pattern, Inc" + "id": 1838, + "name": "Pulse Systems, Inc" }, "product": { - "id": 3696, - "name": "Patient Pattern" + "id": 2910, + "name": "Pulse EHR" }, "version": { - "id": 8769, - "name": "v1.0" + "id": 8737, + "name": "8.0" }, - "certificationDate": "2023-03-02", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 9, @@ -45453,110 +61749,145 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" + "value": "https://harrisambulatory.com/pulse-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -45564,11 +61895,11 @@ ] }, { - "listSourceURL": "http://mraemr.com:47102/api/FHIR_Service_URLs.asp", + "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", "softwareProducts": [ { - "id": 11214, - "chplProductNumber": "15.07.09.2479.PH01.11.01.1.230117", + "id": 11213, + "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", "edition": { "id": 3, "name": "2015" @@ -45578,82 +61909,47 @@ "name": "" }, "developer": { - "id": 1480, - "name": "MD Charts, LLC" + "id": 2140, + "name": "Pure EHR LLC" }, "product": { - "id": 2370, - "name": "Physician's Solution" + "id": 3690, + "name": "Pure EHR" }, "version": { - "id": 7971, - "name": "11" + "id": 8755, + "name": "1.0" }, - "certificationDate": "2023-01-17", + "certificationDate": "2023-01-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -45661,44 +61957,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -45711,29 +61987,29 @@ "title": "Demographics" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 59, @@ -45741,49 +62017,44 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -45791,32 +62062,32 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" }, { "criterion": { @@ -45824,14 +62095,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" } ], - "acb": "Leidos" - }, + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", + "softwareProducts": [ { - "id": 10235, - "chplProductNumber": "15.07.07.2479.PH01.01.00.1.191230", + "id": 10803, + "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", "edition": { "id": 3, "name": "2015" @@ -45841,72 +62117,67 @@ "name": "" }, "developer": { - "id": 1480, - "name": "MD Charts, LLC" + "id": 2099, + "name": "Magilen Enterprises Inc" }, "product": { - "id": 2370, - "name": "Physician's Solution" + "id": 3604, + "name": "QSmartCare" }, "version": { - "id": 7971, - "name": "11" + "id": 8432, + "name": "1.0" }, - "certificationDate": "2019-12-30", + "certificationDate": "2022-01-27", "certificationStatus": { - "id": 3, - "name": "Withdrawn by Developer" + "id": 1, + "name": "Active" }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 56, @@ -45914,29 +62185,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 42, @@ -45944,14 +62215,14 @@ "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -45959,54 +62230,34 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -46014,89 +62265,69 @@ "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -46104,9 +62335,9 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { @@ -46114,27 +62345,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://mraemr.com:47102/api/help_document.asp" + "value": "https://www.qsmartcare.com/api-documentation.html" } ], - "acb": "ICSA Labs" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/pc/endpoints", + "listSourceURL": "https://fhir.myqone.com/Endpoints", "softwareProducts": [ { - "id": 11031, - "chplProductNumber": "15.04.04.2985.Pica.08.03.1.221128", + "id": 10709, + "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", "edition": { "id": 3, "name": "2015" @@ -46144,102 +62375,122 @@ "name": "" }, "developer": { - "id": 1986, - "name": "Doc-tor.com" + "id": 1615, + "name": "TRIARQ Practice Services" }, "product": { - "id": 3394, - "name": "Picasso" + "id": 2816, + "name": "QSuite" }, "version": { - "id": 8622, - "name": "8.0" + "id": 7113, + "name": "Manistee" }, - "certificationDate": "2022-11-28", + "certificationDate": "2021-11-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -46247,29 +62498,29 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -46277,49 +62528,54 @@ "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 32, @@ -46327,52 +62583,64 @@ "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" + "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" }, { "criterion": { @@ -46380,19 +62648,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" + "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.myqone.com" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://dataapi.practiceehr.com", + "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", "softwareProducts": [ { - "id": 10923, - "chplProductNumber": "15.04.04.2997.Prac.12.01.1.220628", + "id": 10903, + "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", "edition": { "id": 3, "name": "2015" @@ -46402,27 +62678,42 @@ "name": "" }, "developer": { - "id": 1998, - "name": "Practice EHR LLC" + "id": 1929, + "name": "Quest Diagnostics Incorporated" }, "product": { - "id": 2790, - "name": "Practice EHR" + "id": 2787, + "name": "Quanum EHR" }, "version": { - "id": 7051, - "name": "V12" + "id": 8501, + "name": "2021" }, - "certificationDate": "2022-06-28", + "certificationDate": "2022-05-24", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 42, @@ -46430,69 +62721,79 @@ "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -46500,34 +62801,24 @@ "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -46535,82 +62826,77 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], - "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, + "apiDocumentation": [ { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" }, { "criterion": { @@ -46618,7 +62904,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" } ], "acb": "Drummond Group" @@ -46626,11 +62912,11 @@ ] }, { - "listSourceURL": "https://cal-med.com/fhir/Fhir-base-urls.csv", + "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", "softwareProducts": [ { - "id": 9856, - "chplProductNumber": "15.04.04.1190.Prac.18.00.1.181222", + "id": 10253, + "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", "edition": { "id": 3, "name": "2015" @@ -46640,47 +62926,47 @@ "name": "" }, "developer": { - "id": 191, - "name": "California Medical Systems" + "id": 1913, + "name": "Radysans, Inc" }, "product": { - "id": 289, - "name": "Practice Expert" + "id": 3415, + "name": "Radysans EHR" }, "version": { - "id": 7634, - "name": "2018" + "id": 7987, + "name": "5.0" }, - "certificationDate": "2018-12-22", + "certificationDate": "2019-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, @@ -46688,79 +62974,79 @@ "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -46768,19 +63054,19 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -46788,74 +63074,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://cal-med.com/onc.html" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { @@ -46863,15 +63174,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://cal-med.com/Calmed_API_Document.pdf" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://cal-med.com/onc.html" + "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" } ], "acb": "Drummond Group" @@ -46879,11 +63190,11 @@ ] }, { - "listSourceURL": "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json", + "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", "softwareProducts": [ { - "id": 9833, - "chplProductNumber": "15.04.04.2924.Prac.37.00.1.181231", + "id": 11024, + "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", "edition": { "id": 3, "name": "2015" @@ -46893,82 +63204,57 @@ "name": "" }, "developer": { - "id": 1925, - "name": "Practice Fusion" + "id": 1991, + "name": "ReLi Med Solutions, LLC" }, "product": { - "id": 3399, - "name": "Practice Fusion EHR" + "id": 3422, + "name": "ReLiMed EMR" }, "version": { - "id": 7611, - "name": "3.7" + "id": 8615, + "name": "Version 7.3" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-11-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "title": "Audit Report(s)" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -46976,44 +63262,29 @@ "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -47021,29 +63292,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 3, @@ -47051,94 +63317,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -47146,25 +63422,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.practicefusion.com/fhir/api-specifications/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" + "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -47172,11 +63448,11 @@ ] }, { - "listSourceURL": "https://oauth.patientwebportal.com/Fhir/Documentation#serviceBaseUrls", + "listSourceURL": "https://www.ihs.gov/cis/", "softwareProducts": [ { - "id": 9590, - "chplProductNumber": "15.04.04.1985.Prac.20.00.1.180810", + "id": 10848, + "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", "edition": { "id": 3, "name": "2015" @@ -47186,52 +63462,32 @@ "name": "" }, "developer": { - "id": 986, - "name": "MicroFour, Inc." + "id": 674, + "name": "Indian Health Service" }, "product": { - "id": 1667, - "name": "PracticeStudio" + "id": 1033, + "name": "Resource and Patient Management System Electronic Health Record" }, "version": { - "id": 7412, - "name": "X20" + "id": 8380, + "name": "BCERv7.0" }, - "certificationDate": "2018-08-10", + "certificationDate": "2022-03-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -47239,79 +63495,79 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -47319,29 +63575,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 4, @@ -47349,84 +63615,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -47436,35 +63702,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.ihs.gov/cis/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.praxisemr.com/applicationaccess/api/help/", + "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10853, - "chplProductNumber": "15.02.05.2766.INFO.01.02.1.220310", + "id": 9923, + "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", "edition": { "id": 3, "name": "2015" @@ -47474,47 +63740,42 @@ "name": "" }, "developer": { - "id": 1767, - "name": "Infor-Med Medical Information Systems Inc." + "id": 592, + "name": "Health Innovation Technologies, Inc." }, "product": { - "id": 3403, - "name": "Praxis EMR" + "id": 3423, + "name": "RevolutionEHR" }, "version": { - "id": 8081, - "name": "9" + "id": 7694, + "name": "7" }, - "certificationDate": "2022-03-10", + "certificationDate": "2018-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 26, @@ -47522,19 +63783,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -47542,24 +63793,14 @@ "title": "Integrity" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -47567,39 +63808,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 25, @@ -47607,92 +63853,102 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -47700,19 +63956,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.praxisemr.com/applicationaccess/api/help/" + "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://fhir-dev.procentive.com/fhir/r4/endpoints", + "listSourceURL": "https://www.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", "softwareProducts": [ { - "id": 11155, - "chplProductNumber": "15.04.04.2214.Proc.02.01.1.221228", + "id": 10770, + "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", "edition": { "id": 3, "name": "2015" @@ -47722,52 +63978,52 @@ "name": "" }, "developer": { - "id": 1215, - "name": "Procentive" + "id": 1846, + "name": "Royal Health, Inc." }, "product": { - "id": 1987, - "name": "Procentive" + "id": 3424, + "name": "Royal Solutions" }, "version": { - "id": 8723, - "name": "2.0" + "id": 8424, + "name": "5" }, - "certificationDate": "2022-12-28", + "certificationDate": "2021-12-29", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -47775,74 +64031,74 @@ "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, @@ -47850,64 +64106,64 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -47915,9 +64171,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-dev.procentive.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -47925,11 +64197,11 @@ ] }, { - "listSourceURL": "https://hag-fhir.amazingcharts.com/pl/endpoints", + "listSourceURL": "https://dataapi.sequelmed.com", "softwareProducts": [ { - "id": 11180, - "chplProductNumber": "15.04.04.2837.Puls.08.01.1.221229", + "id": 11143, + "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", "edition": { "id": 3, "name": "2015" @@ -47939,27 +64211,47 @@ "name": "" }, "developer": { - "id": 1838, - "name": "Pulse Systems, Inc" + "id": 1847, + "name": "Sequel Systems, Inc." }, "product": { - "id": 2910, - "name": "Pulse EHR" + "id": 2126, + "name": "SequelMed EHR" }, "version": { - "id": 8737, - "name": "8.0" + "id": 7973, + "name": "V12" }, - "certificationDate": "2022-12-29", + "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, @@ -47967,9 +64259,9 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -47977,54 +64269,64 @@ "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -48032,14 +64334,14 @@ "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 54, @@ -48047,9 +64349,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 14, @@ -48057,19 +64369,19 @@ "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 29, @@ -48077,39 +64389,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 36, @@ -48117,50 +64404,40 @@ "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://mu3.isequelmedasp.com/MU3API/index.html" } ], "acb": "Drummond Group" @@ -48168,11 +64445,11 @@ ] }, { - "listSourceURL": "https://pureehr.com/images/pureehr-base-urls.csv", + "listSourceURL": "https://genensys.com/api/", "softwareProducts": [ { - "id": 11213, - "chplProductNumber": "15.04.04.3139.Pure.01.00.1.230110", + "id": 10317, + "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", "edition": { "id": 3, "name": "2015" @@ -48182,27 +64459,27 @@ "name": "" }, "developer": { - "id": 2140, - "name": "Pure EHR LLC" + "id": 524, + "name": "Genensys LLC" }, "product": { - "id": 3690, - "name": "Pure EHR" + "id": 805, + "name": "Simplify EMR" }, "version": { - "id": 8755, - "name": "1.0" + "id": 8046, + "name": "4.0" }, - "certificationDate": "2023-01-10", + "certificationDate": "2020-02-25", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -48210,29 +64487,49 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 59, @@ -48240,24 +64537,89 @@ "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -48265,44 +64627,39 @@ "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -48310,19 +64667,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 52, @@ -48330,14 +64677,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -48345,37 +64687,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://genensys.com/api/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://genensys.com/api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://pureehr.com/images/PureehrApiDocumentation.pdf" + "value": "https://genensys.com/api/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.qsmartcare.com/api-documentation.html", + "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10803, - "chplProductNumber": "15.05.05.3098.MAGE.01.00.1.220127", + "id": 10987, + "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", "edition": { "id": 3, "name": "2015" @@ -48385,32 +64727,27 @@ "name": "" }, "developer": { - "id": 2099, - "name": "Magilen Enterprises Inc" + "id": 1856, + "name": "Streamline Healthcare Solutions" }, "product": { - "id": 3604, - "name": "QSmartCare" + "id": 2222, + "name": "SmartCare" }, "version": { - "id": 8432, - "name": "1.0" + "id": 8580, + "name": "R6" }, - "certificationDate": "2022-01-27", + "certificationDate": "2022-09-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, @@ -48418,19 +64755,14 @@ "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 44, @@ -48438,119 +64770,129 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -48558,82 +64900,97 @@ "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.qsmartcare.com/api-documentation.html" + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir.myqone.com/Endpoints", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10709, - "chplProductNumber": "15.02.05.2614.TRIQ.01.01.1.211105", + "id": 9303, + "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", "edition": { "id": 3, "name": "2015" @@ -48643,142 +65000,162 @@ "name": "" }, "developer": { - "id": 1615, - "name": "TRIARQ Practice Services" + "id": 1856, + "name": "Streamline Healthcare Solutions" }, "product": { - "id": 2816, - "name": "QSuite" + "id": 2222, + "name": "SmartCare" }, "version": { - "id": 7113, - "name": "Manistee" + "id": 7204, + "name": "5.0" }, - "certificationDate": "2021-11-05", + "certificationDate": "2017-12-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 36, @@ -48786,34 +65163,34 @@ "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 25, @@ -48821,9 +65198,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 35, @@ -48831,112 +65208,267 @@ "title": "End-User Device Encryption" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", + "softwareProducts": [ + { + "id": 11051, + "chplProductNumber": "15.04.04.3129.Smil.02.00.0.221207", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2130, + "name": "SmileCDR" + }, + "product": { + "id": 3660, + "name": "Smile CDR" + }, + "version": { + "id": 8637, + "name": "2022.11.PRE-35" + }, + "certificationDate": "2022-12-07", + "certificationStatus": { + "id": 3, + "name": "Withdrawn by Developer" + }, + "criteriaMet": [ { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://cms.smilecdr.com/fhir-request/api-docs" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.myqone.com" + "value": "https://cms.smilecdr.com/fhir-request/api-docs" + } + ], + "acb": "Drummond Group" + }, + { + "id": 11368, + "chplProductNumber": "15.04.04.3129.Smil.03.01.0.231117", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2130, + "name": "SmileCDR" + }, + "product": { + "id": 3660, + "name": "Smile CDR" + }, + "version": { + "id": 8879, + "name": "2023" + }, + "certificationDate": "2023-11-17", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" + "value": "https://cms.smilecdr.com/fhir-request/api-docs" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://smartonfhir.elabs.stage.quanumsolutions.com/quanum-ehr-fhir-server/quanum/service-base-api/urls", + "listSourceURL": "https://github.com/cerner/ignite-endpoints/blob/main/soarian_patient_r4_endpoints.json", "softwareProducts": [ { - "id": 10903, - "chplProductNumber": "15.04.04.2928.Quan.21.04.1.220524", + "id": 10604, + "chplProductNumber": "15.04.04.1221.Soar.15.01.1.210331", "edition": { "id": 3, "name": "2015" @@ -48946,67 +65478,62 @@ "name": "" }, "developer": { - "id": 1929, - "name": "Quest Diagnostics Incorporated" + "id": 222, + "name": "Cerner Corporation" }, "product": { - "id": 2787, - "name": "Quanum EHR" + "id": 2783, + "name": "Soarian Clinicals" }, "version": { - "id": 8501, - "name": "2021" + "id": 7020, + "name": "2015" }, - "certificationDate": "2022-05-24", + "certificationDate": "2021-03-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -49014,59 +65541,59 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 12, @@ -49074,79 +65601,94 @@ "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -49154,17 +65696,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://fhir.cerner.com/soarian/overview/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://fhir.cerner.com/soarian/overview/" }, { "criterion": { @@ -49172,7 +65714,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://fhir.cerner.com/soarian/overview/" } ], "acb": "Drummond Group" @@ -49180,11 +65722,11 @@ ] }, { - "listSourceURL": "http://radysans.com/Radysans/ONCcertification.html", + "listSourceURL": "https://fhir.solidpractice.com/.well-known/smart-configuration", "softwareProducts": [ { - "id": 10253, - "chplProductNumber": "15.04.04.2912.Rady.05.00.1.191231", + "id": 10763, + "chplProductNumber": "15.05.05.3095.SOLP.01.00.1.211227", "edition": { "id": 3, "name": "2015" @@ -49194,47 +65736,47 @@ "name": "" }, "developer": { - "id": 1913, - "name": "Radysans, Inc" + "id": 2096, + "name": "SolidPractice Technologies, LLC" }, "product": { - "id": 3415, - "name": "Radysans EHR" + "id": 3597, + "name": "SolidPractice" }, "version": { - "id": 7987, - "name": "5.0" + "id": 8418, + "name": "2.0" }, - "certificationDate": "2019-12-31", + "certificationDate": "2021-12-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 4, @@ -49242,19 +65784,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 36, @@ -49262,187 +65799,174 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "title": "Encrypt Authentication Credentials" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Application Access - All Data Request" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://solidpractice.com/cost-limitation.php" }, { "criterion": { @@ -49450,19 +65974,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" + "value": "https://solidpractice.com/cost-limitation.php" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://solidpractice.com/cost-limitation.php" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://help.relimedsolutions.com/fhir/fhir-service-urls.csv", + "listSourceURL": "https://fhir.practicegateway.net/smart", "softwareProducts": [ { - "id": 11024, - "chplProductNumber": "15.04.04.2990.ReLi.07.01.1.221118", + "id": 11421, + "chplProductNumber": "15.04.04.2355.Soph.10.02.1.231222", "edition": { "id": 3, "name": "2015" @@ -49472,92 +66004,52 @@ "name": "" }, "developer": { - "id": 1991, - "name": "ReLi Med Solutions, LLC" + "id": 1356, + "name": "Sophrona Solutions, Inc." }, "product": { - "id": 3422, - "name": "ReLiMed EMR" + "id": 2774, + "name": "Sophrona e2015 Portal Technology" }, "version": { - "id": 8615, - "name": "Version 7.3" + "id": 8930, + "name": "Version R10.11" }, - "certificationDate": "2022-11-18", + "certificationDate": "2023-12-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -49565,84 +66057,44 @@ "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -49650,39 +66102,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -49690,17 +66122,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://api-docs.practicegateway.net" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://api-docs.practicegateway.net" }, { "criterion": { @@ -49708,7 +66140,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" + "value": "https://api-docs.practicegateway.net" } ], "acb": "Drummond Group" @@ -49716,11 +66148,11 @@ ] }, { - "listSourceURL": "https://www.ihs.gov/cis/", + "listSourceURL": "https://www.correctek.com/cost-disclosure-and-transparency/", "softwareProducts": [ { - "id": 10848, - "chplProductNumber": "15.02.05.1673.RPMS.01.04.1.220302", + "id": 10274, + "chplProductNumber": "15.05.05.1292.CORT.01.00.1.200114", "edition": { "id": 3, "name": "2015" @@ -49730,102 +66162,87 @@ "name": "" }, "developer": { - "id": 674, - "name": "Indian Health Service" + "id": 293, + "name": "CorrecTek" }, "product": { - "id": 1033, - "name": "Resource and Patient Management System Electronic Health Record" + "id": 2618, + "name": "Spark" }, "version": { - "id": 8380, - "name": "BCER v6.1" + "id": 6179, + "name": "7.1" }, - "certificationDate": "2022-03-02", + "certificationDate": "2020-01-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -49833,29 +66250,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -49868,14 +66285,14 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 51, @@ -49883,29 +66300,29 @@ "title": "Automated Measure Calculation" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 54, @@ -49913,54 +66330,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -49968,9 +66355,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, { "criterion": { @@ -49978,15 +66365,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.ihs.gov/cis/" + "value": "https://www.correctek.com/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -49994,11 +66381,11 @@ ] }, { - "listSourceURL": "https://revolutionehrdev.dynamicfhir.com/fhir/r4/endpoints", + "listSourceURL": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-fhir-base-urls.csv", "softwareProducts": [ { - "id": 9923, - "chplProductNumber": "15.04.04.1591.Revo.07.00.1.181231", + "id": 10778, + "chplProductNumber": "15.05.05.3097.STRQ.01.00.1.220105", "edition": { "id": 3, "name": "2015" @@ -50008,167 +66395,167 @@ "name": "" }, "developer": { - "id": 592, - "name": "Health Innovation Technologies, Inc." + "id": 2098, + "name": "Strateq Health, Inc." }, "product": { - "id": 3423, - "name": "RevolutionEHR" + "id": 3603, + "name": "StrateqEHR" }, "version": { - "id": 7694, - "name": "7" + "id": 8426, + "name": "5" }, - "certificationDate": "2018-12-31", + "certificationDate": "2022-01-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -50176,29 +66563,19 @@ "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -50206,37 +66583,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.royalsolutionsgroup.com/web/company/cert/fhirbaseurl.csv", + "listSourceURL": "https://patientportal.streamlinemd.com/FHIRReg/Practice%20Service%20based%20URL%20List.csv", "softwareProducts": [ { - "id": 10770, - "chplProductNumber": "15.04.04.2845.Roya.05.00.1.211229", + "id": 9974, + "chplProductNumber": "15.04.04.2383.Stre.15.00.1.190417", "edition": { "id": 3, "name": "2015" @@ -50246,27 +66623,52 @@ "name": "" }, "developer": { - "id": 1846, - "name": "Royal Health, Inc." + "id": 1384, + "name": "StreamlineMD, LLC" }, "product": { - "id": 3424, - "name": "Royal Solutions" + "id": 2228, + "name": "StreamlineMD EHR" }, "version": { - "id": 8424, - "name": "5" + "id": 7742, + "name": "15.0" }, - "certificationDate": "2021-12-29", + "certificationDate": "2019-04-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -50274,29 +66676,34 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -50304,155 +66711,155 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "value": "https://patientportal.streamlinemd.com/FHIRAPI" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "value": "https://patientportal.streamlinemd.com/FHIRAPI" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "value": "https://patientportal.streamlinemd.com/FHIRAPI" } ], "acb": "Drummond Group" @@ -50460,11 +66867,11 @@ ] }, { - "listSourceURL": "https://dataapi.sequelmed.com", + "listSourceURL": "https://webservices2.systemedx.com/xnet/api/fhir", "softwareProducts": [ { - "id": 11143, - "chplProductNumber": "15.04.04.2846.Sequ.12.01.1.221227", + "id": 11075, + "chplProductNumber": "15.04.04.2857.Syst.22.01.1.221215", "edition": { "id": 3, "name": "2015" @@ -50474,77 +66881,67 @@ "name": "" }, "developer": { - "id": 1847, - "name": "Sequel Systems, Inc." + "id": 1858, + "name": "Systemedx Inc" }, "product": { - "id": 2126, - "name": "SequelMed EHR" + "id": 2918, + "name": "Systemedx Clinical Navigator" }, "version": { - "id": 7973, - "name": "V12" + "id": 8657, + "name": "2022.12" }, - "certificationDate": "2022-12-27", + "certificationDate": "2022-12-15", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 9, @@ -50552,14 +66949,19 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -50567,9 +66969,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -50577,94 +66994,99 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 37, @@ -50672,9 +67094,14 @@ "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -50682,25 +67109,25 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://www.systemedx.com/API/APIIntro.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://www.systemedx.com/API/APIIntro.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mu3.isequelmedasp.com/MU3API/index.html" + "value": "https://www.systemedx.com/API/APIIntro.html" } ], "acb": "Drummond Group" @@ -50708,11 +67135,11 @@ ] }, { - "listSourceURL": "https://genensys.com/api/", + "listSourceURL": "https://www.nemohealth.com/fhir-api/", "softwareProducts": [ { - "id": 10317, - "chplProductNumber": "15.05.05.1523.GENS.01.00.1.200225", + "id": 11179, + "chplProductNumber": "15.04.04.3003.TRAK.04.04.1.221229", "edition": { "id": 3, "name": "2015" @@ -50722,42 +67149,32 @@ "name": "" }, "developer": { - "id": 524, - "name": "Genensys LLC" + "id": 2004, + "name": "Modernizing Medicine Podiatry Systems, Inc." }, "product": { - "id": 805, - "name": "Simplify EMR" + "id": 3646, + "name": "TRAKnet" }, "version": { - "id": 8046, - "name": "4.0" + "id": 8736, + "name": "4" }, - "certificationDate": "2020-02-25", + "certificationDate": "2022-12-29", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -50765,24 +67182,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 52, @@ -50790,79 +67212,59 @@ "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -50870,79 +67272,79 @@ "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -50950,37 +67352,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://genensys.com/api/" + "value": "http://wiki.traknetsolutions.com/traknet-open-api" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://genensys.com/api/" + "value": "http://wiki.traknetsolutions.com/traknet-open-api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://genensys.com/api/" + "value": "http://wiki.traknetsolutions.com/traknet-open-api" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://dhfhirpresentation.smartcarenet.com/fhir/r4/endpoints", + "listSourceURL": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/", "softwareProducts": [ { - "id": 10987, - "chplProductNumber": "15.04.04.2855.Smar.R6.01.1.220915", + "id": 10227, + "chplProductNumber": "15.05.05.3049.UL15.01.00.1.191226", "edition": { "id": 3, "name": "2015" @@ -50990,72 +67392,52 @@ "name": "" }, "developer": { - "id": 1856, - "name": "Streamline Healthcare Solutions" + "id": 2050, + "name": "Ulrich Medical Concepts" }, "product": { - "id": 2222, - "name": "SmartCare" + "id": 3093, + "name": "Team Chart Concept" }, "version": { - "id": 8580, - "name": "R6" + "id": 7963, + "name": "7.1" }, - "certificationDate": "2022-09-15", + "certificationDate": "2019-12-26", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -51063,19 +67445,14 @@ "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 35, @@ -51083,94 +67460,74 @@ "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 52, @@ -51183,77 +67540,82 @@ "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://fhir.prd.cloud.tebra.com/fhir-request/swagger-ui/", + "softwareProducts": [ { - "id": 9303, - "chplProductNumber": "15.04.04.2855.Smar.05.00.1.171231", + "id": 11090, + "chplProductNumber": "15.04.04.2777.Tebr.05.02.1.221219", "edition": { "id": 3, "name": "2015" @@ -51263,42 +67625,27 @@ "name": "" }, "developer": { - "id": 1856, - "name": "Streamline Healthcare Solutions" + "id": 1778, + "name": "Tebra Technologies, Inc." }, "product": { - "id": 2222, - "name": "SmartCare" + "id": 3745, + "name": "Tebra EHR (Kareo)" }, "version": { - "id": 7204, - "name": "5.0" + "id": 8668, + "name": "Version 5.0" }, - "certificationDate": "2017-12-31", + "certificationDate": "2022-12-19", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -51306,14 +67653,9 @@ "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, @@ -51321,49 +67663,34 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 32, @@ -51371,79 +67698,74 @@ "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 179, "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -51451,75 +67773,70 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + "value": "https://www.kareo.com/macra-mips" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.kareo.com/macra-mips" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.kareo.com/macra-mips" } ], "acb": "Drummond Group" @@ -51527,11 +67844,11 @@ ] }, { - "listSourceURL": "https://smilecdr.com/docs/javascript_execution_environment/fhir_rest.html", + "listSourceURL": "https://devportal.techcareehr.com/Help/", "softwareProducts": [ { - "id": 11051, - "chplProductNumber": "15.04.04.3129.Smil.02.00.0.221207", + "id": 10207, + "chplProductNumber": "15.04.04.2813.Tech.05.00.0.191208", "edition": { "id": 3, "name": "2015" @@ -51541,37 +67858,107 @@ "name": "" }, "developer": { - "id": 2130, - "name": "SmileCDR" + "id": 1814, + "name": "NaphCare, Inc." }, "product": { - "id": 3660, - "name": "Smile CDR" + "id": 3502, + "name": "TechCare®" }, "version": { - "id": 8637, - "name": "2022.11.PRE-35" + "id": 7944, + "name": "Version 5.0" }, - "certificationDate": "2022-12-07", + "certificationDate": "2019-12-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 56, @@ -51579,39 +67966,82 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://devportal.techcareehr.com/Terms" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://devportal.techcareehr.com/Terms" }, { "criterion": { @@ -51619,7 +68049,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://cms.smilecdr.com/fhir-request/api-docs" + "value": "https://devportal.techcareehr.com/Terms" } ], "acb": "Drummond Group" @@ -51627,11 +68057,11 @@ ] }, { - "listSourceURL": "https://github.com/cerner/ignite-endpoints/blob/main/soarian_patient_r4_endpoints.json", + "listSourceURL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", "softwareProducts": [ { - "id": 10604, - "chplProductNumber": "15.04.04.1221.Soar.15.01.1.210331", + "id": 10799, + "chplProductNumber": "15.02.05.2936.TENZ.01.01.1.220120", "edition": { "id": 3, "name": "2015" @@ -51641,112 +68071,107 @@ "name": "" }, "developer": { - "id": 222, - "name": "Cerner Corporation" + "id": 1937, + "name": "Tenzing Medical LLC" }, "product": { - "id": 2783, - "name": "Soarian Clinicals" + "id": 3447, + "name": "Tenzing VistA" }, "version": { - "id": 7020, - "name": "2015" + "id": 7927, + "name": "2.0" }, - "certificationDate": "2021-03-31", + "certificationDate": "2022-01-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -51754,44 +68179,64 @@ "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, @@ -51801,90 +68246,120 @@ { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.cerner.com/soarian/overview/" + "value": "https://tenzing.docs.apiary.io/#" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.cerner.com/soarian/overview/" + "value": "https://tenzing.docs.apiary.io/#" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir.cerner.com/soarian/overview/" + "value": "https://tenzing.docs.apiary.io/#" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://fhir.solidpractice.com/.well-known/smart-configuration", + "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html", "softwareProducts": [ { - "id": 10763, - "chplProductNumber": "15.05.05.3095.SOLP.01.00.1.211227", + "id": 10076, + "chplProductNumber": "15.05.05.3103.TRIC.01.00.1.190820", "edition": { "id": 3, "name": "2015" @@ -51894,32 +68369,137 @@ "name": "" }, "developer": { - "id": 2096, - "name": "SolidPractice Technologies, LLC" + "id": 2104, + "name": "TriMed Technologies" }, "product": { - "id": 3597, - "name": "SolidPractice" + "id": 3099, + "name": "TriMed Complete" }, "version": { - "id": 8418, - "name": "2.0" + "id": 7825, + "name": "1" }, - "certificationDate": "2021-12-27", + "certificationDate": "2019-08-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 33, @@ -51927,44 +68507,39 @@ "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 12, @@ -51972,69 +68547,54 @@ "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -52042,54 +68602,49 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -52097,50 +68652,40 @@ "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://solidpractice.com/cost-limitation.php" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://solidpractice.com/cost-limitation.php" + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://solidpractice.com/cost-limitation.php" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" } ], "acb": "SLI Compliance" @@ -52148,11 +68693,11 @@ ] }, { - "listSourceURL": "https://www.correctek.com/cost-disclosure-and-transparency/", + "listSourceURL": "https://usmon.com/USMON-FHIRServerURLs.csv", "softwareProducts": [ { - "id": 10274, - "chplProductNumber": "15.05.05.1292.CORT.01.00.1.200114", + "id": 11096, + "chplProductNumber": "15.99.09.3011.US01.13.01.0.221220", "edition": { "id": 3, "name": "2015" @@ -52162,117 +68707,37 @@ "name": "" }, "developer": { - "id": 293, - "name": "CorrecTek" + "id": 2012, + "name": "US Monitoring, Inc." }, "product": { - "id": 2618, - "name": "Spark" + "id": 2845, + "name": "USMON Database" }, "version": { - "id": 6179, - "name": "7.1" + "id": 7190, + "name": "13" }, - "certificationDate": "2020-01-14", + "certificationDate": "2022-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 32, @@ -52285,69 +68750,54 @@ "title": "Quality Management System" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -52355,37 +68805,21 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.correctek.com/cost-disclosure-and-transparency/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.correctek.com/cost-disclosure-and-transparency/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.correctek.com/cost-disclosure-and-transparency/" + "value": "https://usmon.com/USMON-SmartOnFHIR-API.pdf" } ], - "acb": "SLI Compliance" + "acb": "Leidos" } ] }, { - "listSourceURL": "https://patientportal.streamlinemd.com/FHIRReg/Practice%20Service%20based%20URL%20List.csv", + "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", "softwareProducts": [ { - "id": 9974, - "chplProductNumber": "15.04.04.2383.Stre.15.00.1.190417", + "id": 10824, + "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", "edition": { "id": 3, "name": "2015" @@ -52395,117 +68829,97 @@ "name": "" }, "developer": { - "id": 1384, - "name": "StreamlineMD, LLC" + "id": 2085, + "name": "Landmark Health, LLC" }, "product": { - "id": 2228, - "name": "StreamlineMD EHR" + "id": 3574, + "name": "Ubiquity" }, "version": { - "id": 7742, - "name": "15.0" + "id": 8445, + "name": "1.2" }, - "certificationDate": "2019-04-17", + "certificationDate": "2022-02-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, @@ -52513,39 +68927,34 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -52555,17 +68964,7 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -52573,65 +68972,50 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], "acb": "Drummond Group" @@ -52639,11 +69023,11 @@ ] }, { - "listSourceURL": "https://webservices2.systemedx.com/xnet/api/fhir", + "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", "softwareProducts": [ { - "id": 11075, - "chplProductNumber": "15.04.04.2857.Syst.22.01.1.221215", + "id": 9333, + "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", "edition": { "id": 3, "name": "2015" @@ -52653,18 +69037,18 @@ "name": "" }, "developer": { - "id": 1858, - "name": "Systemedx Inc" + "id": 1479, + "name": "Universal EHR, Inc." }, "product": { - "id": 2918, - "name": "Systemedx Clinical Navigator" + "id": 3459, + "name": "Universal EHR" }, "version": { - "id": 8657, - "name": "2022.12" + "id": 7231, + "name": "2.0.0" }, - "certificationDate": "2022-12-15", + "certificationDate": "2018-03-12", "certificationStatus": { "id": 1, "name": "Active" @@ -52673,87 +69057,72 @@ { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "title": "Auditable Events and Tamper-Resistance" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -52763,92 +69132,82 @@ { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -52856,9 +69215,19 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 53, @@ -52866,14 +69235,19 @@ "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -52881,17 +69255,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" }, { "criterion": { @@ -52899,7 +69273,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -52907,11 +69281,11 @@ ] }, { - "listSourceURL": "https://www.nemohealth.com/fhir-api/", + "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 11179, - "chplProductNumber": "15.04.04.3003.TRAK.04.04.1.221229", + "id": 11069, + "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", "edition": { "id": 3, "name": "2015" @@ -52921,62 +69295,67 @@ "name": "" }, "developer": { - "id": 2004, - "name": "Modernizing Medicine Podiatry Systems, Inc." + "id": 1515, + "name": "VisionWeb" }, "product": { - "id": 3646, - "name": "TRAKnet" + "id": 2414, + "name": "Uprise" }, "version": { - "id": 8736, - "name": "4" + "id": 7534, + "name": "3.1" }, - "certificationDate": "2022-12-29", + "certificationDate": "2022-12-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 25, @@ -52984,14 +69363,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 52, @@ -52999,39 +69378,59 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 51, @@ -53039,14 +69438,14 @@ "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -53054,49 +69453,39 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 4, @@ -53104,32 +69493,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { @@ -53137,7 +69518,15 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -53145,11 +69534,11 @@ ] }, { - "listSourceURL": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/", + "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", "softwareProducts": [ { - "id": 10227, - "chplProductNumber": "15.05.05.3049.UL15.01.00.1.191226", + "id": 9887, + "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", "edition": { "id": 3, "name": "2015" @@ -53159,27 +69548,27 @@ "name": "" }, "developer": { - "id": 2050, - "name": "Ulrich Medical Concepts" + "id": 1876, + "name": "Vohra Wound Physicians Management, LLC" }, "product": { - "id": 3093, - "name": "Team Chart Concept" + "id": 3465, + "name": "VHS Medical Documentation \u0026 Coding" }, "version": { - "id": 7963, - "name": "7.1" + "id": 7660, + "name": "3.5" }, - "certificationDate": "2019-12-26", + "certificationDate": "2018-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 32, @@ -53187,19 +69576,39 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 54, @@ -53207,19 +69616,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 34, @@ -53227,14 +69636,9 @@ "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 29, @@ -53242,9 +69646,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 25, @@ -53252,34 +69656,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 8, @@ -53287,64 +69686,74 @@ "title": "Medication Allergy List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -53352,9 +69761,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { @@ -53362,27 +69771,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://devportal.techcareehr.com/Help/", + "listSourceURL": "https://fhir.allegiancemd.io/R4/", "softwareProducts": [ { - "id": 10207, - "chplProductNumber": "15.04.04.2813.Tech.05.00.0.191208", + "id": 10794, + "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", "edition": { "id": 3, "name": "2015" @@ -53392,32 +69801,27 @@ "name": "" }, "developer": { - "id": 1814, - "name": "NaphCare, Inc." + "id": 1673, + "name": "AllegianceMD Software, Inc." }, "product": { - "id": 3502, - "name": "TechCare®" + "id": 3463, + "name": "Veracity" }, "version": { - "id": 7944, - "name": "Version 5.0" + "id": 7899, + "name": "9.1" }, - "certificationDate": "2019-12-08", + "certificationDate": "2022-01-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -53425,24 +69829,24 @@ "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -53450,19 +69854,9 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -53470,9 +69864,9 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -53482,42 +69876,62 @@ { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, @@ -53525,9 +69939,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, @@ -53535,29 +69974,49 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -53565,9 +70024,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://devportal.techcareehr.com/Terms" + "value": "https://allegiancemd.com/developer-guide-api-help/" }, { "criterion": { @@ -53575,27 +70034,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://devportal.techcareehr.com/Terms" + "value": "https://allegiancemd.com/developer-guide-api-help/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://devportal.techcareehr.com/Terms" + "value": "https://allegiancemd.com/fhir-api-documentation" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://tenzing.docs.apiary.io/#introduction/fhir-endpoints", + "listSourceURL": "https://open.platform.veradigm.com/fhirendpoints", "softwareProducts": [ { - "id": 10799, - "chplProductNumber": "15.02.05.2936.TENZ.01.01.1.220120", + "id": 11009, + "chplProductNumber": "15.04.04.2891.Alls.VE.08.0.221025", "edition": { "id": 3, "name": "2015" @@ -53605,42 +70064,27 @@ "name": "" }, "developer": { - "id": 1937, - "name": "Tenzing Medical LLC" + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3447, - "name": "Tenzing VistA" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7927, - "name": "2.0" + "id": 8603, + "name": "22.2" }, - "certificationDate": "2022-01-20", + "certificationDate": "2022-10-25", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 34, @@ -53648,124 +70092,124 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 54, @@ -53773,39 +70217,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 37, @@ -53813,67 +70262,72 @@ "title": "Trusted Connection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://tenzing.docs.apiary.io/#" + "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://tenzingmedical.com/termsofuse" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -53881,19 +70335,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://tenzingmedical.com/termsofuse" + "value": "https://developer.veradigm.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10076, - "chplProductNumber": "15.05.05.3103.TRIC.01.00.1.190820", + "id": 11289, + "chplProductNumber": "15.04.04.2891.Alls.VE.09.0.230531", "edition": { "id": 3, "name": "2015" @@ -53903,52 +70352,27 @@ "name": "" }, "developer": { - "id": 2104, - "name": "TriMed Technologies" + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3099, - "name": "TriMed Complete" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7825, - "name": "1" + "id": 8806, + "name": "23.1" }, - "certificationDate": "2019-08-20", + "certificationDate": "2023-05-31", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 37, @@ -53956,164 +70380,149 @@ "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 12, @@ -54121,24 +70530,19 @@ "title": "Family Health History" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 36, @@ -54146,54 +70550,54 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -54201,37 +70605,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" + "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://developer.veradigm.com/" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://lmdmzprodws.landmarkhealth.org/docs/fhir-base-urls.csv", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10824, - "chplProductNumber": "15.04.04.3084.Ubiq.01.01.1.220204", + "id": 11379, + "chplProductNumber": "15.04.04.2891.Vera.23.10.0.231128", "edition": { "id": 3, "name": "2015" @@ -54241,62 +70640,162 @@ "name": "" }, "developer": { - "id": 2085, - "name": "Landmark Health, LLC" + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3574, - "name": "Ubiquity" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 8445, - "name": "1.2" + "id": 8890, + "name": "23.3" }, - "certificationDate": "2022-02-04", + "certificationDate": "2023-11-28", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -54304,99 +70803,89 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -54404,17 +70893,17 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://developer.veradigm.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://developer.veradigm.com/" }, { "criterion": { @@ -54422,19 +70911,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json", - "softwareProducts": [ + }, { - "id": 9333, - "chplProductNumber": "15.04.04.2478.Univ.02.00.1.180312", + "id": 11380, + "chplProductNumber": "15.04.04.2891.Vera.23.11.0.231128", "edition": { "id": 3, "name": "2015" @@ -54444,27 +70928,32 @@ "name": "" }, "developer": { - "id": 1479, - "name": "Universal EHR, Inc." + "id": 1892, + "name": "Veradigm" }, "product": { - "id": 3459, - "name": "Universal EHR" + "id": 3652, + "name": "Veradigm EHR" }, "version": { - "id": 7231, - "name": "2.0.0" + "id": 8891, + "name": "23.4" }, - "certificationDate": "2018-03-12", + "certificationDate": "2023-11-28", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -54472,34 +70961,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 43, @@ -54507,180 +70991,215 @@ "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://developer.veradigm.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -54688,11 +71207,11 @@ ] }, { - "listSourceURL": "https://dhpresentation.youruprise.com/fhir/r4/endpoints", + "listSourceURL": "https://proxy-fhir.versasuite.com/.well-known/smart-configuration", "softwareProducts": [ { - "id": 11069, - "chplProductNumber": "15.04.04.2514.Upri.31.01.1.221213", + "id": 10299, + "chplProductNumber": "15.07.04.2503.Vers.09.01.1.200210", "edition": { "id": 3, "name": "2015" @@ -54702,27 +71221,37 @@ "name": "" }, "developer": { - "id": 1515, - "name": "VisionWeb" + "id": 1504, + "name": "VersaSuite" }, "product": { - "id": 2414, - "name": "Uprise" + "id": 2401, + "name": "VersaSuite" }, "version": { - "id": 7534, - "name": "3.1" + "id": 7948, + "name": "9.0" }, - "certificationDate": "2022-12-13", + "certificationDate": "2020-02-10", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 4, @@ -54730,49 +71259,74 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -54780,29 +71334,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -54810,14 +71374,9 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -54825,54 +71384,54 @@ "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -54880,44 +71439,52 @@ "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" }, { "criterion": { @@ -54925,15 +71492,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://dhpresentation.youruprise.com/vwnpp/basepractice/r4/Home/ApiDocumentation" + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -54941,11 +71500,11 @@ ] }, { - "listSourceURL": "https://emr.vohrawoundteam.com/FHIRBaseUrls.csv", + "listSourceURL": "https://www.vision-works.com/cert/FHIR", "softwareProducts": [ { - "id": 9887, - "chplProductNumber": "15.04.04.2875.VHSM.35.00.1.181221", + "id": 10954, + "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", "edition": { "id": 3, "name": "2015" @@ -54955,238 +71514,208 @@ "name": "" }, "developer": { - "id": 1876, - "name": "Vohra Wound Physicians Management, LLC" + "id": 1940, + "name": "Vision Works, Inc." }, "product": { - "id": 3465, - "name": "VHS Medical Documentation \u0026 Coding" + "id": 2666, + "name": "Vision Works" }, "version": { - "id": 7660, - "name": "3.5" + "id": 7382, + "name": "10.0" }, - "certificationDate": "2018-12-21", + "certificationDate": "2022-08-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" } ], "acb": "Drummond Group" @@ -55194,11 +71723,11 @@ ] }, { - "listSourceURL": "https://fhir.allegiancemd.io/R4/", + "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10794, - "chplProductNumber": "15.02.05.2672.ALLE.01.01.1.220117", + "id": 9588, + "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", "edition": { "id": 3, "name": "2015" @@ -55208,42 +71737,37 @@ "name": "" }, "developer": { - "id": 1673, - "name": "AllegianceMD Software, Inc." + "id": 1527, + "name": "WEBeDoctor, Inc." }, "product": { - "id": 3463, - "name": "Veracity" + "id": 2433, + "name": "WEBeDoctor Physician Office" }, "version": { - "id": 7899, - "name": "9.1" + "id": 7410, + "name": "V6.0" }, - "certificationDate": "2022-01-17", + "certificationDate": "2018-05-08", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 21, @@ -55251,94 +71775,104 @@ "title": "Data Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 29, @@ -55346,59 +71880,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -55406,62 +71935,57 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://allegiancemd.com/fhir-api-documentation" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://allegiancemd.com/developer-guide-api-help/" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://allegiancemd.com/developer-guide-api-help/" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://www.vision-works.com/cert/FHIR", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10954, - "chplProductNumber": "15.04.04.2939.Visi.10.01.1.220808", + "id": 11388, + "chplProductNumber": "15.99.09.2526.WEBe.06.01.1.231204", "edition": { "id": 3, "name": "2015" @@ -55471,42 +71995,32 @@ "name": "" }, "developer": { - "id": 1940, - "name": "Vision Works, Inc." + "id": 1527, + "name": "WEBeDoctor, Inc." }, "product": { - "id": 2666, - "name": "Vision Works" + "id": 2433, + "name": "WEBeDoctor Physician Office" }, "version": { - "id": 7382, - "name": "10.0" + "id": 4393, + "name": "6.0" }, - "certificationDate": "2022-08-08", + "certificationDate": "2023-12-04", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 53, @@ -55514,49 +72028,74 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -55564,44 +72103,44 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 52, @@ -55609,9 +72148,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -55619,34 +72168,44 @@ "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -55656,35 +72215,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.vision-works.com/cert/FHIR/FHIRDocumentation.pdf" + "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } ], - "acb": "Drummond Group" + "acb": "Leidos" } ] }, { - "listSourceURL": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation/overview", + "listSourceURL": "https://api.fhir.wrs.cloud/docs", "softwareProducts": [ { - "id": 11129, - "chplProductNumber": "15.04.04.2425.Visu.13.02.1.221227", + "id": 10750, + "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", "edition": { "id": 3, "name": "2015" @@ -55694,52 +72253,62 @@ "name": "" }, "developer": { - "id": 1426, - "name": "The Echo Group" + "id": 1528, + "name": "WRS Health" }, "product": { - "id": 2857, - "name": "Visual Health Record" + "id": 2434, + "name": "WRS Health Web EHR and Practice Management System" }, "version": { - "id": 8699, - "name": "v13" + "id": 7587, + "name": "7.0" }, - "certificationDate": "2022-12-27", + "certificationDate": "2021-12-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 12, @@ -55747,39 +72316,64 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -55787,14 +72381,69 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 37, @@ -55802,49 +72451,54 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" } ], "apiDocumentation": [ @@ -55854,35 +72508,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" + "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" + "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" + "value": "https://api.fhir.wrs.cloud/docs" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.webedoctor.com/docs/fhir-base-urls.csv", + "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", "softwareProducts": [ { - "id": 9588, - "chplProductNumber": "15.99.04.2526.WEBe.06.00.1.180508", + "id": 11022, + "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", "edition": { "id": 3, "name": "2015" @@ -55892,132 +72546,132 @@ "name": "" }, "developer": { - "id": 1527, - "name": "WEBeDoctor, Inc." + "id": 933, + "name": "Medical Informatics Engineering" }, "product": { - "id": 2433, - "name": "WEBeDoctor Physician Office" + "id": 1480, + "name": "WebChart EHR" }, "version": { - "id": 7410, - "name": "V6.0" + "id": 8613, + "name": "8.4" }, - "certificationDate": "2018-05-08", + "certificationDate": "2022-11-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 54, @@ -56025,115 +72679,140 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" + "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" } ], "acb": "Drummond Group" @@ -56141,11 +72820,11 @@ ] }, { - "listSourceURL": "https://api.fhir.wrs.cloud/docs", + "listSourceURL": "https://fhir.qa.welligent.com/", "softwareProducts": [ { - "id": 10750, - "chplProductNumber": "15.02.05.2527.WRSH.01.01.1.211214", + "id": 10811, + "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", "edition": { "id": 3, "name": "2015" @@ -56155,32 +72834,67 @@ "name": "" }, "developer": { - "id": 1528, - "name": "WRS Health" + "id": 1537, + "name": "Welligent, Part of the ContinuumCloud" }, "product": { - "id": 2434, - "name": "WRS Health Web EHR and Practice Management System" + "id": 2445, + "name": "Welligent" }, "version": { - "id": 7587, - "name": "7.0" + "id": 8034, + "name": "8MU3" }, - "certificationDate": "2021-12-14", + "certificationDate": "2022-02-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -56188,34 +72902,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 12, @@ -56223,59 +72947,142 @@ "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" + } + ], + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://zoobooksystems.com/api-documentation/", + "softwareProducts": [ + { + "id": 9268, + "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 2009, + "name": "Zoobook Systems LLC" + }, + "product": { + "id": 2841, + "name": "Zoobook EHR" + }, + "version": { + "id": 7175, + "name": "2.0" + }, + "certificationDate": "2017-12-31", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 4, @@ -56283,39 +73090,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 52, @@ -56323,74 +73130,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 14, @@ -56398,9 +73195,14 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -56410,35 +73212,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://zoobooksystems.com/disclosures/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://api.wrshealth.com/api/docs/mu/index.html" + "value": "https://zoobooksystems.com/api-documentation/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.fhir.wrs.cloud/docs" + "value": "https://zoobooksystems.com/api-documentation/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/endpoints/", + "listSourceURL": "https://docs.athenahealth.com/api/guides/base-fhir-urls", "softwareProducts": [ { - "id": 11022, - "chplProductNumber": "15.04.04.1932.WebC.84.01.0.221117", + "id": 11259, + "chplProductNumber": "15.04.04.2880.Athe.AM.09.1.230317", "edition": { "id": 3, "name": "2015" @@ -56448,47 +73250,42 @@ "name": "" }, "developer": { - "id": 933, - "name": "Medical Informatics Engineering" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 1480, - "name": "WebChart EHR" + "id": 3135, + "name": "athenaClinicals" }, "version": { - "id": 8613, - "name": "8.4" + "id": 8781, + "name": "23" }, - "certificationDate": "2022-11-17", + "certificationDate": "2023-03-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -56496,34 +73293,34 @@ "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 29, @@ -56531,59 +73328,49 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 14, @@ -56591,137 +73378,152 @@ "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://mu3test.welligent.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 10811, - "chplProductNumber": "15.02.05.2536.WELL.01.01.1.220201", + "id": 10950, + "chplProductNumber": "15.04.04.2880.Athe.AM.08.1.220726", "edition": { "id": 3, "name": "2015" @@ -56731,37 +73533,132 @@ "name": "" }, "developer": { - "id": 1537, - "name": "Welligent, Part of the ContinuumCloud" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 2445, - "name": "Welligent" + "id": 3135, + "name": "athenaClinicals" }, "version": { - "id": 8034, - "name": "8MU3" + "id": 8545, + "name": "22" }, - "certificationDate": "2022-02-01", + "certificationDate": "2022-07-26", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 59, @@ -56769,157 +73666,147 @@ "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mu3test.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://mu3test.welligent.com/dhit/109/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mu3test.welligent.com/dhit/109/r4/Home/ApiDocumentation" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://sfp-nhfhirdevproxy.azurewebsites.net/fhir/metadata", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10234, - "chplProductNumber": "15.04.04.2272.Woun.07.01.1.191224", + "id": 11260, + "chplProductNumber": "15.04.04.2880.Athe.IN.09.1.230317", "edition": { "id": 3, "name": "2015" @@ -56929,62 +73816,42 @@ "name": "" }, "developer": { - "id": 1273, - "name": "RestorixHealth" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 2066, - "name": "WoundDocs" + "id": 3137, + "name": "athenaClinicals for Hospitals and Health Systems" }, "version": { - "id": 7970, - "name": "7.0" + "id": 8782, + "name": "23" }, - "certificationDate": "2019-12-24", + "certificationDate": "2023-03-17", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 2, @@ -56992,159 +73859,154 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -57152,62 +74014,62 @@ "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://nethealthapis-integration.nhsinc.com/index.html" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://zoobooksystems.com/api-documentation/", - "softwareProducts": [ + }, { - "id": 9268, - "chplProductNumber": "15.04.04.3008.Zoob.02.00.1.171231", + "id": 10951, + "chplProductNumber": "15.04.04.2880.Athe.IN.08.1.220726", "edition": { "id": 3, "name": "2015" @@ -57217,47 +74079,87 @@ "name": "" }, "developer": { - "id": 2009, - "name": "Zoobook Systems LLC" + "id": 1881, + "name": "athenahealth, Inc." }, "product": { - "id": 2841, - "name": "Zoobook EHR" + "id": 3137, + "name": "athenaClinicals for Hospitals and Health Systems" }, "version": { - "id": 7175, - "name": "2.0" + "id": 8546, + "name": "22" }, - "certificationDate": "2017-12-31", + "certificationDate": "2022-07-26", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -57267,17 +74169,22 @@ { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 9, @@ -57285,74 +74192,79 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -57360,34 +74272,34 @@ "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -57395,25 +74307,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://zoobooksystems.com/api-documentation/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://zoobooksystems.com/disclosures/" + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -57421,11 +74333,11 @@ ] }, { - "listSourceURL": "https://docs.athenahealth.com/api/base-fhir-urls", + "listSourceURL": "https://mydata.athenahealth.com/home", "softwareProducts": [ { - "id": 11259, - "chplProductNumber": "15.04.04.2880.Athe.AM.09.1.230317", + "id": 10916, + "chplProductNumber": "15.04.04.2880.flow.22.05.1.220621", "edition": { "id": 3, "name": "2015" @@ -57439,128 +74351,128 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3135, - "name": "athenaClinicals" + "id": 3627, + "name": "athenaFlow" }, "version": { - "id": 8781, - "name": "23" + "id": 8513, + "name": "v22" }, - "certificationDate": "2023-03-17", + "certificationDate": "2022-06-21", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 29, @@ -57568,147 +74480,132 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" }, { - "id": 10950, - "chplProductNumber": "15.04.04.2880.Athe.AM.08.1.220726", + "id": 11270, + "chplProductNumber": "15.04.04.2880.flow.23.06.1.230403", "edition": { "id": 3, "name": "2015" @@ -57722,153 +74619,118 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3135, - "name": "athenaClinicals" + "id": 3627, + "name": "athenaFlow" }, "version": { - "id": 8545, - "name": "22" + "id": 8787, + "name": "v23" }, - "certificationDate": "2022-07-26", + "certificationDate": "2023-04-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 35, @@ -57876,122 +74738,147 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" }, { - "id": 11260, - "chplProductNumber": "15.04.04.2880.Athe.IN.09.1.230317", + "id": 10917, + "chplProductNumber": "15.04.04.2880.prac.22.04.1.220621", "edition": { "id": 3, "name": "2015" @@ -58005,48 +74892,28 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3137, - "name": "athenaClinicals for Hospitals and Health Systems" + "id": 3628, + "name": "athenaPractice" }, "version": { - "id": 8782, - "name": "23" + "id": 8514, + "name": "v22" }, - "certificationDate": "2023-03-17", + "certificationDate": "2022-06-21", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -58054,79 +74921,79 @@ "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -58134,74 +75001,89 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, @@ -58209,52 +75091,67 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" }, { - "id": 10951, - "chplProductNumber": "15.04.04.2880.Athe.IN.08.1.220726", + "id": 11271, + "chplProductNumber": "15.04.04.2880.prac.23.05.1.230403", "edition": { "id": 3, "name": "2015" @@ -58268,83 +75165,103 @@ "name": "athenahealth, Inc." }, "product": { - "id": 3137, - "name": "athenaClinicals for Hospitals and Health Systems" + "id": 3628, + "name": "athenaPractice" }, "version": { - "id": 8546, - "name": "22" + "id": 8788, + "name": "v23" }, - "certificationDate": "2022-07-26", + "certificationDate": "2023-04-03", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 43, @@ -58352,54 +75269,69 @@ "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -58407,39 +75339,9 @@ "title": "Implantable Device List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -58447,44 +75349,49 @@ "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -58492,25 +75399,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -58518,11 +75425,11 @@ ] }, { - "listSourceURL": "https://mydata.athenahealth.com/home", + "listSourceURL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10916, - "chplProductNumber": "15.04.04.2880.flow.22.05.1.220621", + "id": 10910, + "chplProductNumber": "15.99.04.2897.DRCH.11.03.1.220531", "edition": { "id": 3, "name": "2015" @@ -58532,47 +75439,37 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 1898, + "name": "drchrono Inc." }, "product": { - "id": 3627, - "name": "athenaFlow" + "id": 3187, + "name": "drchrono EHR" }, "version": { - "id": 8513, - "name": "v22" + "id": 7598, + "name": "11.0" }, - "certificationDate": "2022-06-21", + "certificationDate": "2022-05-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -58580,59 +75477,49 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 12, @@ -58640,24 +75527,24 @@ "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -58665,99 +75552,109 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -58765,32 +75662,37 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://drchrono-fhirpresentation.everhealthsoftware.com/drchrono/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://drchrono.com/api-docs/v4/documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://drchrono.com/api-docs/v4/documentation" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html", + "softwareProducts": [ { - "id": 11270, - "chplProductNumber": "15.04.04.2880.flow.23.06.1.230403", + "id": 9849, + "chplProductNumber": "15.05.05.3103.TRI8.01.00.1.190111", "edition": { "id": 3, "name": "2015" @@ -58800,42 +75702,42 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 2104, + "name": "TriMed Technologies" }, "product": { - "id": 3627, - "name": "athenaFlow" + "id": 3024, + "name": "e-Medsys E.H.R." }, "version": { - "id": 8787, - "name": "v23" + "id": 7627, + "name": "8" }, - "certificationDate": "2023-04-03", + "certificationDate": "2019-01-11", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -58843,9 +75745,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -58853,20 +75770,25 @@ "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 4, "number": "170.315 (a)(4)", @@ -58878,49 +75800,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -58928,59 +75835,54 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 53, @@ -58988,34 +75890,44 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 51, @@ -59023,42 +75935,47 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://mydata.athenahealth.com/home" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" } ], - "acb": "Drummond Group" - }, + "acb": "SLI Compliance" + } + ] + }, + { + "listSourceURL": "https://ipatientcare.com/onc-acb-certified-2015-edition/", + "softwareProducts": [ { - "id": 10917, - "chplProductNumber": "15.04.04.2880.prac.22.04.1.220621", + "id": 9371, + "chplProductNumber": "15.04.04.1146.eChi.18.01.1.180403", "edition": { "id": 3, "name": "2015" @@ -59068,127 +75985,132 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 147, + "name": "Best Practices Academy" }, "product": { - "id": 3628, - "name": "athenaPractice" + "id": 241, + "name": "eChiroEHR" }, "version": { - "id": 8514, - "name": "v22" + "id": 7262, + "name": "18.0" }, - "certificationDate": "2022-06-21", + "certificationDate": "2018-04-03", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -59196,127 +76118,124 @@ "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://mydata.athenahealth.com/home" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" }, { "criterion": { @@ -59324,14 +76243,27 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://fhir.eclinicalworks.com/ecwopendev/external/practiceList", + "softwareProducts": [ { - "id": 11271, - "chplProductNumber": "15.04.04.2880.prac.23.05.1.230403", + "id": 11021, + "chplProductNumber": "15.04.04.2883.eCli.12.06.1.221116", "edition": { "id": 3, "name": "2015" @@ -59341,87 +76273,32 @@ "name": "" }, "developer": { - "id": 1881, - "name": "athenahealth, Inc." + "id": 1884, + "name": "eClinicalWorks, LLC" }, "product": { - "id": 3628, - "name": "athenaPractice" + "id": 3189, + "name": "eClinicalWorks" }, "version": { - "id": 8788, - "name": "v23" + "id": 8612, + "name": "Version 12.0.1" }, - "certificationDate": "2023-04-03", + "certificationDate": "2022-11-16", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 25, @@ -59429,34 +76306,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 34, @@ -59464,79 +76336,84 @@ "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 33, @@ -59544,14 +76421,39 @@ "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -59559,19 +76461,49 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -59579,37 +76511,32 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mydata.athenahealth.com/home" + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/r4/endpoints", - "softwareProducts": [ + }, { - "id": 10910, - "chplProductNumber": "15.99.04.2897.DRCH.11.03.1.220531", + "id": 11062, + "chplProductNumber": "15.04.04.2883.eCli.11.05.1.221212", "edition": { "id": 3, "name": "2015" @@ -59619,82 +76546,62 @@ "name": "" }, "developer": { - "id": 1898, - "name": "drchrono Inc." + "id": 1884, + "name": "eClinicalWorks, LLC" }, "product": { - "id": 3187, - "name": "drchrono EHR" + "id": 3189, + "name": "eClinicalWorks" }, "version": { - "id": 7598, - "name": "11.0" + "id": 8647, + "name": "Version 11.52.305C" }, - "certificationDate": "2022-05-31", + "certificationDate": "2022-12-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 34, @@ -59702,24 +76609,29 @@ "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 3, @@ -59727,99 +76639,109 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -59827,9 +76749,34 @@ "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -59839,35 +76786,30 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://drchrono.com/api-docs/v4/documentation" + "value": "https://fhir.eclinicalworks.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://drchrono.com/api-docs/v4/documentation" + "value": "https://fhir.eclinicalworks.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://drchrono.com/api-docs/v4/documentation" + "value": "https://fhir.eclinicalworks.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html", - "softwareProducts": [ + }, { - "id": 9849, - "chplProductNumber": "15.05.05.3103.TRI8.01.00.1.190111", + "id": 11299, + "chplProductNumber": "15.04.04.2883.eCli.12.07.1.230613", "edition": { "id": 3, "name": "2015" @@ -59877,138 +76819,123 @@ "name": "" }, "developer": { - "id": 2104, - "name": "TriMed Technologies" + "id": 1884, + "name": "eClinicalWorks, LLC" }, "product": { - "id": 3024, - "name": "e-Medsys E.H.R." + "id": 3189, + "name": "eClinicalWorks" }, "version": { - "id": 7627, - "name": "8" + "id": 8815, + "name": "Version 12.0.2" }, - "certificationDate": "2019-01-11", + "certificationDate": "2023-06-13", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 14, "number": "170.315 (a)(14)", @@ -60020,9 +76947,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 35, @@ -60030,89 +76957,99 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -60122,35 +77059,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" + "value": "https://fhir.eclinicalworks.com" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://ipatientcare.com/onc-acb-certified-2015-edition/", + "listSourceURL": "https://www.edermehr.com/sites/default/files/webform/FHIR%20Service%20URLs.pdf", "softwareProducts": [ { - "id": 9371, - "chplProductNumber": "15.04.04.1146.eChi.18.01.1.180403", + "id": 10149, + "chplProductNumber": "15.04.04.2592.eDer.28.00.1.191025", "edition": { "id": 3, "name": "2015" @@ -60160,57 +77097,72 @@ "name": "" }, "developer": { - "id": 147, - "name": "Best Practices Academy" + "id": 1593, + "name": "eDerm Systems LLC" }, "product": { - "id": 241, - "name": "eChiroEHR" + "id": 2677, + "name": "eDerm Systems" }, "version": { - "id": 7262, - "name": "18.0" + "id": 7890, + "name": "2.8.0" }, - "certificationDate": "2018-04-03", + "certificationDate": "2019-10-25", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -60223,159 +77175,69 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -60383,50 +77245,45 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developer.ipatientcare.net/DeveloperResources/WebHelpFHIR/" + "value": "https://www.edermehr.com/ederm-onc-certified" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" + "value": "https://www.edermehr.com/ederm-onc-certified" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://ipatientcare.com/onc-acb-certified-2015-edition/" + "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -60434,11 +77291,11 @@ ] }, { - "listSourceURL": "https://fhir.eclinicalworks.com/ecwopendev", + "listSourceURL": "https://www.ehana.com/s/fhir-base-urls.csv", "softwareProducts": [ { - "id": 11021, - "chplProductNumber": "15.04.04.2883.eCli.12.06.1.221116", + "id": 10200, + "chplProductNumber": "15.04.04.2594.eHan.19.00.1.191206", "edition": { "id": 3, "name": "2015" @@ -60448,37 +77305,37 @@ "name": "" }, "developer": { - "id": 1884, - "name": "eClinicalWorks, LLC" + "id": 1595, + "name": "eHana" }, "product": { - "id": 3189, - "name": "eClinicalWorks" + "id": 2516, + "name": "eHana EHR" }, "version": { - "id": 8612, - "name": "v12.0.1" + "id": 7937, + "name": "v2019-MU" }, - "certificationDate": "2022-11-16", + "certificationDate": "2019-12-06", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -60491,215 +77348,200 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://fhir.eclinicalworks.com" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir.eclinicalworks.com" + "value": "https://mu2014-stage.ehana.com/apidocs" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhir.eclinicalworks.com" + "value": "https://mu2014-stage.ehana.com/apidocs" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://mu2014-stage.ehana.com/apidocs" } ], "acb": "Drummond Group" @@ -60707,11 +77549,11 @@ ] }, { - "listSourceURL": "https://fhir.eclinicalworks.com/ecwopendev/", + "listSourceURL": "https://emedpractice.com/Fhir/FhirHelpDocument.html", "softwareProducts": [ { - "id": 11062, - "chplProductNumber": "15.04.04.2883.eCli.11.05.1.221212", + "id": 10787, + "chplProductNumber": "15.02.05.2898.EMED.01.01.1.220112", "edition": { "id": 3, "name": "2015" @@ -60721,42 +77563,52 @@ "name": "" }, "developer": { - "id": 1884, - "name": "eClinicalWorks, LLC" + "id": 1899, + "name": "eMedPractice LLC" }, "product": { - "id": 3189, - "name": "eClinicalWorks" + "id": 2524, + "name": "eMedicalPractice" }, "version": { - "id": 8647, - "name": "11.52.305C" + "id": 6878, + "name": "2.0" }, - "certificationDate": "2022-12-12", + "certificationDate": "2022-01-12", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -60764,14 +77616,19 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, @@ -60779,24 +77636,34 @@ "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 43, @@ -60804,187 +77671,162 @@ "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir.eclinicalworks.com/" + "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://fhir.eclinicalworks.com/" + "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://fhir.eclinicalworks.com/" + "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://www.edermehr.com/sites/default/files/webform/FHIR%20Service%20URLs.pdf", + "listSourceURL": "https://eph-solutions.com/FHIR_Service_URL_08162022.pdf", "softwareProducts": [ { - "id": 10149, - "chplProductNumber": "15.04.04.2592.eDer.28.00.1.191025", + "id": 10909, + "chplProductNumber": "15.04.04.3113.Ephs.05.00.1.220530", "edition": { "id": 3, "name": "2015" @@ -60994,37 +77836,47 @@ "name": "" }, "developer": { - "id": 1593, - "name": "eDerm Systems LLC" + "id": 2114, + "name": "ePH Solutions, Inc" }, "product": { - "id": 2677, - "name": "eDerm Systems" + "id": 3625, + "name": "ePHS-EMR" }, "version": { - "id": 7890, - "name": "2.8.0" + "id": 8507, + "name": "5.6" }, - "certificationDate": "2019-10-25", + "certificationDate": "2022-05-30", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, @@ -61032,49 +77884,49 @@ "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -61084,32 +77936,22 @@ { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -61117,34 +77959,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, @@ -61152,35 +77984,40 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.edermehr.com/ederm-onc-certified" + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.edermehr.com/ederm-onc-certified" + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.edermehr.com/ederm-onc-certified" + "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } ], "acb": "Drummond Group" @@ -61188,11 +78025,11 @@ ] }, { - "listSourceURL": "https://www.ehana.com/s/fhir-base-urls.csv", + "listSourceURL": "https://img1.wsimg.com/blobby/go/f698f3eb-0d14-4f25-a21e-9ac5944696fe/downloads/ezdocs-fhir-base-urls.csv", "softwareProducts": [ { - "id": 10200, - "chplProductNumber": "15.04.04.2594.eHan.19.00.1.191206", + "id": 10744, + "chplProductNumber": "15.02.04.2708.eZDo.05.01.1.211209", "edition": { "id": 3, "name": "2015" @@ -61202,97 +78039,97 @@ "name": "" }, "developer": { - "id": 1595, - "name": "eHana" + "id": 1709, + "name": "Dexter Solutions Inc" }, "product": { - "id": 2516, - "name": "eHana EHR" + "id": 3507, + "name": "eZDocs" }, "version": { - "id": 7937, - "name": "v2019-MU" + "id": 7969, + "name": "5.0" }, - "certificationDate": "2019-12-06", + "certificationDate": "2021-12-09", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -61300,19 +78137,29 @@ "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 2, @@ -61320,44 +78167,59 @@ "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, @@ -61365,72 +78227,52 @@ "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://mu2014-stage.ehana.com/apidocs" + "value": "https://dexter-solutions.com/certification" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://mu2014-stage.ehana.com/apidocs" + "value": "https://dexter-solutions.com/certification" }, { "criterion": { @@ -61438,19 +78280,14 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://mu2014-stage.ehana.com/apidocs" + "value": "http://interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://emedpractice.com/Fhir/FhirHelpDocument.html", - "softwareProducts": [ + }, { - "id": 10787, - "chplProductNumber": "15.02.05.2898.EMED.01.01.1.220112", + "id": 11432, + "chplProductNumber": "15.02.04.2708.eZDo.05.02.1.240102", "edition": { "id": 3, "name": "2015" @@ -61460,52 +78297,62 @@ "name": "" }, "developer": { - "id": 1899, - "name": "eMedPractice LLC" + "id": 1709, + "name": "Dexter Solutions Inc" }, "product": { - "id": 2524, - "name": "eMedicalPractice" + "id": 3507, + "name": "eZDocs" }, "version": { - "id": 6878, - "name": "2.0" + "id": 8940, + "name": "5.5" }, - "certificationDate": "2022-01-12", + "certificationDate": "2024-01-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -61513,9 +78360,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -61523,24 +78390,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -61548,9 +78435,14 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 4, @@ -61558,24 +78450,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 2, @@ -61588,59 +78485,147 @@ "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + } + ], + "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dexter-solutions.com/certification" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" + } + ], + "acb": "Drummond Group" + } + ] + }, + { + "listSourceURL": "https://code.medicasoft.us/fhir_r4_endpoints.html", + "softwareProducts": [ + { + "id": 11141, + "chplProductNumber": "15.04.04.1930.eHTC.05.01.0.221227", + "edition": { + "id": 3, + "name": "2015" + }, + "practiceType": { + "id": 0, + "name": "" + }, + "developer": { + "id": 931, + "name": "MedicaSoft, LLC" + }, + "product": { + "id": 3069, + "name": "ehr.NXT HealthCenter" + }, + "version": { + "id": 8711, + "name": "5.1" + }, + "certificationDate": "2022-12-27", + "certificationStatus": { + "id": 1, + "name": "Active" + }, + "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -61648,44 +78633,39 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" } ], "apiDocumentation": [ @@ -61693,17 +78673,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://code.medicasoft.us/fhir_r4.html" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://code.medicasoft.us/fhir_r4.html" }, { "criterion": { @@ -61711,19 +78691,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://emedpractice.com/Fhir/FhirHelpDocument.html" + "value": "http://code.medicasoft.us/fhir_r4.html" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://eph-solutions.com/FHIR_Service_URL_08162022.pdf", + "listSourceURL": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/ServiceUrl.html", "softwareProducts": [ { - "id": 10909, - "chplProductNumber": "15.04.04.3113.Ephs.05.00.1.220530", + "id": 9585, + "chplProductNumber": "15.05.05.2737.GENI.01.00.1.180802", "edition": { "id": 3, "name": "2015" @@ -61733,82 +78713,102 @@ "name": "" }, "developer": { - "id": 2114, - "name": "ePH Solutions, Inc" + "id": 1738, + "name": "Genius Solutions Inc." }, "product": { - "id": 3625, - "name": "ePHS-EMR" + "id": 3193, + "name": "ehrTHOMAS" }, "version": { - "id": 8507, - "name": "5.6" + "id": 7407, + "name": "3" }, - "certificationDate": "2022-05-30", + "certificationDate": "2018-08-02", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 32, @@ -61816,9 +78816,29 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 42, @@ -61831,14 +78851,9 @@ "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -61846,19 +78861,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 37, @@ -61866,29 +78891,84 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -61896,37 +78976,37 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://img1.wsimg.com/blobby/go/f698f3eb-0d14-4f25-a21e-9ac5944696fe/downloads/ezdocs-fhir-base-urls.csv", + "listSourceURL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", "softwareProducts": [ { - "id": 10744, - "chplProductNumber": "15.02.04.2708.eZDo.05.01.1.211209", + "id": 11200, + "chplProductNumber": "15.04.04.2861.Elec.24.01.1.221231", "edition": { "id": 3, "name": "2015" @@ -61936,52 +79016,62 @@ "name": "" }, "developer": { - "id": 1709, - "name": "Dexter Solutions Inc" + "id": 1862, + "name": "TenEleven Group" }, "product": { - "id": 3507, - "name": "eZDocs" + "id": 3194, + "name": "electronic Clinical Record (eCR)" }, "version": { - "id": 7969, - "name": "5.0" + "id": 8751, + "name": "2.4" }, - "certificationDate": "2021-12-09", + "certificationDate": "2022-12-31", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -61989,34 +79079,54 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 3, @@ -62024,9 +79134,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 26, @@ -62034,59 +79144,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 37, @@ -62094,64 +79204,54 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -62161,23 +79261,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://interopengine.com/2017/open-api-documentation.html" + "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://dexter-solutions.com/certification" + "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://dexter-solutions.com/certification" + "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -62185,11 +79285,11 @@ ] }, { - "listSourceURL": "http://code.medicasoft.us/fhir_r4_endpoints.html", + "listSourceURL": "http://www.interopengine.com/2021", "softwareProducts": [ { - "id": 11141, - "chplProductNumber": "15.04.04.1930.eHTC.05.01.0.221227", + "id": 10214, + "chplProductNumber": "15.04.04.2796.emr4.09.00.1.191218", "edition": { "id": 3, "name": "2015" @@ -62199,42 +79299,167 @@ "name": "" }, "developer": { - "id": 931, - "name": "MedicaSoft, LLC" + "id": 1797, + "name": "MedNet Medical Solutions" }, "product": { - "id": 3069, - "name": "ehr.NXT HealthCenter" + "id": 3202, + "name": "emr4MD" }, "version": { - "id": 8711, - "name": "5.1" + "id": 7951, + "name": "Version 9.10" }, - "certificationDate": "2022-12-27", + "certificationDate": "2019-12-18", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 35, @@ -62242,44 +79467,49 @@ "title": "End-User Device Encryption" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 37, @@ -62289,17 +79519,17 @@ { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" } ], "apiDocumentation": [ @@ -62309,23 +79539,23 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://code.medicasoft.us/fhir_r4.html" + "value": "http://www.interopengine.com/open-api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://code.medicasoft.us/fhir_r4.html" + "value": "http://www.interopengine.com/open-api-documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "http://code.medicasoft.us/fhir_r4.html" + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -62333,11 +79563,11 @@ ] }, { - "listSourceURL": "https://gsehrwebapi.geniussolutions.com/Help/html/ServiceUrl.html", + "listSourceURL": "https://ehr.escribe.com/ehr/api/fhir", "softwareProducts": [ { - "id": 9585, - "chplProductNumber": "15.05.05.2737.GENI.01.00.1.180802", + "id": 10830, + "chplProductNumber": "15.02.05.3058.LILG.01.01.1.220214", "edition": { "id": 3, "name": "2015" @@ -62347,112 +79577,52 @@ "name": "" }, "developer": { - "id": 1738, - "name": "Genius Solutions Inc." + "id": 2059, + "name": "Lille Group, Inc." }, "product": { - "id": 3193, - "name": "ehrTHOMAS" + "id": 3510, + "name": "escribeHOST" }, "version": { - "id": 7407, - "name": "3" + "id": 7979, + "name": "7" }, - "certificationDate": "2018-08-02", + "certificationDate": "2022-02-14", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -62460,19 +79630,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 29, @@ -62480,29 +79650,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -62510,64 +79675,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 54, @@ -62575,34 +79725,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -62610,25 +79775,25 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://gsehrwebapi.geniussolutions.com/Help/html/Index.html" + "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "https://www.lillegroup.com/esh.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "https://www.lillegroup.com/esh.html" } ], "acb": "SLI Compliance" @@ -62636,11 +79801,11 @@ ] }, { - "listSourceURL": "https://fhir-dev.10e11.com/fhir/r4/endpoints", + "listSourceURL": "https://fhir-api.ethizo.com/#55b1b3d2-fd9a-4afa-8d17-5bf78943702d", "softwareProducts": [ { - "id": 11200, - "chplProductNumber": "15.04.04.2861.Elec.24.01.1.221231", + "id": 10265, + "chplProductNumber": "15.05.05.3060.DOTM.01.00.1.200107", "edition": { "id": 3, "name": "2015" @@ -62650,42 +79815,32 @@ "name": "" }, "developer": { - "id": 1862, - "name": "TenEleven Group" + "id": 2061, + "name": "DocToMe, Inc." }, "product": { - "id": 3194, - "name": "electronic Clinical Record (eCR)" + "id": 3515, + "name": "ethizo EHR" }, "version": { - "id": 8751, - "name": "2.42" + "id": 7998, + "name": "2.0" }, - "certificationDate": "2022-12-31", + "certificationDate": "2020-01-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -62693,34 +79848,39 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 44, @@ -62728,34 +79888,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -62763,94 +79918,99 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -62858,34 +80018,69 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -62895,35 +80090,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.ethizo.com/pda-api/developer-guide/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://www.ethizo.com/pda-api/developer-guide/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" + "value": "https://fhir-api.ethizo.com/" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "http://www.interopengine.com/2021", + "listSourceURL": "https://www.ezemrx.com/fhir", "softwareProducts": [ { - "id": 10214, - "chplProductNumber": "15.04.04.2796.emr4.09.00.1.191218", + "id": 10779, + "chplProductNumber": "15.02.05.2886.EZEM.01.01.1.220105", "edition": { "id": 3, "name": "2015" @@ -62933,27 +80128,32 @@ "name": "" }, "developer": { - "id": 1797, - "name": "MedNet Medical Solutions" + "id": 1887, + "name": "ezEMRx Inc" }, "product": { - "id": 3202, - "name": "emr4MD" + "id": 2932, + "name": "ezEMRx" }, "version": { - "id": 7951, - "name": "Version 9.10" + "id": 7385, + "name": "10.01" }, - "certificationDate": "2019-12-18", + "certificationDate": "2022-01-05", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -62961,54 +80161,59 @@ "title": "End-User Device Encryption" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -63016,24 +80221,19 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 26, @@ -63041,94 +80241,99 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -63136,72 +80341,72 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ezemrx.com/fhir" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://www.interopengine.com/open-api-documentation" + "value": "https://www.ezemrx.com/oauth/fhir.htm" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://www.interopengine.com/open-api-documentation" + "value": "https://www.ezemrx.com/oauth/fhir.htm" } ], - "acb": "Drummond Group" + "acb": "SLI Compliance" } ] }, { - "listSourceURL": "https://ehr.escribe.com/ehr/api/fhir", + "listSourceURL": "https://pcbapps.com/wp-content/uploads/2022/11/fhir-base-urls.csv", "softwareProducts": [ { - "id": 10830, - "chplProductNumber": "15.02.05.3058.LILG.01.01.1.220214", + "id": 11237, + "chplProductNumber": "15.07.04.2154.Ezpr.15.01.1.230208", "edition": { "id": 3, "name": "2015" @@ -63211,67 +80416,52 @@ "name": "" }, "developer": { - "id": 2059, - "name": "Lille Group, Inc." + "id": 1155, + "name": "Perk Medical Systems LLC (PCB Apps LLC)" }, "product": { - "id": 3510, - "name": "escribeHOST" + "id": 1915, + "name": "ezPractice" }, "version": { - "id": 7979, - "name": "7" + "id": 8767, + "name": "V15.1" }, - "certificationDate": "2022-02-14", + "certificationDate": "2023-02-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "title": "Transitions of Care" }, { "id": 36, @@ -63279,109 +80469,89 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 56, @@ -63389,19 +80559,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -63409,9 +80594,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.lillegroup.com/esh.html" + "value": "https://penn-clinical.com/api-documentation" }, { "criterion": { @@ -63419,27 +80604,22 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.lillegroup.com/esh.html" + "value": "https://penn-clinical.com/api-documentation" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://ehr.escribe.com/ehr/api/fhir/swagger-ui/" + "value": "https://penn-clinical.com/api-documentation" } ], - "acb": "SLI Compliance" - } - ] - }, - { - "listSourceURL": "https://fhir-api.ethizo.com/#55b1b3d2-fd9a-4afa-8d17-5bf78943702d", - "softwareProducts": [ + "acb": "Drummond Group" + }, { - "id": 10265, - "chplProductNumber": "15.05.05.3060.DOTM.01.00.1.200107", + "id": 10410, + "chplProductNumber": "15.07.07.2154.EZ01.01.00.1.200611", "edition": { "id": 3, "name": "2015" @@ -63449,82 +80629,57 @@ "name": "" }, "developer": { - "id": 2061, - "name": "DocToMe, Inc." + "id": 1155, + "name": "Perk Medical Systems LLC (PCB Apps LLC)" }, "product": { - "id": 3515, - "name": "ethizo EHR" + "id": 1915, + "name": "ezPractice" }, "version": { - "id": 7998, - "name": "2.0" + "id": 8133, + "name": "15.1" }, - "certificationDate": "2020-01-07", + "certificationDate": "2020-06-11", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 4, + "name": "Withdrawn by ONC-ACB" }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -63532,44 +80687,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, @@ -63577,29 +80712,14 @@ "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -63607,24 +80727,9 @@ "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -63632,34 +80737,34 @@ "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 7, @@ -63667,24 +80772,19 @@ "title": "Medication List" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 3, @@ -63692,29 +80792,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ @@ -63722,17 +80837,17 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://fhir-api.ethizo.com/" + "value": "https://penn-clinical.com/api-documentation" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ethizo.com/pda-api/developer-guide/" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" }, { "criterion": { @@ -63740,19 +80855,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ethizo.com/pda-api/developer-guide/" + "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" } ], - "acb": "SLI Compliance" + "acb": "ICSA Labs" } ] }, { - "listSourceURL": "https://www.ezemrx.com/fhir", + "listSourceURL": "https://sfp-proxy9794.azurewebsites.net/fhir/base-url", "softwareProducts": [ { - "id": 10779, - "chplProductNumber": "15.02.05.2886.EZEM.01.01.1.220105", + "id": 10140, + "chplProductNumber": "15.04.04.1575.ihea.02.00.1.191007", "edition": { "id": 3, "name": "2015" @@ -63762,47 +80877,27 @@ "name": "" }, "developer": { - "id": 1887, - "name": "ezEMRx Inc" + "id": 576, + "name": "Healogics, Inc." }, "product": { - "id": 2932, - "name": "ezEMRx" + "id": 3490, + "name": "i-heal" }, "version": { - "id": 7385, - "name": "10.01" + "id": 7881, + "name": "2.0" }, - "certificationDate": "2022-01-05", + "certificationDate": "2019-10-07", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -63810,69 +80905,54 @@ "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 59, @@ -63880,114 +80960,109 @@ "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 53, @@ -63995,52 +81070,52 @@ "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.ezemrx.com/fhir" - }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.ezemrx.com/oauth/fhir.htm" + "value": "https://www.healogics.com/2015-certified-ehr-technology/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://www.ezemrx.com/oauth/fhir.htm" + "value": "https://www.healogics.com/2015-certified-ehr-technology/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.healogics.com/2015-certified-ehr-technology/" } ], - "acb": "SLI Compliance" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://pcbapps.com/wp-content/uploads/2022/11/fhir-base-urls.csv", + "listSourceURL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", "softwareProducts": [ { - "id": 11237, - "chplProductNumber": "15.07.04.2154.Ezpr.15.01.1.230208", + "id": 11413, + "chplProductNumber": "15.04.04.2621.iMed.52.01.1.231220", "edition": { "id": 3, "name": "2015" @@ -64050,92 +81125,107 @@ "name": "" }, "developer": { - "id": 1155, - "name": "Perk Medical Systems LLC (PCB Apps LLC)" + "id": 1622, + "name": "i3 Healthcare Solutions, LLC" }, "product": { - "id": 1915, - "name": "ezPractice" + "id": 3748, + "name": "i3 EHR" }, "version": { - "id": 8767, - "name": "V15.1" + "id": 8922, + "name": "5.2" }, - "certificationDate": "2023-02-08", + "certificationDate": "2023-12-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 5, @@ -64143,112 +81233,107 @@ "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://appstudio.interopengine.com/" + }, { "criterion": { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://penn-clinical.com/api-documentation" + "value": "https://appstudio.interopengine.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://penn-clinical.com/api-documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://penn-clinical.com/api-documentation" + "value": "https://appstudio.interopengine.com/" } ], "acb": "Drummond Group" }, { - "id": 10410, - "chplProductNumber": "15.07.07.2154.EZ01.01.00.1.200611", + "id": 9851, + "chplProductNumber": "15.04.04.2621.iMed.51.00.1.181229", "edition": { "id": 3, "name": "2015" @@ -64258,97 +81343,82 @@ "name": "" }, "developer": { - "id": 1155, - "name": "Perk Medical Systems LLC (PCB Apps LLC)" + "id": 1622, + "name": "i3 Healthcare Solutions, LLC" }, "product": { - "id": 1915, - "name": "ezPractice" + "id": 3257, + "name": "i3Med" }, "version": { - "id": 8133, - "name": "15.1" + "id": 7629, + "name": "5.1" }, - "certificationDate": "2020-06-11", + "certificationDate": "2018-12-29", "certificationStatus": { - "id": 4, - "name": "Withdrawn by ONC-ACB" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 9, @@ -64356,109 +81426,99 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -64468,35 +81528,35 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/(g)(7)%20API%20Documentation.pdf" + "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" + "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://penn-clinical.com/api-documentation" + "value": "https://appstudio.interopengine.com/" } ], - "acb": "ICSA Labs" + "acb": "Drummond Group" } ] }, { - "listSourceURL": "https://sfp-proxy9794.azurewebsites.net/fhir/base-url", + "listSourceURL": "https://www.icare.com/endpoints.csv", "softwareProducts": [ { - "id": 10140, - "chplProductNumber": "15.04.04.1575.ihea.02.00.1.191007", + "id": 10314, + "chplProductNumber": "15.04.04.2617.iCar.02.00.1.200220", "edition": { "id": 3, "name": "2015" @@ -64506,32 +81566,37 @@ "name": "" }, "developer": { - "id": 576, - "name": "Healogics, Inc." + "id": 1618, + "name": "iCare.com, Inc." }, "product": { - "id": 3490, - "name": "i-heal" + "id": 2550, + "name": "iCare EHR" }, "version": { - "id": 7881, - "name": "2.0" + "id": 8043, + "name": "Version 2" }, - "certificationDate": "2019-10-07", + "certificationDate": "2020-02-20", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 33, @@ -64539,14 +81604,29 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 56, @@ -64559,164 +81639,167 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 165, "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.icare.com/developers/" + }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" + "value": "https://www.icare.com/developers/" }, { "criterion": { @@ -64724,15 +81807,7 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" + "value": "https://www.icare.com/developers/" } ], "acb": "Drummond Group" @@ -64740,11 +81815,11 @@ ] }, { - "listSourceURL": "https://icom.imedemr.com/icom50/html/emr/mvc/pages/fhir_endpoints.php?format=csv", + "listSourceURL": "https://api-fhir-proxy-2.mdland.net/", "softwareProducts": [ { - "id": 9851, - "chplProductNumber": "15.04.04.2621.iMed.51.00.1.181229", + "id": 9814, + "chplProductNumber": "15.04.04.1828.iCli.12.00.1.181221", "edition": { "id": 3, "name": "2015" @@ -64754,27 +81829,27 @@ "name": "" }, "developer": { - "id": 1622, - "name": "i3-iMed, LLC" + "id": 829, + "name": "MDLAND" }, "product": { - "id": 3257, - "name": "i3Med" + "id": 3009, + "name": "iClinic" }, "version": { - "id": 7629, - "name": "5.1" + "id": 7595, + "name": "12.3" }, - "certificationDate": "2018-12-29", + "certificationDate": "2018-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -64782,64 +81857,99 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 12, @@ -64847,19 +81957,14 @@ "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -64867,39 +81972,49 @@ "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 36, @@ -64907,55 +82022,50 @@ "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" + "value": "https://api.mdland.com/Mdland_FHIR_API.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://appstudio.interopengine.com/" + "value": "https://api.mdland.com/" }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" + "value": "https://api.mdland.com/Mdland_FHIR_API.html" } ], "acb": "Drummond Group" @@ -64963,11 +82073,11 @@ ] }, { - "listSourceURL": "https://www.icare.com/endpoints.csv", + "listSourceURL": "https://g2fhir-int.mckesson.com/docs/index.html", "softwareProducts": [ { - "id": 10314, - "chplProductNumber": "15.04.04.2617.iCar.02.00.1.200220", + "id": 9580, + "chplProductNumber": "15.04.04.2920.iKno.30.01.1.180508", "edition": { "id": 3, "name": "2015" @@ -64977,67 +82087,62 @@ "name": "" }, "developer": { - "id": 1618, - "name": "iCare.com, Inc." + "id": 1921, + "name": "McKesson Specialty Health Technology Products LLC (Ontada)" }, "product": { - "id": 2550, - "name": "iCare EHR" + "id": 3255, + "name": "iKnowMed Generation 2" }, "version": { - "id": 8043, - "name": "Version 2" + "id": 7151, + "name": "Version 3" }, - "certificationDate": "2020-02-20", + "certificationDate": "2018-05-08", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 36, @@ -65045,44 +82150,44 @@ "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, @@ -65090,135 +82195,135 @@ "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 174, "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.icare.com/developers/" + "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://www.icare.com/developers/" + "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.icare.com/developers/" + "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" } ], "acb": "Drummond Group" @@ -65226,11 +82331,11 @@ ] }, { - "listSourceURL": "https://api-fhir-proxy-2.mdland.net/", + "listSourceURL": "https://assurecare.com/wp-content/uploads/fhir-base-urls.csv", "softwareProducts": [ { - "id": 9814, - "chplProductNumber": "15.04.04.1828.iCli.12.00.1.181221", + "id": 11103, + "chplProductNumber": "15.04.04.2627.iPat.22.01.1.221221", "edition": { "id": 3, "name": "2015" @@ -65240,47 +82345,72 @@ "name": "" }, "developer": { - "id": 829, - "name": "MDLAND" + "id": 1628, + "name": "AssureCare LLC" }, "product": { - "id": 3009, - "name": "iClinic" + "id": 2563, + "name": "iPatientCare" }, "version": { - "id": 7595, - "name": "12.3" + "id": 8680, + "name": "22.5" }, - "certificationDate": "2018-12-21", + "certificationDate": "2022-12-21", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -65288,9 +82418,9 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -65298,124 +82428,114 @@ "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -65423,34 +82543,34 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -65458,37 +82578,32 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://api.mdland.com/Mdland_FHIR_API.html" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://api.mdland.com/Mdland_FHIR_API.html" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://api.mdland.com/" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://g2fhir-int.mckesson.com/docs/index.html", - "softwareProducts": [ + }, { - "id": 9580, - "chplProductNumber": "15.04.04.2920.iKno.30.01.1.180508", + "id": 11286, + "chplProductNumber": "15.04.04.2627.iPat.23.02.1.230522", "edition": { "id": 3, "name": "2015" @@ -65498,122 +82613,127 @@ "name": "" }, "developer": { - "id": 1921, - "name": "McKesson Specialty Health Technology Products LLC (Ontada)" + "id": 1628, + "name": "AssureCare LLC" }, "product": { - "id": 3255, - "name": "iKnowMed Generation 2" + "id": 2563, + "name": "iPatientCare" }, "version": { - "id": 7151, - "name": "Version 3.0" + "id": 8803, + "name": "23.0" }, - "certificationDate": "2018-05-08", + "certificationDate": "2023-05-22", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -65621,132 +82741,127 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://assurecare.com/wp-content/uploads/fhir-base-urls.csv", - "softwareProducts": [ + }, { - "id": 11103, - "chplProductNumber": "15.04.04.2627.iPat.22.01.1.221221", + "id": 8970, + "chplProductNumber": "15.04.04.2627.iPat.18.00.1.171201", "edition": { "id": 3, "name": "2015" @@ -65764,39 +82879,49 @@ "name": "iPatientCare" }, "version": { - "id": 8680, - "name": "22.5" + "id": 6965, + "name": "18.0" }, - "certificationDate": "2022-12-21", + "certificationDate": "2017-12-01", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 173, "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 28, @@ -65804,44 +82929,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 25, @@ -65849,84 +82979,89 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 26, @@ -65934,87 +83069,92 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" - }, + } + ] + }, + { + "listSourceURL": "https://careconnect-uat.netsmartcloud.com/", + "softwareProducts": [ { - "id": 8970, - "chplProductNumber": "15.04.04.2627.iPat.18.00.1.171201", + "id": 11387, + "chplProductNumber": "15.04.04.2816.myAv.23.07.0.231127", "edition": { "id": 3, "name": "2015" @@ -66024,117 +83164,77 @@ "name": "" }, "developer": { - "id": 1628, - "name": "AssureCare LLC" + "id": 1817, + "name": "Netsmart Technologies" }, "product": { - "id": 2563, - "name": "iPatientCare" + "id": 2720, + "name": "myAvatar Certified Edition" }, "version": { - "id": 6965, - "name": "18.0" + "id": 8898, + "name": "2023" }, - "certificationDate": "2017-12-01", + "certificationDate": "2023-11-27", "certificationStatus": { "id": 1, "name": "Active" }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 180, "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -66142,9 +83242,9 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -66152,29 +83252,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 44, @@ -66182,9 +83292,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -66192,84 +83317,84 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -66277,9 +83402,9 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { @@ -66287,24 +83412,19 @@ "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" - } - ] - }, - { - "listSourceURL": "https://careconnect-uat.netsmartcloud.com/", - "softwareProducts": [ + }, { "id": 11132, "chplProductNumber": "15.04.04.2816.myAv.22.06.0.221227", @@ -66330,29 +83450,14 @@ }, "certificationDate": "2022-12-27", "certificationStatus": { - "id": 1, - "name": "Active" + "id": 3, + "name": "Withdrawn by Developer" }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -66360,114 +83465,119 @@ "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 44, @@ -66475,19 +83585,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 14, @@ -66495,62 +83625,52 @@ "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -66558,15 +83678,15 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" } @@ -66608,69 +83728,69 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -66678,104 +83798,89 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -66783,14 +83888,19 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -66798,24 +83908,19 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" - }, - { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 42, @@ -66823,9 +83928,24 @@ "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -66841,7 +83961,7 @@ "criterion": { "id": 182, "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.myhelo.com/api/" }, @@ -66849,7 +83969,7 @@ "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://www.myhelo.com/api/#introduction" } @@ -66891,134 +84011,129 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care (Cures Update)" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance (Cures Update)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive (Cures Update)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation (Cures Update)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication (Cures Update)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 167, "number": "170.315 (b)(3)", - "title": "Electronic Prescribing (Cures Update)" + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report (Cures Update)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance (Cures Update)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send (Cures Update)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -67026,100 +84141,97 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials (Cures Update)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 170, "number": "170.315 (b)(9)", - "title": "Care Plan (Cures Update)" + "title": "Care Plan" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 178, "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party (Cures Update)" + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s) (Cures Update)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services (Cures Update)" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" - }, { "criterion": { "id": 181, "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request (Cures Update)" + "title": "Application Access - All Data Request" }, "value": "https://www.nablemd.com/api_fhir/index.html" }, @@ -67130,6 +84242,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nablemd.com/api_fhir/index.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nablemd.com/api_fhir/index.html" } ], "acb": "Drummond Group" diff --git a/resources/prod_resources/Canvas_Medical_Inc_EndpointSources.json b/resources/prod_resources/Canvas_Medical_Inc_EndpointSources.json index 0e3bc63c8..e8dffbff4 100644 --- a/resources/prod_resources/Canvas_Medical_Inc_EndpointSources.json +++ b/resources/prod_resources/Canvas_Medical_Inc_EndpointSources.json @@ -1,3 +1,10 @@ { - "Endpoints": null + "Endpoints": [ + { + "URL": "https://fumage-modernfamilypractice.canvasmedical.com", + "OrganizationName": "modernfamilypractice", + "NPIID": "", + "OrganizationZipCode": "" + } + ] } \ No newline at end of file diff --git a/resources/prod_resources/Carepaths_Inc_EndpointSources.json b/resources/prod_resources/Carepaths_Inc_EndpointSources.json new file mode 100644 index 000000000..931271c51 --- /dev/null +++ b/resources/prod_resources/Carepaths_Inc_EndpointSources.json @@ -0,0 +1,7282 @@ +{ + "Endpoints": [ + { + "URL": "http://developer.carepaths.com/beauchene/api/", + "OrganizationName": "Beauchene Family Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/qcounseling/api/", + "OrganizationName": "Q Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1390898-152525/api/", + "OrganizationName": "Kristen O'Shea, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/salt/api/", + "OrganizationName": "Salt and Light Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/frcc/api/", + "OrganizationName": "Firmly Rooted Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rochford/api/", + "OrganizationName": "Lisa Rochford, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pacificsky/api/", + "OrganizationName": "Pacific Sky Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yelk/api/", + "OrganizationName": "Dawn L. Yelk, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scl/api/", + "OrganizationName": "Sharon Chatkupt Lee, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385102-145752/api/", + "OrganizationName": "Embrace Life Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1072640-201954/api/", + "OrganizationName": "zusk not a real company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084636-115646/api/", + "OrganizationName": "Some Orgs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1608578-123907/api/", + "OrganizationName": "BG TESTg2g2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rosen/api/", + "OrganizationName": "Susan Rosen, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hope/api/", + "OrganizationName": "Hope Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gailm/api/", + "OrganizationName": "Gail Marhewka, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/testme/api/", + "OrganizationName": "testme", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/transitions/api/", + "OrganizationName": "Transitions Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/zzzz/api/", + "OrganizationName": "ZZTEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cms/api/", + "OrganizationName": "CMS Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1358259-171230/api/", + "OrganizationName": "Embrace Therapeutic Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mark/api/", + "OrganizationName": "Mark McCarthy LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rivercc/api/", + "OrganizationName": "River Centre Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/deeb/api/", + "OrganizationName": "Jodi Deeb", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083289-115838/api/", + "OrganizationName": "bill black", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083244-110037/api/", + "OrganizationName": "My New Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mdeluca/api/", + "OrganizationName": "Mark DeLuca", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084826-153333/api/", + "OrganizationName": "test pgc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1085811-183223/api/", + "OrganizationName": "Dordan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hirt/api/", + "OrganizationName": "Donna K. Hirt, LCSW, CADC III", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1273179-115509/api/", + "OrganizationName": "Jackie Boggs, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/salem/api/", + "OrganizationName": "Salem Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374906-091826/api/", + "OrganizationName": "DallasTest Practice123", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goines/api/", + "OrganizationName": "Goines Counseling And Consulting Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375071-144719/api/", + "OrganizationName": "Rosemarie Chernesky Holland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glf/api/", + "OrganizationName": "G. Laverne Fesperman, MSW, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376474-212704/api/", + "OrganizationName": "Brittany Bagy, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374054-194112/api/", + "OrganizationName": "Dayspring Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374139-104949/api/", + "OrganizationName": "Cachara And Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pullin/api/", + "OrganizationName": "Douglas W. Pullin, LCSW, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374286-152153/api/", + "OrganizationName": "Julie Paxton-Williams,LMSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378298-214703/api/", + "OrganizationName": "ARC Counseling and Wellness 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vazzana/api/", + "OrganizationName": "Mike Vazzana, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stepstone/api/", + "OrganizationName": "Stepping Stone Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kdlcsw/api/", + "OrganizationName": "Karna Dawson, lcsw", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/potters/api/", + "OrganizationName": "Potters Behavioral Medicine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dickens/api/", + "OrganizationName": "Daron Dickens, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1351434-133504/api/", + "OrganizationName": "Kadie Yannone, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1016983-154934/api/", + "OrganizationName": "Erica Hecht Kehrberg, LISW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1218483-102658/api/", + "OrganizationName": "testing123", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demomha/api/", + "OrganizationName": "Demo: MHA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jajodia/api/", + "OrganizationName": "Archana Jajodia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ftcampbh/api/", + "OrganizationName": "Ft. Campbell Behav Hlth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pruch/api/", + "OrganizationName": "Josephine Pruch, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374437-213911/api/", + "OrganizationName": "Sandra Quezada Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ppcllc/api/", + "OrganizationName": "Portland Personalized Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1317608-162744/api/", + "OrganizationName": "Karin Burden, LMFT, LADC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1086190-163959/api/", + "OrganizationName": "here we go again", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demooq/api/", + "OrganizationName": "Demo OQ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1300811-085644/api/", + "OrganizationName": "Social Work Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/griffith/api/", + "OrganizationName": "Dr Spencer L Griffith LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stradley/api/", + "OrganizationName": "Sandra Stradley, MSW PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374257-144016/api/", + "OrganizationName": "Mark Miller", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/erickson/api/", + "OrganizationName": "Erickson Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gjw/api/", + "OrganizationName": "Gloria J White PMHNP-BC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/khalid/api/", + "OrganizationName": "Abdul Khalid, MD, P.A,", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/webb/api/", + "OrganizationName": "Kurt C. Webb, Psy.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/impact/api/", + "OrganizationName": "Impact Living Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccma/api/", + "OrganizationName": "Chuck Chapman, M.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spt/api/", + "OrganizationName": "Suzanne Ponsioen Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374619-154423/api/", + "OrganizationName": "Susan A Berger - Telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1125215-213104/api/", + "OrganizationName": "Mary Lou Stewart, LCSW-R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nwa/api/", + "OrganizationName": "New Wellness Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374628-160445/api/", + "OrganizationName": "David L Johns LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/greco/api/", + "OrganizationName": "Alisa Greco, LMHC LC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccc/api/", + "OrganizationName": "Carter Counseling \u0026 Consulting, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gklmhc/api/", + "OrganizationName": "Giles Keating, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cook/api/", + "OrganizationName": "Salem Psych Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kupsych/api/", + "OrganizationName": "University of Kansas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1386522-145308/api/", + "OrganizationName": "Dr. White Therapy Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/strang/api/", + "OrganizationName": "Jessica I. Strang, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084734-134253/api/", + "OrganizationName": "Another Orgsss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404087-101223/api/", + "OrganizationName": "3241234", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374543-125551/api/", + "OrganizationName": "Next Step Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1419347-000128/api/", + "OrganizationName": "Todd Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/min/api/", + "OrganizationName": "Dawn Min, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drfirst/api/", + "OrganizationName": "DrFirst Certification Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rmt/api/", + "OrganizationName": "Reconciliation Ministries In-Home Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/barnard/api/", + "OrganizationName": "Beth Barnard, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1301066-112635/api/", + "OrganizationName": "We Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374558-131946/api/", + "OrganizationName": "Laura Martin LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bastani/api/", + "OrganizationName": "Patricia J Bastani P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mbrown/api/", + "OrganizationName": "Marissa Perrelli Brown, MSW, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drsol/api/", + "OrganizationName": "SMH Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fynnaikens/api/", + "OrganizationName": "Stefania Fynn-Aikins", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1069591-062047/api/", + "OrganizationName": "Helen McKibben", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lafond/api/", + "OrganizationName": "Deborah La Fond LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/crphd/api/", + "OrganizationName": "Cynthia Rohrbeck, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1499314-154225/api/", + "OrganizationName": "Indigo Holistic Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1077747-110644/api/", + "OrganizationName": "Test Practice For July Release", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374118-094759/api/", + "OrganizationName": "Metta Psychotherapy LCSW PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374791-215106/api/", + "OrganizationName": "Counselor Brenda", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376332-193428/api/", + "OrganizationName": "Aime Ferow", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1172370-153120/api/", + "OrganizationName": "Starbird Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drclair/api/", + "OrganizationName": "Clair L. Goldberg, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1174547-150338/api/", + "OrganizationName": "Therapeia, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/full/api/", + "OrganizationName": "Full Circle Counseling \u0026 Coaching,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1436879-101950/api/", + "OrganizationName": "AdvancedPsychiatricServices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1412672-134851/api/", + "OrganizationName": "Glass House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1419313-194732/api/", + "OrganizationName": "Timothy Coy, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374869-190854/api/", + "OrganizationName": "The Guild For Human Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1388081-162413/api/", + "OrganizationName": "Ozarks Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378288-211155/api/", + "OrganizationName": "ARC Counseling and Wellness Cl", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378784-004845/api/", + "OrganizationName": "Zenaida Kleiner, M.S., LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rodenberger/api/", + "OrganizationName": "Heidi M. Rodenberger, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373824-134329/api/", + "OrganizationName": "lisa s squire phd lp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/obhicdemo/api/", + "OrganizationName": "OBHIC Demo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/financial/api/", + "OrganizationName": "Financial District Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/contemplative/api/", + "OrganizationName": "Contemplative Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375765-155807/api/", + "OrganizationName": "Agape Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377658-172703/api/", + "OrganizationName": "Awareness Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1174345-210210/api/", + "OrganizationName": "Perfected Medical \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/taylor/api/", + "OrganizationName": "Travis Taylor, LPC Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378171-144809/api/", + "OrganizationName": "Dewdrop Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1257241-222919/api/", + "OrganizationName": "Jenelle Stone", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376807-111838/api/", + "OrganizationName": "Dynamic Change Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trc/api/", + "OrganizationName": "WSUPG-Psychiatry Trauma Recovery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1273242-004822/api/", + "OrganizationName": "Susan Danehy, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1455114-140237/api/", + "OrganizationName": "Utica Mental Health Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376372-140406/api/", + "OrganizationName": "Connections Counseling M Adams,LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374458-024104/api/", + "OrganizationName": "Jennifer Edmondson, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1387341-184540/api/", + "OrganizationName": "SLS Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375495-180228/api/", + "OrganizationName": "Harris Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/partenio/api/", + "OrganizationName": "Ingrid Partenio PhD \u0026 Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dwa/api/", + "OrganizationName": "David W. Artzer, LSCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378991-215450/api/", + "OrganizationName": "Bare of Hope Consulting \u0026 Counsel", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374463-070112/api/", + "OrganizationName": "Michelle Whitley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/templeu/api/", + "OrganizationName": "Temple University Episcopal Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brenden/api/", + "OrganizationName": "Dana M. Brenden", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380229-124756/api/", + "OrganizationName": "Fulcrum Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspirecc/api/", + "OrganizationName": "Aspire Counseling and Coaching, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084801-150503/api/", + "OrganizationName": "Testing this setup", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1052132-153756/api/", + "OrganizationName": "Jacqueline DelVecchio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373651-024136/api/", + "OrganizationName": "Jydesfamilyclinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1199691-104242/api/", + "OrganizationName": "Independent Behavioral Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/soules/api/", + "OrganizationName": "Melinda Soules, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/adptcdemo/api/", + "OrganizationName": "ADPTC Demo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1092834-184309/api/", + "OrganizationName": "Springfield Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bbs/api/", + "OrganizationName": "Barbara B. Shostak, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/phillips/api/", + "OrganizationName": "Integrative Trauma Treatment Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/peaceway/api/", + "OrganizationName": "Peaceway Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1529148-172425/api/", + "OrganizationName": "Patience D. Stevenson, D.Min., LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rsmith/api/", + "OrganizationName": "Rachel Smith", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fac/api/", + "OrganizationName": "Fifth Avenue Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heeren/api/", + "OrganizationName": "Heeren Family Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brunner/api/", + "OrganizationName": "Joel Brunner, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spilman/api/", + "OrganizationName": "Spilman \u0026 Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374449-000725/api/", + "OrganizationName": "Stephens Behavior Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/huscher/api/", + "OrganizationName": "Carla Huscher Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374381-175056/api/", + "OrganizationName": "Ayla Counseling and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374093-015225/api/", + "OrganizationName": "Roseann Hannon, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1516912-084608/api/", + "OrganizationName": "Mayo Healthness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1514036-160913/api/", + "OrganizationName": "DEMO FOR ME", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376896-144854/api/", + "OrganizationName": "Behaviour Support", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374663-190055/api/", + "OrganizationName": "Brazos Covenant Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083714-102656/api/", + "OrganizationName": "Test Practice Blah", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1429931-103843/api/", + "OrganizationName": "Zen Educational Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nm/api/", + "OrganizationName": "Nisreen Mandilawi, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/arcadiantelepsychiatry/api/", + "OrganizationName": "Arcadian Telepsychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1121322-150934/api/", + "OrganizationName": "PEGGY RENNER PHD INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374823-131257/api/", + "OrganizationName": "Kayte Conroy, PhD, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1267093-214316/api/", + "OrganizationName": "Hindy Levine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385793-185027/api/", + "OrganizationName": "Willamette Valley E and E", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1464011-145901/api/", + "OrganizationName": "Behavior Talk LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clarksbt/api/", + "OrganizationName": "Courtney Clark, LCMFT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pahc/api/", + "OrganizationName": "Patterson Army Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dumas/api/", + "OrganizationName": "Susan F. Dumas LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1271607-120118/api/", + "OrganizationName": "Amy Kammerer, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1507931-133057/api/", + "OrganizationName": "Lara Lohman Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375722-142657/api/", + "OrganizationName": "Liz Villanueva, MS, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/merriam/api/", + "OrganizationName": "Jim Merriam, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tjh/api/", + "OrganizationName": "Terri J. Haven, MSW, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374147-105601/api/", + "OrganizationName": "Clinical Neuropsychology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1002502/api/", + "OrganizationName": "Alice M. Jannini Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/appledoorn/api/", + "OrganizationName": "Marit Appledoorn, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/abf/api/", + "OrganizationName": "Ann Beckley-Forest, LCSW-R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/conner/api/", + "OrganizationName": "Vicki Conner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/synapse/api/", + "OrganizationName": "Synapse Counseling LLC Integrative Wellness, Peak Performance \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1200261-142014/api/", + "OrganizationName": "BG Christian Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/crj/api/", + "OrganizationName": "Cathy Rosewell Jonas, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375854-081103/api/", + "OrganizationName": "Theresa Rembert, LPCC-S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1512549-151010/api/", + "OrganizationName": "Matthew Hart", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1498510-231725/api/", + "OrganizationName": "C \u0026 K Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nwbhc/api/", + "OrganizationName": "NW Behavioral Health Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/997074/api/", + "OrganizationName": "Meghann Darne, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jgc/api/", + "OrganizationName": "Jean Gargala Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kain/api/", + "OrganizationName": "Craig Kain, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/meridiem/api/", + "OrganizationName": "Meridiem Psychological Services Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cornerstoneaz/api/", + "OrganizationName": "Cornerstone Counseling Services of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neurocentre/api/", + "OrganizationName": "The NeuroAssessment Centre", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/forms/api/", + "OrganizationName": "Forms", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dayspring/api/", + "OrganizationName": "Dayspring Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378279-195418/api/", + "OrganizationName": "A R C Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eastside/api/", + "OrganizationName": "East Side Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374892-004739/api/", + "OrganizationName": "Ross Cohen, MA, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374486-105545/api/", + "OrganizationName": "People House", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lynnstone/api/", + "OrganizationName": "Lynn Stone, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1079791-154856/api/", + "OrganizationName": "Great Day, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1294798-020805/api/", + "OrganizationName": "Serendib Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1393895-134550/api/", + "OrganizationName": "Ritu Anand, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374812-102234/api/", + "OrganizationName": "Center for Family Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1012188-150441/api/", + "OrganizationName": "Mary Jo Sanders RN, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1079278-121123/api/", + "OrganizationName": "Kids Counseling Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376425-110507/api/", + "OrganizationName": "Compass Counseling Center, Pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rmi/api/", + "OrganizationName": "Robert McIlwain, LMFT, LHMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/indy/api/", + "OrganizationName": "Indy Counseling and Psychotherapy Services, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1197514-140139/api/", + "OrganizationName": "Anne Geissinger, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yurk/api/", + "OrganizationName": "Yurk Counseling Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brpc/api/", + "OrganizationName": "Burstein Rose PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1522602-131535/api/", + "OrganizationName": "BG TESTsss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084082-094443/api/", + "OrganizationName": "Nora B. Krause, L.C.S.W., L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1117113-200030/api/", + "OrganizationName": "Christie Hawkes, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378095-122815/api/", + "OrganizationName": "Achieve Balance Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375408-143904/api/", + "OrganizationName": "HeartWell Integrative Resources LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/testclinic/api/", + "OrganizationName": "Testclinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1124458-135642/api/", + "OrganizationName": "Dr. Manjit Khalsa", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/awc/api/", + "OrganizationName": "Aspen Wind Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083726-104746/api/", + "OrganizationName": "afasdfadf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1392068-124305/api/", + "OrganizationName": "Root Down Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1518801-104443/api/", + "OrganizationName": "Apa promo tracker", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1514806-094445/api/", + "OrganizationName": "Testy Testy1", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/csh/api/", + "OrganizationName": "Candice Sapiro Hicks, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/maxwell/api/", + "OrganizationName": "Stefanie Maxwell, PsyD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1396530-162439/api/", + "OrganizationName": "Prism Counseling and Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1530634-111736/api/", + "OrganizationName": "BG TESTgg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/swell/api/", + "OrganizationName": "Risa Swell, LCSW, CEAP, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sgw/api/", + "OrganizationName": "Sheri G White, Psy.D.,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1505140-221006/api/", + "OrganizationName": "John Townsend LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bhp/api/", + "OrganizationName": "Behavioral Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083248-110523/api/", + "OrganizationName": "New Org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376768-222927/api/", + "OrganizationName": "JENNIFER LEONARD, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hedlund/api/", + "OrganizationName": "Mindy Hedlund, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dawn/api/", + "OrganizationName": "Dawn of a New Day Pastoral Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1533497-201651/api/", + "OrganizationName": "NY Covid Control", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1481795-054845/api/", + "OrganizationName": "Faith And Fly Psychiatric Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scp/api/", + "OrganizationName": "Swansea Center for Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/belt/api/", + "OrganizationName": "Jennifer Belt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380653-135940/api/", + "OrganizationName": "Roderick anscombe MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wvcllc/api/", + "OrganizationName": "Willamette Valley Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cbpsyd/api/", + "OrganizationName": "Caryn Banque, PsyD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373981-164910/api/", + "OrganizationName": "holly springs counseling center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/acp/api/", + "OrganizationName": "Associates in Counseling and Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1019335-154505/api/", + "OrganizationName": "Jupiter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/northampton/api/", + "OrganizationName": "Northampton Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/994203/api/", + "OrganizationName": "talk talk talk", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374936-103510/api/", + "OrganizationName": "TexasTest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377175-152405/api/", + "OrganizationName": "Samaritan Counseling Center SWGA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/harmonium/api/", + "OrganizationName": "Harmonium, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/katherine/api/", + "OrganizationName": "Katherine Bentley-Knowles, APN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376945-164117/api/", + "OrganizationName": "DAVID L JOHNS PSYCHOTHERAPY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ksu/api/", + "OrganizationName": "Kansas State University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379517-181939/api/", + "OrganizationName": "Jose Alaniz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374045-191644/api/", + "OrganizationName": "DOH: Behavioral Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wpa/api/", + "OrganizationName": "Suzanne Stubblefield, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1438052-221702/api/", + "OrganizationName": "Duvall Counseling \u0026 Counsulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374090-004200/api/", + "OrganizationName": "Randa Gahin, LMFT, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374374-174910/api/", + "OrganizationName": "Bariatric Counseling Solutions,LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374795-230813/api/", + "OrganizationName": "Gordon MacLean, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1441734-021523/api/", + "OrganizationName": "teeessstttteeeeessss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1099888-114444/api/", + "OrganizationName": "Harmonium Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/teras/api/", + "OrganizationName": "Teras Intervention and Counseling Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/env/api/", + "OrganizationName": "Envision Counseling Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404059-093425/api/", + "OrganizationName": "Test welcome email", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hill/api/", + "OrganizationName": "Hillcrest Clinic, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1455145-072910/api/", + "OrganizationName": "UC Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nbbh/api/", + "OrganizationName": "Psychology Associates, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gb/api/", + "OrganizationName": "Glenn Burdick", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/labray/api/", + "OrganizationName": "Ann LaBray, PsyD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/garner/api/", + "OrganizationName": "Pam Garner, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378284-205638/api/", + "OrganizationName": "ARC Claremont", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jucft/api/", + "OrganizationName": "Jefferson Univ Couples \u0026 Family Therapy Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380287-192041/api/", + "OrganizationName": "New Beginnings Today LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sccswg/api/", + "OrganizationName": "The Samaritan Counseling Ctr of SW GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bmha/api/", + "OrganizationName": "Behavioral Medicine \u0026 Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378743-174238/api/", + "OrganizationName": "LSC Therapy Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wmha/api/", + "OrganizationName": "Women's Mental Health Associates \u0026 Health Psychology Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373833-134842/api/", + "OrganizationName": "Arah Gould, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1414725-024447/api/", + "OrganizationName": "em wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gsu/api/", + "OrganizationName": "Georgia State University Psychology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375920-120848/api/", + "OrganizationName": "Legacy Associates Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kuok/api/", + "OrganizationName": "Lake Whitney Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1387885-070826/api/", + "OrganizationName": "Pamela K Smith, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1523013-204833/api/", + "OrganizationName": "Kali Martin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375516-194810/api/", + "OrganizationName": "LTB Institute for Empowerment", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1509317-151256/api/", + "OrganizationName": "Positive Direction Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374509-113103/api/", + "OrganizationName": "Karim Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374445-233141/api/", + "OrganizationName": "Mary O'Brien, MA, LPC, NCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374739-121750/api/", + "OrganizationName": "CanDo Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1410747-143306/api/", + "OrganizationName": "Woolwich Central School", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377302-103602/api/", + "OrganizationName": "District Heights YSB", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374681-211437/api/", + "OrganizationName": "Test Teletherapy Suite inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377310-105658/api/", + "OrganizationName": "Forward Psychology Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rhd/api/", + "OrganizationName": "Resources For Human Development", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jcm/api/", + "OrganizationName": "Joyce C. Morene, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/focusc3/api/", + "OrganizationName": "Focus C3, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1287028-153701/api/", + "OrganizationName": "Kathy Hardie-Williams LPC LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1530623-105514/api/", + "OrganizationName": "dsdsds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374079-214025/api/", + "OrganizationName": "Dr.WinnieHuynhPsychotherapyServices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1405629-001406/api/", + "OrganizationName": "Heart Path Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pmoore/api/", + "OrganizationName": "Pamela Moore PMHNP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374753-134948/api/", + "OrganizationName": "Donna Williams, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/foos/api/", + "OrganizationName": "James A.Foos, Psy.D. \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377222-170200/api/", + "OrganizationName": "Healing \u0026 Wholeness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nuessle/api/", + "OrganizationName": "Doreen Nuessle, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stobin/api/", + "OrganizationName": "Stephen Tobin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374276-151057/api/", + "OrganizationName": "Psychotherapy \u0026 Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/metta/api/", + "OrganizationName": "Metta LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/flynn/api/", + "OrganizationName": "Flynn and Owen Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heyoka/api/", + "OrganizationName": "Heyoka Counseling Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demo/api/", + "OrganizationName": "Carepaths Demo", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fwa/api/", + "OrganizationName": "Family Works Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kd/api/", + "OrganizationName": "The Center for Change, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/evano/api/", + "OrganizationName": "Evelyn Evano, LPC, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/farmer/api/", + "OrganizationName": "Tracy Bryce Farmer, LCSW, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375869-094219/api/", + "OrganizationName": "123 Practice Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375859-085908/api/", + "OrganizationName": "RBHS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375082-152021/api/", + "OrganizationName": "Integrative Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kmphd/api/", + "OrganizationName": "Belmont Psychological Services, A Psychology Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nelsons/api/", + "OrganizationName": "Sarah E. Nelson, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gl/api/", + "OrganizationName": "Ginny Liwanpo, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/norling/api/", + "OrganizationName": "Northwest DBT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1445053-002529/api/", + "OrganizationName": "James Heck,PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379364-113539/api/", + "OrganizationName": "Kelly Valente", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375523-195916/api/", + "OrganizationName": "Catherine Cooney, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fine/api/", + "OrganizationName": "Fine-Thomas Psychotherapy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tlmd/api/", + "OrganizationName": "Todd Levine, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375914-120430/api/", + "OrganizationName": "CRITUSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1351435-133505/api/", + "OrganizationName": "Hannah Charren-Diehl, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mhyr/api/", + "OrganizationName": "Mountain Homes Youth Ranch", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373086-150329/api/", + "OrganizationName": "Jennifer Malone, MFT #42564", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/psd/api/", + "OrganizationName": "Life in Focus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379469-155104/api/", + "OrganizationName": "JENNIFER LEONARD LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amy/api/", + "OrganizationName": "Amy Jenks, Psy.D., Licensed Clinical Psychologist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/midvalley/api/", + "OrganizationName": "mid valley counseling center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kolli/api/", + "OrganizationName": "Sireesha Kolli, MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mvmd/api/", + "OrganizationName": "Mytilee Vemuri, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cch/api/", + "OrganizationName": "Center for Creativity \u0026 Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1398308-231810/api/", + "OrganizationName": "All is Bright ABA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/puna/api/", + "OrganizationName": "Puna Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/krish/api/", + "OrganizationName": "Kristina Hallett, PhD, ABPP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pelham/api/", + "OrganizationName": "Claire Pelham, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jak/api/", + "OrganizationName": "Jennifer A. Kodrik, PsyD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brp/api/", + "OrganizationName": "Blue Ridge Parenting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/phcs/api/", + "OrganizationName": "Psychological Health Center of Suffield", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ask/api/", + "OrganizationName": "ASKMEHFIRST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1460084-133026/api/", + "OrganizationName": "Joelle Stoltzfus", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374184-121622/api/", + "OrganizationName": "SuperPsych Learn. Assess. and Treat", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/paypal/api/", + "OrganizationName": "PayPal Payments", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/liz/api/", + "OrganizationName": "Elizabeth Corsale, MFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378741-174011/api/", + "OrganizationName": "Strong Minds Addiction \u0026 Recovery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pad/api/", + "OrganizationName": "Positive Adjustments", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jlh/api/", + "OrganizationName": "Jennifer L. Cline LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holistic/api/", + "OrganizationName": "North Carolina Hoslitic Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stetson/api/", + "OrganizationName": "David Stetson LCSW, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375732-144527/api/", + "OrganizationName": "Donna C Henderson LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1083354-130222/api/", + "OrganizationName": "This is a test Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1189117-104440/api/", + "OrganizationName": "Test2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mi/api/", + "OrganizationName": "Motivational Institute for Behavioral Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375503-184912/api/", + "OrganizationName": "SentWell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373389-130245/api/", + "OrganizationName": "US VETS Las Vegas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1053852-215118/api/", + "OrganizationName": "Affinity Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431163-180658/api/", + "OrganizationName": "BD Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pilipchuk/api/", + "OrganizationName": "Johnna Pilipchuk, MA, LPA, GC-C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/demoupload/api/", + "OrganizationName": "Demo: Upload", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lifebalance/api/", + "OrganizationName": "Life Balance Ind., Couple, \u0026 Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ftcamp/api/", + "OrganizationName": "Ft. Campbell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1269068-131737/api/", + "OrganizationName": "Coastal Counseling and Art Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375104-160646/api/", + "OrganizationName": "C. David Blair, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/noble/api/", + "OrganizationName": "Janice Noble LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/palmer/api/", + "OrganizationName": "Elizabeth Palmer, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nbmh/api/", + "OrganizationName": "New Beginnings Mental Health PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aaaaatest123/api/", + "OrganizationName": "aaaatest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1414876-130418/api/", + "OrganizationName": "Gaia-speech", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374909-092526/api/", + "OrganizationName": "Frances Purcell-Abbott, LPC, NCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/srussell/api/", + "OrganizationName": "Stephanie S. Russell, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378293-212905/api/", + "OrganizationName": "ARC Counseling and Wellness Ir", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377464-181812/api/", + "OrganizationName": "Jen A./Collaborative Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1416116-050346/api/", + "OrganizationName": "Next Gen Counseling \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375528-201933/api/", + "OrganizationName": "Jen Ransil, Licensed MFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374126-102553/api/", + "OrganizationName": "HPFS Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kpmd/api/", + "OrganizationName": "Kurt Peters, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pathwayswny/api/", + "OrganizationName": "Pathways of WNY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rivard/api/", + "OrganizationName": "Kerry Rivard, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kama/api/", + "OrganizationName": "Kama Hiner Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431690-141959/api/", + "OrganizationName": "ABA spot", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1123915-203404/api/", + "OrganizationName": "Carolinas Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1199187-124344/api/", + "OrganizationName": "Selah Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/autumn/api/", + "OrganizationName": "Autumn Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/estape/api/", + "OrganizationName": "Jen Estape, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378793-090924/api/", + "OrganizationName": "Desert/Mountain Children's Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1418350-142119/api/", + "OrganizationName": "Liz Faria, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heins/api/", + "OrganizationName": "Linda Heins LCSW LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1494954-203407/api/", + "OrganizationName": "Elevate Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sarche/api/", + "OrganizationName": "Steve Sarche, DO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1323489-114650/api/", + "OrganizationName": "Yoches Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rlively/api/", + "OrganizationName": "Swansea Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/via/api/", + "OrganizationName": "Via Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wisdom/api/", + "OrganizationName": "Wisdom Within Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/doctorlisa/api/", + "OrganizationName": "Lisa Neuenschwander, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spero/api/", + "OrganizationName": "Spero Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374216-133349/api/", + "OrganizationName": "Sara Ryerson, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/watters/api/", + "OrganizationName": "Emily Watters, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1353897-090838/api/", + "OrganizationName": "Cheryl L. Georges LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1179020-220239/api/", + "OrganizationName": "Mended with Gold Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404064-094123/api/", + "OrganizationName": "Testing Tele suite 333", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cretton/api/", + "OrganizationName": "Leiana Reyes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/smockville/api/", + "OrganizationName": "Smockville Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beechwood/api/", + "OrganizationName": "BeechWood, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1187521-171858/api/", + "OrganizationName": "Erin A Russell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375310-120001/api/", + "OrganizationName": "Amy Price Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374865-184740/api/", + "OrganizationName": "J. Hal Rogers, Ph.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lehman/api/", + "OrganizationName": "Andrea Lehman, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374554-131553/api/", + "OrganizationName": "Karen A Repasky, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1453333-214442/api/", + "OrganizationName": "Deborah Howell Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beedy/api/", + "OrganizationName": "Amanda M. Beedy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/adf/api/", + "OrganizationName": "Adam D. Friedman, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rbg/api/", + "OrganizationName": "Robert B. Goos", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373792-131004/api/", + "OrganizationName": "Evalyn Lawnsby, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/buchanan/api/", + "OrganizationName": "Danette Buchanan Pastoral Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bjorkquist/api/", + "OrganizationName": "Patricia M. Bjorkquist, Ph.D. Psychologist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/helena/api/", + "OrganizationName": "Helena Family Support, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375624-112630/api/", + "OrganizationName": "Artemis Light Counselling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clarity/api/", + "OrganizationName": "Clarity Counseling and Hypnotherapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1409782-130654/api/", + "OrganizationName": "IPPD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lmh/api/", + "OrganizationName": "Liberty Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1438007-200133/api/", + "OrganizationName": "Seaside serenity counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374368-173342/api/", + "OrganizationName": "Clarity Counseling Solutions, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380807-110851/api/", + "OrganizationName": "Tester Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377071-105439/api/", + "OrganizationName": "KDallas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hjwc/api/", + "OrganizationName": "Heart's Journey Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leafcrest/api/", + "OrganizationName": "Leafcrest Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1562690-164052/api/", + "OrganizationName": "google analytics test 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/placeofgrace/api/", + "OrganizationName": "A Place of Grace Counseling \u0026 Consulting", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hs/api/", + "OrganizationName": "Hillary Straus, MA, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/miamiteen/api/", + "OrganizationName": "Miami Teen Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pettus/api/", + "OrganizationName": "Introspections LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/osborn/api/", + "OrganizationName": "Allison Osborn, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amstone/api/", + "OrganizationName": "Ava M. Stone, Ph.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ivey/api/", + "OrganizationName": "Donna Purvis Ivey, Ph.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1095585-164748/api/", + "OrganizationName": "Testpractice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379590-110529/api/", + "OrganizationName": "Claire Babbitt, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aquino/api/", + "OrganizationName": "Stephen Aquino, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/oic/api/", + "OrganizationName": "OIC Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374167-112921/api/", + "OrganizationName": "Jennifer Lusk Puerner, LPC, CAC III", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1489096-124338/api/", + "OrganizationName": "Rachel Vaughn, PsyD. PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1562700-165946/api/", + "OrganizationName": "213", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/csp/api/", + "OrganizationName": "Counseling Services of NE Portland, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1562685-163118/api/", + "OrganizationName": "analytics test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1004532/api/", + "OrganizationName": "Nicole Bereolos, PhD, MPH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1380766-210149/api/", + "OrganizationName": "Lala Balajadia-Alcala", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1099399-104425/api/", + "OrganizationName": "Mark Steiner, LSCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gfn/api/", + "OrganizationName": "GFN Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374452-002000/api/", + "OrganizationName": "Katie Schroeder, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1342888-150136/api/", + "OrganizationName": "Hutson Psychotherapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/starkes/api/", + "OrganizationName": "Mary Ann Starkes, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/css/api/", + "OrganizationName": "Complementary Support Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/asea/api/", + "OrganizationName": "Antioch Community Counseling \u0026 Psychology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/genesis/api/", + "OrganizationName": "Genesis Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/awakening/api/", + "OrganizationName": "Awakening Your Spark, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/descutner/api/", + "OrganizationName": "Carol Descutner, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377698-130034/api/", + "OrganizationName": "Marjorie HOelker", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aweiss/api/", + "OrganizationName": "Alex Weiss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neeley/api/", + "OrganizationName": "Dulcy Neeley, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bergeron/api/", + "OrganizationName": "Rosimery Bergeron", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/day/api/", + "OrganizationName": "New Day Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wayne/api/", + "OrganizationName": "WSUPG Dept. of Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clemmer/api/", + "OrganizationName": "Catherine B. Clemmer, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aboyoun/api/", + "OrganizationName": "Darren Aboyoun, PhD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cetlin/api/", + "OrganizationName": "Susan P. Cetlin, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1221309-131717/api/", + "OrganizationName": "Dahlia Berkovitz, PhD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373924-153102/api/", + "OrganizationName": "Anderson Music Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leeberg/api/", + "OrganizationName": "Elizabeth Ann Leeberg, Ph.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pbear/api/", + "OrganizationName": "Pearl Street Offices", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1021869-153904/api/", + "OrganizationName": "testbeth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1399542-175803/api/", + "OrganizationName": "Nina Zurawski LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/safe/api/", + "OrganizationName": "Safe Harbor Christian Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378814-110056/api/", + "OrganizationName": "DAVID L. JOHNS LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dlp/api/", + "OrganizationName": "Deborah L. Pollack, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/utvet/api/", + "OrganizationName": "UT Vet Social Work", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1457162-061853/api/", + "OrganizationName": "Utica Mental Health Counseling PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ipsc/api/", + "OrganizationName": "Integrated Psychological Services Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bontatibus/api/", + "OrganizationName": "Dana A. Bontatibus, LMFT, LCPC, CSP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/anothertest/api/", + "OrganizationName": "anothertest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376308-171118/api/", + "OrganizationName": "Patricia A. Jones, LCSW, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jp/api/", + "OrganizationName": "Jackie Paris Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/xavier/api/", + "OrganizationName": "Xavier Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/longdon/api/", + "OrganizationName": "Marlene Longdon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tlc/api/", + "OrganizationName": "True Light Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sjc/api/", + "OrganizationName": "Sarah Jane Chaplin, MS, LCMHC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/heitman/api/", + "OrganizationName": "Annelise Heitman, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/undividual/api/", + "OrganizationName": "Undividual Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1509296-144025/api/", + "OrganizationName": "BG TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/test/api/", + "OrganizationName": "Test Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kml/api/", + "OrganizationName": "Katherine M Leonard PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rcs/api/", + "OrganizationName": "Redeemer Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374132-104141/api/", + "OrganizationName": "Prague Psychoanalytic Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1393928-152149/api/", + "OrganizationName": "Lauren D. Alloy, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spm/api/", + "OrganizationName": "Sara Pattavina Moulton LIMHP, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/complete/api/", + "OrganizationName": "Complete Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amc/api/", + "OrganizationName": "Ann Martin Counseling Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1510828-124134/api/", + "OrganizationName": "HelpingHands4Life", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sawyer/api/", + "OrganizationName": "Sawyer Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/2103649200/api/", + "OrganizationName": "Test Test 1202", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dilazzero/api/", + "OrganizationName": "Deborah DiLazzero, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1437448-123034/api/", + "OrganizationName": "J. Scott Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377480-212615/api/", + "OrganizationName": "New Beginnings Today", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gmcs/api/", + "OrganizationName": "Greater MN Community Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mcferran/api/", + "OrganizationName": "Don McFerran PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/legacy/api/", + "OrganizationName": "LEGACY Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pathwayscs/api/", + "OrganizationName": "Pathways Counseling Solutions, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spectra/api/", + "OrganizationName": "Spectra LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1610692-055225/api/", + "OrganizationName": "Valley Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fbc/api/", + "OrganizationName": "Five Bodies Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lwhite/api/", + "OrganizationName": "L White Consulting, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shesto/api/", + "OrganizationName": "Ari Shesto, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/elite/api/", + "OrganizationName": "Elite Counseling Services, LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ajc/api/", + "OrganizationName": "Amy J. Colley Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/murphy/api/", + "OrganizationName": "Alvin Murphy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/blackchristy/api/", + "OrganizationName": "Family Art Therapy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374411-192408/api/", + "OrganizationName": "Katrina Zeljak LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375232-213211/api/", + "OrganizationName": "Sapphire Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/meridian/api/", + "OrganizationName": "Meridian Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1260381-143850/api/", + "OrganizationName": "Peter L Brantner LMHC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385480-163929/api/", + "OrganizationName": "Artemisi Dono", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1553909-104346/api/", + "OrganizationName": "ONC Testing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dotson/api/", + "OrganizationName": "Julie Dotson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sagepsych/api/", + "OrganizationName": "SagePsych", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374310-155452/api/", + "OrganizationName": "BobDick, PhD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pitchford/api/", + "OrganizationName": "Leslie Pitchford PhD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1162200-182738/api/", + "OrganizationName": "CT Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lp/api/", + "OrganizationName": "Living Playfully", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/iliketacos/api/", + "OrganizationName": "I Love Tacos", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jklcswr/api/", + "OrganizationName": "Jacalyn Kelly, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dreyer/api/", + "OrganizationName": "Maggie Dreyer, MSW, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sheriff/api/", + "OrganizationName": "Jemsa Sheriff", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wohl/api/", + "OrganizationName": "Jennifer Wohl Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yost/api/", + "OrganizationName": "Susan Yost", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374704-022225/api/", + "OrganizationName": "ARC Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374757-140236/api/", + "OrganizationName": "Ellen K. Slicker, PhD, Psychologist", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404068-094506/api/", + "OrganizationName": "Testing Tele suite 69asdf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374800-233824/api/", + "OrganizationName": "JacquelynGerst", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373761-124726/api/", + "OrganizationName": "Deb Christiansen Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374884-224949/api/", + "OrganizationName": "Dr. Stella Verna, Ph. D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374917-094956/api/", + "OrganizationName": "TestBRG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404053-091729/api/", + "OrganizationName": "aadfd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1415429-185131/api/", + "OrganizationName": "Jodie Rapping", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374812-120239/api/", + "OrganizationName": "Patty Cowan, M.A., LMLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374355-170505/api/", + "OrganizationName": "Southwest Behavioral", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1379425-142712/api/", + "OrganizationName": "OBHAW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375198-194646/api/", + "OrganizationName": "Trinity Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1419946-224041/api/", + "OrganizationName": "Buell R. Barton Jr.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eugenetherapy/api/", + "OrganizationName": "Eugene Therapy/Oregon Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/marchut/api/", + "OrganizationName": "Martha Marchut", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375127-165512/api/", + "OrganizationName": "Heidi Saltzman PhD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/arnesani/api/", + "OrganizationName": "Nancy L.Arnesani, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375000-124612/api/", + "OrganizationName": "Michelle M. Kim, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/agcap/api/", + "OrganizationName": "AG Child \u0026 Adult Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/huwe/api/", + "OrganizationName": "Dr. Jennifer M. Huwe, Psy.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gregory/api/", + "OrganizationName": "Kristyn Gregory, D.O., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/chicagomind/api/", + "OrganizationName": "Chicago Mind Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1409500-150743/api/", + "OrganizationName": "TPACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375461-161328/api/", + "OrganizationName": "Kendra Hughes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374973-120426/api/", + "OrganizationName": "Cachara and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375573-135846/api/", + "OrganizationName": "NEK Counseling \u0026 Consultation, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1532731-191839/api/", + "OrganizationName": "Cartersville Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1159426-203903/api/", + "OrganizationName": "Restorative Brain Clinic, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/molli/api/", + "OrganizationName": "Stacy M Molli LPCC, Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1406335-035418/api/", + "OrganizationName": "DM Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/yva/api/", + "OrganizationName": "Your Vision Achieved", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/matson/api/", + "OrganizationName": "Matson Counseling Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1063920-115159/api/", + "OrganizationName": "Healing Steps Behavioral Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1150635-105112/api/", + "OrganizationName": "Gordon Weiss MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/familyoptions/api/", + "OrganizationName": "Family Options", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/merc/api/", + "OrganizationName": "Meridian Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trcc/api/", + "OrganizationName": "Tressa Ryan Counseling \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mkj/api/", + "OrganizationName": "Mary K. Johnson, L.M.H.P., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374055-194041/api/", + "OrganizationName": "Antoinette V Steinbarth LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/barram/api/", + "OrganizationName": "R. Andrew Barram", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kmyers/api/", + "OrganizationName": "Kara Myers, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374408-191617/api/", + "OrganizationName": "Intrinsic Elements Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1395916-225836/api/", + "OrganizationName": "In-to-Mate Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/langman/api/", + "OrganizationName": "Madeleine Langman, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/overcash/api/", + "OrganizationName": "Overcash Therapy Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1002588/api/", + "OrganizationName": "Crossroads Counseling Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/whitley/api/", + "OrganizationName": "Michelle Whitley, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mands/api/", + "OrganizationName": "John Milnes, MSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1565109-091237/api/", + "OrganizationName": "Rebecca Kearney, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/plc/api/", + "OrganizationName": "Portland Lifestyle Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fbhpsych/api/", + "OrganizationName": "FBH Psychological Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1424421-122313/api/", + "OrganizationName": "Marissa Maki, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1072691-100707/api/", + "OrganizationName": "Nirmal Conforti, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374110-091332/api/", + "OrganizationName": "Michael Brady Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cburke/api/", + "OrganizationName": "Catherine Burke Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eaves/api/", + "OrganizationName": "Wendy Eaves, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mblake/api/", + "OrganizationName": "Martha Blake, MBA, NCPsyA Psychologist #1824", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374166-113115/api/", + "OrganizationName": "Chambers and Blohm Psychological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378560-082827/api/", + "OrganizationName": "Laura Moyer Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/daub/api/", + "OrganizationName": "Suzanne Daub LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/carolwooten/api/", + "OrganizationName": "Carol G. Fountain Wooten, M.A., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/worcester/api/", + "OrganizationName": "Worcester Academy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374689-225143/api/", + "OrganizationName": "Serenity Behavioral Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373903-150146/api/", + "OrganizationName": "Triangle Child Psychology, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377711-152126/api/", + "OrganizationName": "ROBIN G.BERGLUND, MD, MBA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1417461-124200/api/", + "OrganizationName": "Caaron Willinger LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/giltner/api/", + "OrganizationName": "Kim D. Giltner, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/crum/api/", + "OrganizationName": "Central Florida Neuropsychology LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccenter/api/", + "OrganizationName": "Counseling and Consulting Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gpc/api/", + "OrganizationName": "Grunblatt Psychology and Counseling Offices, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378222-164954/api/", + "OrganizationName": "ARC Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1373954-160534/api/", + "OrganizationName": "Peachtree Clinical Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ajp/api/", + "OrganizationName": "Peace Tree CC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/strength/api/", + "OrganizationName": "Strength in Healing Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374613-153500/api/", + "OrganizationName": "Relationship Gardening", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lively/api/", + "OrganizationName": "Rachel Lively", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1432727-193458/api/", + "OrganizationName": "Be Well Michigan Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gilkey/api/", + "OrganizationName": "Andrea Gilkey LCSW Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/amhareferral/api/", + "OrganizationName": "AMHA Referral", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aacap/api/", + "OrganizationName": "aacap", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376142-090147/api/", + "OrganizationName": "Wear \u0026 Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377108-124126/api/", + "OrganizationName": "Entreprise Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1012627-125637/api/", + "OrganizationName": "Anam Cara Therapies, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377026-024610/api/", + "OrganizationName": "ARC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sdsu/api/", + "OrganizationName": "SDSU Psychology Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1433896-230220/api/", + "OrganizationName": "Outcomes Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375848-232022/api/", + "OrganizationName": "Erie Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nhlcsw/api/", + "OrganizationName": "Nancy Hoffman, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/saussy/api/", + "OrganizationName": "AnnMarie Saussy LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377637-155837/api/", + "OrganizationName": "Brian Englander LCSW P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1372708-194629/api/", + "OrganizationName": "drsameffarahinc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/skillings/api/", + "OrganizationName": "Cherie Skillings", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431292-114911/api/", + "OrganizationName": "Paige Y. Leopold, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374854-174408/api/", + "OrganizationName": "4 Rivers", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1351442-133910/api/", + "OrganizationName": "Melissa Vogt, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fascc/api/", + "OrganizationName": "Fresh Aire Samaritan Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/days/api/", + "OrganizationName": "Dayspring Center for Christian Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084630-115042/api/", + "OrganizationName": "Some Org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neuroforce/api/", + "OrganizationName": "Neuro Force Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/decisions/api/", + "OrganizationName": "Decisions Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aumann/api/", + "OrganizationName": "Nichole Aumann Psy.D. L.C.P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1134202-080445/api/", + "OrganizationName": "Grace Counseling, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/samt/api/", + "OrganizationName": "Samaritan Counseling Center of East Texas, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/functional/api/", + "OrganizationName": "Functional Psychological Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beechwoodils/api/", + "OrganizationName": "BeechWood ILS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spmd/api/", + "OrganizationName": "Sashi Putchakayala, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1046871-142857/api/", + "OrganizationName": "The NeuroAssessment Centre, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/questcounseling/api/", + "OrganizationName": "Quest Community Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ggpc/api/", + "OrganizationName": "Gertler \u0026 Gertler P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1194332-100103/api/", + "OrganizationName": "Bull City Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1545880-141005/api/", + "OrganizationName": "Barrett Gruffith Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tsol/api/", + "OrganizationName": "Therapeutic Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lasallericci/api/", + "OrganizationName": "Ricci Psychology of the Palm Beaches", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hjohnson/api/", + "OrganizationName": "Heather Johnson, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/peace/api/", + "OrganizationName": "Peace and Power Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dhill/api/", + "OrganizationName": "Dawn M. Hill, MA, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1217084-165559/api/", + "OrganizationName": "D. Christine Frizzell, EDD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/baez/api/", + "OrganizationName": "Psychiatric Consultants, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/melton/api/", + "OrganizationName": "Claudia Melton, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sgt/api/", + "OrganizationName": "Sara Goodman LSCW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1443927-231208/api/", + "OrganizationName": "Helping hands126", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1494677-215759/api/", + "OrganizationName": "Nevada Mercy and Care Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/riverview/api/", + "OrganizationName": "River View Counseling, pllc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/waiau/api/", + "OrganizationName": "Cornelia Waiau", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1374906-091804/api/", + "OrganizationName": "DallasTest Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1432870-003602/api/", + "OrganizationName": "Embrace Mental Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/schneweis/api/", + "OrganizationName": "Amanda Schneweis, LCMFT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1540685-112512/api/", + "OrganizationName": "Test Practice 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375795-164832/api/", + "OrganizationName": "All American Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cheskis/api/", + "OrganizationName": "Cheskis Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1512616-165519/api/", + "OrganizationName": "Demo123", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/carr/api/", + "OrganizationName": "Carol L Carr, LPC, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1019467-185331/api/", + "OrganizationName": "Like You Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ams/api/", + "OrganizationName": "Angela M. Steliga, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mjg/api/", + "OrganizationName": "Meredith Joy Geck, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/keady/api/", + "OrganizationName": "Dan Keady Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1099933-131359/api/", + "OrganizationName": "Applied Care Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1322353-154846/api/", + "OrganizationName": "Flow Through Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fieldman/api/", + "OrganizationName": "Nancy Fieldman, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/emmett/api/", + "OrganizationName": "Anne Emmett Therapy Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1496720-182033/api/", + "OrganizationName": "Beautiful Minds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jb/api/", + "OrganizationName": "Julie Branaugh LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378905-155501/api/", + "OrganizationName": "Test Best Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/996352/api/", + "OrganizationName": "Los Feliz Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/psychwest/api/", + "OrganizationName": "Psychwest, Clinical \u0026 Forensic Psychology, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1540631-131901/api/", + "OrganizationName": "RWT Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/poc/api/", + "OrganizationName": "Power of Connection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1504528-102135/api/", + "OrganizationName": "2021_TEST", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375946-130227/api/", + "OrganizationName": "Sacred Earthbound Journey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1548088-105249/api/", + "OrganizationName": "Jost Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1501924-112559/api/", + "OrganizationName": "Destined by Design Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1431049-084550/api/", + "OrganizationName": "CONNECTIONS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/liferoots/api/", + "OrganizationName": "LifeRoots Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1546372-190801/api/", + "OrganizationName": "CUTA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377532-114425/api/", + "OrganizationName": "testorg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/troia/api/", + "OrganizationName": "Daniel B Troia, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378557-074703/api/", + "OrganizationName": "Laura Moyer counselin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1394770-210540/api/", + "OrganizationName": "GGPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccem/api/", + "OrganizationName": "Center for Cnsling. and Ed. of Medford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clarifien/api/", + "OrganizationName": "Clarifien Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375048-140650/api/", + "OrganizationName": "MICHAEL CARRICO PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/talley/api/", + "OrganizationName": "Dr. Stephen S. Talley", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1375565-073440/api/", + "OrganizationName": "Bright New Beginnings Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tccs/api/", + "OrganizationName": "Jean Ellen Jones, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dlugosz/api/", + "OrganizationName": "Katarzyna Dlugosz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1406408-110217/api/", + "OrganizationName": "Paris ISD Special Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377563-132801/api/", + "OrganizationName": "David Gilles-Thomas, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/flourish/api/", + "OrganizationName": "FlourishWorks", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/klrfamily/api/", + "OrganizationName": "KLR Family Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wrenn/api/", + "OrganizationName": "Karen Wrenn", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1188977-153231/api/", + "OrganizationName": "Erin E Gaudreault, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1542392-235635/api/", + "OrganizationName": "telehealth", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccpsych/api/", + "OrganizationName": "C \u0026 C Psychological Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/et/api/", + "OrganizationName": "Mary Ann Fahlstrom", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ryan/api/", + "OrganizationName": "Maija Ryan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lotuseldercc/api/", + "OrganizationName": "Lotus Elder Care \u0026 Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/esp/api/", + "OrganizationName": "Elizabeth Stuart Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/banderson/api/", + "OrganizationName": "Britt Anderson, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1548889-194059/api/", + "OrganizationName": "Michelle Provost, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1542392-235934/api/", + "OrganizationName": "telehealth2 tex3", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/epperson/api/", + "OrganizationName": "Sid Epperson, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rice/api/", + "OrganizationName": "Elisabeth Rice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1084743-134602/api/", + "OrganizationName": "raymond", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/groves/api/", + "OrganizationName": "The Groves Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/norris/api/", + "OrganizationName": "Kristy Norris", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wtw/api/", + "OrganizationName": "Wilder Therapy and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/uhc/api/", + "OrganizationName": "University Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/khm/api/", + "OrganizationName": "KHM Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glejzer/api/", + "OrganizationName": "Robert Glejzer, LCMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1452670-235616/api/", + "OrganizationName": "Briana Fox Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/onc/api/", + "OrganizationName": "ONC Test Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rbickel/api/", + "OrganizationName": "Transformations Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/surescripts/api/", + "OrganizationName": "Surescripts Test Site", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drwest/api/", + "OrganizationName": "Susan Maria Loreto West, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stewart/api/", + "OrganizationName": "Courtney Stewart, MA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/slu/api/", + "OrganizationName": "Saint Louis University", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/camden/api/", + "OrganizationName": "Chanda Camden, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nava/api/", + "OrganizationName": "Marisa Nava, Ph.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cole/api/", + "OrganizationName": "Carol Cole, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/itspsych/api/", + "OrganizationName": "Integrated Therapeutic Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/c/api/", + "OrganizationName": "Cenneidigh Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccsa/api/", + "OrganizationName": "Counseling Connections of San Antonio", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jlp/api/", + "OrganizationName": "Judith L Pulliam, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/berko/api/", + "OrganizationName": "Berko Psychological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drmaria/api/", + "OrganizationName": "Maria-Christina Stewart, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/zzz/api/", + "OrganizationName": "zzzzzzz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/albott/api/", + "OrganizationName": "Albott \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/houts/api/", + "OrganizationName": "Susan Houts, LISW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/creeflcsw/api/", + "OrganizationName": "Lisa B. Creef, LCSW, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ddr/api/", + "OrganizationName": "Dr. Dawn Reilly, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bandw/api/", + "OrganizationName": "Baer and Wilson, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pfmd/api/", + "OrganizationName": "Patricia Frischtak, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccce/api/", + "OrganizationName": "Cross Cultural Counseling \u0026 Evaluation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1039490-184321/api/", + "OrganizationName": "Mary Beth Petersen-Cleary, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1630678-183310/api/", + "OrganizationName": "sam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1558410-175815/api/", + "OrganizationName": "Christian Healthcare Concepts", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cuello/api/", + "OrganizationName": "Diana C. Cuello, Ph.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1055377-113636/api/", + "OrganizationName": "Test Practis", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1170547-121815/api/", + "OrganizationName": "To Indy, With Love, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wthompson/api/", + "OrganizationName": "Wendy L Thompson, PhD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leecounseling/api/", + "OrganizationName": "Renewed Hope Counseling Service", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1038313-172749/api/", + "OrganizationName": "Heather Scott, PhD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1247280-143346/api/", + "OrganizationName": "Christine Juliano, MSW, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1111582-081014/api/", + "OrganizationName": "Test111117", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1113176-140321/api/", + "OrganizationName": "Kasey B. Wojtek, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1085442-094326/api/", + "OrganizationName": "new prac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1168278-182831/api/", + "OrganizationName": "Palo Alto Cntr for Mind Body Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1040492-004827/api/", + "OrganizationName": "Carly J Knapp, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/moran/api/", + "OrganizationName": "Sharon Moran", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/portland/api/", + "OrganizationName": "Portland Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/probst/api/", + "OrganizationName": "Jane C. Probst Child and Family Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1553776-152816/api/", + "OrganizationName": "DianaChavez LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1542971-215719/api/", + "OrganizationName": "Paradise Behavioral health center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hayes/api/", + "OrganizationName": "Karla I. Hayes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tgj/api/", + "OrganizationName": "Teni Garrett-Johnson, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1079146-214722/api/", + "OrganizationName": "Mental Wellness Counseling Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1020511-203247/api/", + "OrganizationName": "Bashah Psychological Services, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hinton/api/", + "OrganizationName": "Deborah Hinton", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sdmd/api/", + "OrganizationName": "Sara DeLong MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cicb/api/", + "OrganizationName": "Cape \u0026 Islands Cognitive Behavioral Institute LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cramer/api/", + "OrganizationName": "Grow Heal Love", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kovarsky/api/", + "OrganizationName": "Marina Kovarsky, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kato/api/", + "OrganizationName": "Kyle Kato, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1226964-222833/api/", + "OrganizationName": "Serenity Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wooten/api/", + "OrganizationName": "Wooten \u0026 Associates,PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ifpsyd/api/", + "OrganizationName": "Irit Feldman, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kinsey/api/", + "OrganizationName": "Lee Kinsey Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632896-101101/api/", + "OrganizationName": "Akhrorbek Bakhramov", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/schaefer/api/", + "OrganizationName": "Frauke C. Schaefer, MD, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nca/api/", + "OrganizationName": "NW Counseling Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rmp/api/", + "OrganizationName": "Reaching Maximum Potential, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mnmd/api/", + "OrganizationName": "Mariana Niemtzoff", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1296060-230644/api/", + "OrganizationName": "Luann M Martin, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cnc/api/", + "OrganizationName": "CN Counseling, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1256341-172315/api/", + "OrganizationName": "Hope \u0026 Outreach Therapy Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1582889-154554/api/", + "OrganizationName": "Paula J Jameson, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pocono/api/", + "OrganizationName": "Pocono Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1571338-021004/api/", + "OrganizationName": "CarePaths CONNECT LIVE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1571343-031656/api/", + "OrganizationName": "CP Connect 2", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/blcs/api/", + "OrganizationName": "Balanced Life Counseling Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cornerstone/api/", + "OrganizationName": "Cornerstone Therapy and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goodwin/api/", + "OrganizationName": "Journey to Psychological Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rjaffe/api/", + "OrganizationName": "Ralph Jaffe, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goetz/api/", + "OrganizationName": "Corner Post Counseling, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vanlue/api/", + "OrganizationName": "Jean Thompson Vanlue, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cf/api/", + "OrganizationName": "Christopher Fisher, PhD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ulbright/api/", + "OrganizationName": "Susan Ulbright", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hagarty/api/", + "OrganizationName": "Bridgette Hagarty, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fpa/api/", + "OrganizationName": "Family Psychology Associates, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sheade/api/", + "OrganizationName": "Sheade Psychotherapy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/restore/api/", + "OrganizationName": "Restore Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jgt/api/", + "OrganizationName": "Julia Griffin Terner Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1209004-154954/api/", + "OrganizationName": "StarHaus Psychotherapy, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1532131-173250/api/", + "OrganizationName": "Healing Connections Therapy Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/polacek/api/", + "OrganizationName": "Denise Polacek, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/leslie/api/", + "OrganizationName": "Jean Leslie LPCC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hardy/api/", + "OrganizationName": "John Hardy, M.D., P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pcps/api/", + "OrganizationName": "Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/acwc/api/", + "OrganizationName": "Alliance Counseling Wellness Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holt/api/", + "OrganizationName": "Lori Holt, APN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1634473-134417/api/", + "OrganizationName": "JN\u0026S", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/galeflaherty/api/", + "OrganizationName": "Kimberly Gale-Flaherty, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/horton/api/", + "OrganizationName": "Deb Horton Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shortell/api/", + "OrganizationName": "Laurel L. Shortell, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sck/api/", + "OrganizationName": "Stephanie Cobb Kinney, LIMHP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/getz/api/", + "OrganizationName": "Counseling by Jonathan Getz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1175675-213159/api/", + "OrganizationName": "Diane V. Stevens, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nmhs/api/", + "OrganizationName": "Neubauer Mental Health Services, APC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/southcoast/api/", + "OrganizationName": "Southcoast Counseling Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rsloan/api/", + "OrganizationName": "Rebecca Robinett Sloan, LISW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccbh/api/", + "OrganizationName": "Cira Center for Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ips/api/", + "OrganizationName": "Integritas Psychological Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bernhoft/api/", + "OrganizationName": "Kat Bernhoft, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1470015-010322/api/", + "OrganizationName": "Base Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ksmith/api/", + "OrganizationName": "Kathleen H. Smith, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1389727-175618/api/", + "OrganizationName": "Sheehan Gendron, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1477057-141721/api/", + "OrganizationName": "Growth and Change Services Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/goodchoice/api/", + "OrganizationName": "GoodChoice Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/conway/api/", + "OrganizationName": "Dr. Kathryn M. Conway, L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/arcs/api/", + "OrganizationName": "Ashes Rising Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holbert/api/", + "OrganizationName": "Holbert Consulting and Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nhcs/api/", + "OrganizationName": "North Haven Community Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633189-143531/api/", + "OrganizationName": "Matthews Family Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631519-184117/api/", + "OrganizationName": "Patrick Quigley, PhD, LISAC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lkk/api/", + "OrganizationName": "Laura K Kincaid LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drmarcey/api/", + "OrganizationName": "Marcella Marcey, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dh/api/", + "OrganizationName": "District Heights Family \u0026 Youth Services Bureau", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/frederick/api/", + "OrganizationName": "Julie D Frederick PHD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/beaton/api/", + "OrganizationName": "Margaret (Peg) Beaton LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1238184-111908/api/", + "OrganizationName": "Integrated Psych", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/confluence/api/", + "OrganizationName": "Confluence Therapy \u0026 Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hcfc/api/", + "OrganizationName": "HOPE - Child and Family Counseling, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dperryllc/api/", + "OrganizationName": "Doug Perry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pcmh/api/", + "OrganizationName": "The Pinnacle Center for Mental Health and Human Re", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lrbmd/api/", + "OrganizationName": "Lilia Romero-Bosch MD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1147213-001103/api/", + "OrganizationName": "Long Grove Psychological Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/henderson/api/", + "OrganizationName": "Donna C. Henderson, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377324-113106/api/", + "OrganizationName": "Kristina Carlson LMHC, LCDP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1570210-193122/api/", + "OrganizationName": "Purdy Psychology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ndbh/api/", + "OrganizationName": "New Directions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1572792-151837/api/", + "OrganizationName": "Google Test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shields/api/", + "OrganizationName": "YourWellBeingMatters", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ihs/api/", + "OrganizationName": "Inner Health Services, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1243849-190348/api/", + "OrganizationName": "Jennifer R. Fedorov, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1598281-095801/api/", + "OrganizationName": "G2Deal2023", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1463355-174029/api/", + "OrganizationName": "Deschutes Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scc/api/", + "OrganizationName": "Samaritan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1112162-213647/api/", + "OrganizationName": "HG Counseling Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hwc/api/", + "OrganizationName": "Healing Ways Counseling, PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glowacki/api/", + "OrganizationName": "Natalie A. Glowacki", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/whp/api/", + "OrganizationName": "Whole Health Psychological", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/active/api/", + "OrganizationName": "Active Community Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/magaro/api/", + "OrganizationName": "Gerald Magaro, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mchugh/api/", + "OrganizationName": "Signs of Change Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1326407-102605/api/", + "OrganizationName": "The Journey Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sullivan/api/", + "OrganizationName": "Kelly L Sullivan, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/healthy/api/", + "OrganizationName": "Healthy Navigations", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/homan/api/", + "OrganizationName": "Kristen Homan, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pcl/api/", + "OrganizationName": "Michelle A. Worden, Professional Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/neef/api/", + "OrganizationName": "Brittany K. Neef, Psy.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1426738-154352/api/", + "OrganizationName": "Limitless Minds LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/creatives/api/", + "OrganizationName": "Lynda Hynes Gagne, LCMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/barnes/api/", + "OrganizationName": "Barnes Therapy Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hitchen/api/", + "OrganizationName": "Abigail R Hitchen, PsyD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lacasse/api/", + "OrganizationName": "Elizabeth Lacasse", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633631-190313/api/", + "OrganizationName": "j thearpy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1122945-105306/api/", + "OrganizationName": "Stephanie Jones", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1362711-154836/api/", + "OrganizationName": "New Visions BHA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/maxpsych/api/", + "OrganizationName": "Max Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/iron/api/", + "OrganizationName": "Ironwood Counseling and Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/drumgoole/api/", + "OrganizationName": "Drumgoole Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1301737-135624/api/", + "OrganizationName": "Liferefine Company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632465-102625/api/", + "OrganizationName": "MindBodySoul", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632437-223027/api/", + "OrganizationName": "ABS Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1090158-173741/api/", + "OrganizationName": "180 Counseling Solutions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/erecord/api/", + "OrganizationName": "eRecord Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shoreman/api/", + "OrganizationName": "Lynn M. Shoreman, LICSW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1271066-210137/api/", + "OrganizationName": "Mindful Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/levy/api/", + "OrganizationName": "Stuart Levy LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/glenn/api/", + "OrganizationName": "Christine Glenn Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bruhn/api/", + "OrganizationName": "D. Michael Bruhn, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/br/api/", + "OrganizationName": "Santa Fe Psychology, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/roche/api/", + "OrganizationName": "Cassie Roche, MS, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1447426-140111/api/", + "OrganizationName": "Reunification Works LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632026-042638/api/", + "OrganizationName": "Curati", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1100753-100821/api/", + "OrganizationName": "DTMS Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/owens/api/", + "OrganizationName": "Melissa Owens, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/outback/api/", + "OrganizationName": "Outback Therapeutic Expeditions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1350522-121555/api/", + "OrganizationName": "Erica Weiss MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1067725-172646/api/", + "OrganizationName": "Zana Zeigler, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/samhouston/api/", + "OrganizationName": "Christopher Walken", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wft/api/", + "OrganizationName": "Wasatch Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/howland/api/", + "OrganizationName": "Greylock Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1559264-204438/api/", + "OrganizationName": "April Basham LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/valley/api/", + "OrganizationName": "Valley Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1426828-162645/api/", + "OrganizationName": "Staci Short", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1181305-164718/api/", + "OrganizationName": "Bright Future Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stamm/api/", + "OrganizationName": "Meegan Stamm, LCSWR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1507664-140538/api/", + "OrganizationName": "Salem Hope and Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clcounseling/api/", + "OrganizationName": "CL Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mdavis/api/", + "OrganizationName": "Mary Ann Davis, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404084-100917/api/", + "OrganizationName": "Ned Flanders Incfghdfghfgd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gross/api/", + "OrganizationName": "Amber Gross Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1404074-095840/api/", + "OrganizationName": "ONC Round 3asdfasdf", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1034126-114708/api/", + "OrganizationName": "Dr.Elizabeth Fazio \u0026 Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/youandme/api/", + "OrganizationName": "You and M.E. Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cng/api/", + "OrganizationName": "Cynthia Nicholson-Guidry MSN, RN FNP: PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ddj/api/", + "OrganizationName": "Danette Dollison-Johnson, MA, LPC, MT-BC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/saherman/api/", + "OrganizationName": "Sabrina Herman,LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/buckner/api/", + "OrganizationName": "Cynthia Buckner, APN, PMHNP-BC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/depalma/api/", + "OrganizationName": "Diane M. DePalma, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1220226-201421/api/", + "OrganizationName": "Katharyn Waterfield, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lighthousecs/api/", + "OrganizationName": "Lighthouse Counseling Services, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/castle/api/", + "OrganizationName": "Susannah Castle, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1054033-140240/api/", + "OrganizationName": "Willamette Sky Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1113396-210216/api/", + "OrganizationName": "Relational Counseling Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1607227-144106/api/", + "OrganizationName": "Test Practice 1234", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/flynnllc/api/", + "OrganizationName": "Lauren Flynn, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kuttner/api/", + "OrganizationName": "Jessica Kuttner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hmps/api/", + "OrganizationName": "Healthy Mind Psychological Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vpa/api/", + "OrganizationName": "Vorpahl Psychology Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kirstner/api/", + "OrganizationName": "Katherine Kirstner, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lavergne/api/", + "OrganizationName": "RACHEL LAVERGNE LCMHC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hynd/api/", + "OrganizationName": "Jean Hynd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/figueroa/api/", + "OrganizationName": "Lisa Figueroa, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1300398-070133/api/", + "OrganizationName": "Kelly Norris, MA, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ecuft/api/", + "OrganizationName": "ECU Family Therapy Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1383785-030421/api/", + "OrganizationName": "Caribbean community connection", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1377527-143543/api/", + "OrganizationName": "Kristin David Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspen/api/", + "OrganizationName": "Vandana Aspen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/daf/api/", + "OrganizationName": "A New Direction Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633658-114401/api/", + "OrganizationName": "SparroWell", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/agape/api/", + "OrganizationName": "Agape Counseling Services West Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fwsw/api/", + "OrganizationName": "Family Works Social Work", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1458334-161240/api/", + "OrganizationName": "ALLIANCE BEHAVIORAL HEALTH CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lorven/api/", + "OrganizationName": "Lorven Child and Family Development", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jjpsyd/api/", + "OrganizationName": "Jennifer Jones, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1095962-150531/api/", + "OrganizationName": "Tricia James, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/keolanui/api/", + "OrganizationName": "Rebecca Keolanui", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1362429-194623/api/", + "OrganizationName": "L. Jensen and Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1008178/api/", + "OrganizationName": "Life Resources, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1064526-105300/api/", + "OrganizationName": "New Life New Journey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1449632-163018/api/", + "OrganizationName": "Angels Matter", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bendcb/api/", + "OrganizationName": "Bend Counseling \u0026 Biofeedback", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fraguela/api/", + "OrganizationName": "Miguel Fraguela", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1329713-150543/api/", + "OrganizationName": "Insight Children Family Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1392061-124407/api/", + "OrganizationName": "Old River Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hp/api/", + "OrganizationName": "Houston Psychotherapists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bainbridge/api/", + "OrganizationName": "Bainbridge Youth Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bendpsych/api/", + "OrganizationName": "Bend Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/btallc/api/", + "OrganizationName": "Bergen Therapy Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/delshad/api/", + "OrganizationName": "Dr. Nadia Delshad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1593621-151207/api/", + "OrganizationName": "Center For Positive Change", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1421469-111333/api/", + "OrganizationName": "KMH Therapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/monkarsh/api/", + "OrganizationName": "Dr. Gary P. Monkarsh \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tyw/api/", + "OrganizationName": "Therapy Your Way, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jpc/api/", + "OrganizationName": "James P. Cooney, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/journey/api/", + "OrganizationName": "Journey Professional Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sa/api/", + "OrganizationName": "Schlutter and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1588741-224222/api/", + "OrganizationName": "BG TEST90210", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1270101-171547/api/", + "OrganizationName": "Nancy Curfman, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/npfs/api/", + "OrganizationName": "New Priorities Family Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/justian/api/", + "OrganizationName": "Rose Justian, LMSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cgc/api/", + "OrganizationName": "Counseling for Growth \u0026 Change", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aoh/api/", + "OrganizationName": "Art of Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pgc/api/", + "OrganizationName": "Pando Geriatric Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mp/api/", + "OrganizationName": "Michigan Psychological, PC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/inhope/api/", + "OrganizationName": "Counseling Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631726-170548/api/", + "OrganizationName": "Sara James", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1257381-101446/api/", + "OrganizationName": "EnSpire Counseling \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scime/api/", + "OrganizationName": "Melinda Scime, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/werkman/api/", + "OrganizationName": "Alan Werkman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ptcc/api/", + "OrganizationName": "Pathways to Change Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rite/api/", + "OrganizationName": "Rite of Passages Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pll/api/", + "OrganizationName": "Pamela Lyss-Lerman, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1029503-153127/api/", + "OrganizationName": "Amy Bordelon-Freeman", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lalcsw/api/", + "OrganizationName": "Loren Andrews, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1563529-170841/api/", + "OrganizationName": "Aspire-MHTT SMYC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/quigley/api/", + "OrganizationName": "Patrick A. Quigley, Ph.D., LSAC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cca/api/", + "OrganizationName": "Kristen Pohlman Ph.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/naumowicz/api/", + "OrganizationName": "Heidi Naumowicz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cws/api/", + "OrganizationName": "Carole W. Sebenick, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nlvbh/api/", + "OrganizationName": "North Las Vegas Behavioral", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1077942-162327/api/", + "OrganizationName": "Amena Alicia Humphrey, PhD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ml/api/", + "OrganizationName": "Monica Levesque", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kanesville/api/", + "OrganizationName": "Brigette Maas, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/savage/api/", + "OrganizationName": "Elizabeth Savage Psychotherapy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jgcw/api/", + "OrganizationName": "Jonna Gail Carson-Webb, Psy.D", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stubblefield/api/", + "OrganizationName": "Jennifer Stubblefield, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1520690-065902/api/", + "OrganizationName": "Practice Name", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1290753-164925/api/", + "OrganizationName": "Courtney Conroy, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspirema/api/", + "OrganizationName": "Aspire", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hcllc/api/", + "OrganizationName": "Harmony Counseling, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632033-082513/api/", + "OrganizationName": "ritesh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1632036-090000/api/", + "OrganizationName": "Gili Hershkovich-Kim", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1036512-214913/api/", + "OrganizationName": "Sanders Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trotta/api/", + "OrganizationName": "Beth Trotta, LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1629907-151356/api/", + "OrganizationName": "Aspire Mental Health-SA Program", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/makingtherapybetter/api/", + "OrganizationName": "Making Therapy Better", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1570177-172424/api/", + "OrganizationName": "Limitless Behavioral Health \u0026 ABA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fraser/api/", + "OrganizationName": "Brenda Fraser, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/healingsource/api/", + "OrganizationName": "Healing Source", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/harsenault/api/", + "OrganizationName": "Heather Arsenault, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1488842-144257/api/", + "OrganizationName": "Inspired Conciousness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eller/api/", + "OrganizationName": "Buffie Eller", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cford/api/", + "OrganizationName": "Christopher Ford LSCSW LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1621157-134950/api/", + "OrganizationName": "Paul Wilson LCSW-R", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1458063-161022/api/", + "OrganizationName": "ZenBees Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1620765-171122/api/", + "OrganizationName": "W Glenn Bordelon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1271051-191153/api/", + "OrganizationName": "Nitin Rajhans, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1585554-142310/api/", + "OrganizationName": "Integrity Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mays/api/", + "OrganizationName": "AMaysing Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fch/api/", + "OrganizationName": "Framingham Counseling \u0026 Hypnotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cfbs/api/", + "OrganizationName": "Center for Behavioral Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ljt/api/", + "OrganizationName": "Leonard J. Tamura, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/advanced/api/", + "OrganizationName": "Mark De Luca, M.D. Palm Beach Psychiatry Experts, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/energy/api/", + "OrganizationName": "EnergyMatters", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1434975-125025/api/", + "OrganizationName": "Integrity Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1264586-110002/api/", + "OrganizationName": "Susan Cohen LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/elias/api/", + "OrganizationName": "Dr. Jessica L. Tommasi, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kinsler/api/", + "OrganizationName": "Dr Kinsler \u0026 Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mckenzie/api/", + "OrganizationName": "McKenzie \u0026 Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1317891-141728/api/", + "OrganizationName": "Living Free Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1075906-182212/api/", + "OrganizationName": "She Soars Psychiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/psychassociates/api/", + "OrganizationName": "Psychiatric Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1565944-084357/api/", + "OrganizationName": "Randolph Family Crisis Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1592307-150520/api/", + "OrganizationName": "MovingAhead Counseling ServicesPLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1593916-164133/api/", + "OrganizationName": "Carol Dell'Oliver", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1527307-105418/api/", + "OrganizationName": "Restorative Brain Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/fimd/api/", + "OrganizationName": "FUAD ISSA MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/clh/api/", + "OrganizationName": "Center for Loss \u0026 Healing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kilgour/api/", + "OrganizationName": "April Kilgour", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1040486-225051/api/", + "OrganizationName": "Shay Scholtes, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tcd/api/", + "OrganizationName": "Timothy C. DeMott, M.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scook/api/", + "OrganizationName": "B SCOT COOK, PSYD, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1060260-235751/api/", + "OrganizationName": "Lisa Carlson, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/eom/api/", + "OrganizationName": "Elements of Motivation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sanger/api/", + "OrganizationName": "Sandra Eng, PhD, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1578510-194653/api/", + "OrganizationName": "Kristie Vera Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nova/api/", + "OrganizationName": "Nova Psychiatry, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lopas/api/", + "OrganizationName": "Jennifer Lopas, LCSW, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/romo/api/", + "OrganizationName": "Rebecca U. Romo, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1579943-135237/api/", + "OrganizationName": "oktesttest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1579946-135311/api/", + "OrganizationName": "fake org", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1629129-135010/api/", + "OrganizationName": "Diamond Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1574155-134616/api/", + "OrganizationName": "Modern Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1579950-135726/api/", + "OrganizationName": "rogfs test", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1610916-161454/api/", + "OrganizationName": "Archway Child and Family Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lindsay/api/", + "OrganizationName": "Lindsay Harrow Pearlman, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1097172-112050/api/", + "OrganizationName": "Laura McGraw-Cook, Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1582680-120036/api/", + "OrganizationName": "Wellspring Approach Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1208155-213910/api/", + "OrganizationName": "Lively Healthcare Solutions", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1186123-121544/api/", + "OrganizationName": "Bluegrass Professional Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/trinity/api/", + "OrganizationName": "Trinity Behavioral Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1055702-085140/api/", + "OrganizationName": "Hendrickson Counseling \u0026 Consulting, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/holland/api/", + "OrganizationName": "Stephanie B Holland", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lorio/api/", + "OrganizationName": "Hakiba Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/svcmhs/api/", + "OrganizationName": "Susquehanna Valley Community MHS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1107754-162839/api/", + "OrganizationName": "Alliance Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/malexander/api/", + "OrganizationName": "Mari Alexander, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jcbh/api/", + "OrganizationName": "Jackson County Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mercier/api/", + "OrganizationName": "Mercier Wellness Counseling Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/annafox/api/", + "OrganizationName": "Anna Fox, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bursteinrose/api/", + "OrganizationName": "Burstein-Rose PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/peers/api/", + "OrganizationName": "Rhonda Peers, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1058695-021204/api/", + "OrganizationName": "cynthia tegethoff practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/geller/api/", + "OrganizationName": "Elliot Geller, LCSW, CGP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ppgroup/api/", + "OrganizationName": "Premier Professional Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1247437-104422/api/", + "OrganizationName": "Southern Psychiatric Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/spa/api/", + "OrganizationName": "Salem Psychology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/french/api/", + "OrganizationName": "Sound Mind Mental Health Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/rugg/api/", + "OrganizationName": "Jacqueline Rugg, APRN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1172296-002113/api/", + "OrganizationName": "Andy Markham LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jtmd/api/", + "OrganizationName": "Jacob Towery, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mueller/api/", + "OrganizationName": "Elizabeth Mueller ARNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1390260-174405/api/", + "OrganizationName": "Empowering Youth Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1594082-173733/api/", + "OrganizationName": "Center for Renewed Minds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1159010-025345/api/", + "OrganizationName": "Glass House Counseling Agency", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/brodie/api/", + "OrganizationName": "D.A.Brodie,Ph.D.P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aspiremh/api/", + "OrganizationName": "Aspire Mental Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hmmd/api/", + "OrganizationName": "Hayne McMeekin MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ejt/api/", + "OrganizationName": "Emily Johnson Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/reflective/api/", + "OrganizationName": "Reflective Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1430245-005032/api/", + "OrganizationName": "Dr. Deanna Linville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scs/api/", + "OrganizationName": "Stacey C. Stevens, MS, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/hopesprings/api/", + "OrganizationName": "HopeSprings Counseling Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mckague/api/", + "OrganizationName": "Jennifer McKague, MS, LPC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/recover/api/", + "OrganizationName": "Recover Health Resources", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/jackebarr/api/", + "OrganizationName": "Jack E. Barr Cntr for Well Being", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1191230-231007/api/", + "OrganizationName": "Stepping Stones Psych Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1624119-133709/api/", + "OrganizationName": "Clinica medica salud e integridad", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1448541-144039/api/", + "OrganizationName": "YUMEI CHEN PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1014569-103150/api/", + "OrganizationName": "Institute for Life Renovation, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1480808-102428/api/", + "OrganizationName": "Marcy Rosenberg, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/aps/api/", + "OrganizationName": "Associated Psychological Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ngcs/api/", + "OrganizationName": "Respire Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mcarthur/api/", + "OrganizationName": "Alicia McArthur, LCMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1212306-204216/api/", + "OrganizationName": "Community Caring Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gatewaypsychiatric/api/", + "OrganizationName": "Gateway Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mfwc/api/", + "OrganizationName": "Marriage \u0026 Family Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1604789-121854/api/", + "OrganizationName": "Hello", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1002439/api/", + "OrganizationName": "Advanced Counseling and Therapy Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/talktome/api/", + "OrganizationName": "Talk To Me, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1298921-183939/api/", + "OrganizationName": "Michelle Claire Hill", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/kittenj/api/", + "OrganizationName": "Joan Kitten", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1604794-122500/api/", + "OrganizationName": "oktesttesttest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1378756-182805/api/", + "OrganizationName": "THE MIND WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/gaitskill/api/", + "OrganizationName": "Kim Gaitskill MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bridgeway/api/", + "OrganizationName": "Bridgeway Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wbmallc/api/", + "OrganizationName": "Washington Behavioral Medicine Associates, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1278227-133130/api/", + "OrganizationName": "Douglas J. Opler, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1154691-120633/api/", + "OrganizationName": "Serena Verolla, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1618167-064011/api/", + "OrganizationName": "Oak Tree Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1385149-182631/api/", + "OrganizationName": "Brandon Teeftaller, APN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1606734-190429/api/", + "OrganizationName": "Americare Behavioral Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1541024-180924/api/", + "OrganizationName": "Susan Schulz LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1075523-094422/api/", + "OrganizationName": "Psychiatric Momentum LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/madt/api/", + "OrganizationName": "Scott L. Fenton, PsyD, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/segal/api/", + "OrganizationName": "Evolve Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mind/api/", + "OrganizationName": "Mindwell Psychology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/apex/api/", + "OrganizationName": "Apex Neuropsychology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/scarborough/api/", + "OrganizationName": "Branches Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/stone/api/", + "OrganizationName": "Mind Body Wellness Group, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1376712-173131/api/", + "OrganizationName": "Nancy H. Patten-Kline, DO LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1078588-150017/api/", + "OrganizationName": "Bridges Community Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1132546-203320/api/", + "OrganizationName": "WellHealth Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cornerllc/api/", + "OrganizationName": "Oakwood Counseling Center LLC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/simmons/api/", + "OrganizationName": "Madeleine Simmons PMHNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/wilkinson/api/", + "OrganizationName": "J Wilkinson MD, Professional Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/foundationfam/api/", + "OrganizationName": "Foundation Family Care P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mansir/api/", + "OrganizationName": "Katarina R Mansir, Psy.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1239726-090715/api/", + "OrganizationName": "For Living Consciously", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/zebrun/api/", + "OrganizationName": "John Zebrun MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/shapiro/api/", + "OrganizationName": "Richard S. Shapiro Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1625529-125112/api/", + "OrganizationName": "Robyn Rose", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cce/api/", + "OrganizationName": "Center for Counseling and Education, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/integrative/api/", + "OrganizationName": "Integrative Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mtms/api/", + "OrganizationName": "Modern Therapies for Mind and Soul, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1082968-152635/api/", + "OrganizationName": "Corey T. Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1630768-122525/api/", + "OrganizationName": "The Foundation For Integrated Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1605850-143703/api/", + "OrganizationName": "Calmify Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1190132-093319/api/", + "OrganizationName": "Michael Andrews Counseling LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/costello/api/", + "OrganizationName": "Stephanie Costello LCSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631471-162253/api/", + "OrganizationName": "APICON", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1257252-071226/api/", + "OrganizationName": "Notable Life Counseling Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/linde/api/", + "OrganizationName": "Sandra Vander Linde, MS, LMFT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/irene/api/", + "OrganizationName": "Irene Skowronek Ph.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bend/api/", + "OrganizationName": "Bend Family Therapy, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/tegacay/api/", + "OrganizationName": "Tega Cay Psychiatric Associates, P A", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1343760-133550/api/", + "OrganizationName": "Erik Morris PMHNP LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/nih/api/", + "OrganizationName": "Northern Integrated Health, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1572971-183029/api/", + "OrganizationName": "Katrina Mercer, MA, LMHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1608067-152545/api/", + "OrganizationName": "Velez Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/augustyn/api/", + "OrganizationName": "Augustyn Family Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/acc/api/", + "OrganizationName": "Anchor Counseling Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ccfp/api/", + "OrganizationName": "Cascade Child and Family Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/mian/api/", + "OrganizationName": "Ayesha Mian, MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/adapt/api/", + "OrganizationName": "ADAPT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/cclllc/api/", + "OrganizationName": "CCL, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ap/api/", + "OrganizationName": "Andrea Paquette, ARNP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/choices/api/", + "OrganizationName": "Choices Counseling of Londonderry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bsp/api/", + "OrganizationName": "Branching Streams Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631777-052635/api/", + "OrganizationName": "Empowering Poin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1629983-205802/api/", + "OrganizationName": "Mass Behavioral Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/newhope/api/", + "OrganizationName": "New Hope Counseling Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/abhs/api/", + "OrganizationName": "ADVANCED BEHAVIORAL HEALTH SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/sw/api/", + "OrganizationName": "Whitesell and Associates, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631422-131200/api/", + "OrganizationName": "Michelle Gaffney, LICSW", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/iopt/api/", + "OrganizationName": "Integrative Options", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/svp/api/", + "OrganizationName": "Silicon Valley Psychiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/bt/api/", + "OrganizationName": "B \u0026 T Partners LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/vmurphy/api/", + "OrganizationName": "Vicki Murphy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/ramd/api/", + "OrganizationName": "Roderick Anscombe, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/coxm/api/", + "OrganizationName": "Never Give up behavioral health services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/moynihan/api/", + "OrganizationName": "Jennifer Moynihan, Licensed Clinical Social Worker, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/omh/api/", + "OrganizationName": "Oasis Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633486-191750/api/", + "OrganizationName": "Let Light In Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/pss/api/", + "OrganizationName": "Syntropy LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1633695-174314/api/", + "OrganizationName": "New practice in FLorida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1631682-144507/api/", + "OrganizationName": "Aspire Counseling \u0026 Coaching", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/999352/api/", + "OrganizationName": "Paul A. Suarez, MS, PMHP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/dbh/api/", + "OrganizationName": "Daily Behavioral Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/lifequest/api/", + "OrganizationName": "LifeQuest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/solutionstherapy/api/", + "OrganizationName": "Solutions Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "http://developer.carepaths.com/1634376-220307/api/", + "OrganizationName": "Fake practice", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/Darena_Solutions_LLC_EndpointSources.json b/resources/prod_resources/Darena_Solutions_LLC_EndpointSources.json index fe87cf341..890d2d58c 100644 --- a/resources/prod_resources/Darena_Solutions_LLC_EndpointSources.json +++ b/resources/prod_resources/Darena_Solutions_LLC_EndpointSources.json @@ -1,13624 +1,13714 @@ { "Endpoints": [ { - "URL": "https://api.meldrx.com/fhir/hmc-001", + "URL": "https://app.meldrx.com/api/fhir/hmc-001", "OrganizationName": "Harbor - UCLA Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/bridgeview_medical_systems", + "URL": "https://app.meldrx.com/api/fhir/bridgeview_medical_systems", "OrganizationName": "Professional Imaging, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/asheville", + "URL": "https://app.meldrx.com/api/fhir/asheville", "OrganizationName": "Asheville Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/readeyecenter", + "URL": "https://app.meldrx.com/api/fhir/readeyecenter", "OrganizationName": "Read Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/eyeandface", + "URL": "https://app.meldrx.com/api/fhir/eyeandface", "OrganizationName": "EYE AND FACE LLC - David Leventer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fhs", + "URL": "https://app.meldrx.com/api/fhir/fhs", "OrganizationName": "Fagadau, Hawk \u0026 Swanson, MD LLP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/gcny", + "URL": "https://app.meldrx.com/api/fhir/gcny", "OrganizationName": "Glaucoma Consultants of NY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/moran", + "URL": "https://app.meldrx.com/api/fhir/moran", "OrganizationName": "Moran", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/aves", + "URL": "https://app.meldrx.com/api/fhir/aves", "OrganizationName": "AVES - ANew Vision Eye Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ohioeye", + "URL": "https://app.meldrx.com/api/fhir/ohioeye", "OrganizationName": "Ohio Eye Alliance", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/camino", + "URL": "https://app.meldrx.com/api/fhir/camino", "OrganizationName": "Camino Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/centralparkway", + "URL": "https://app.meldrx.com/api/fhir/centralparkway", "OrganizationName": "Central Parkway Eye Care Center, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/canyoneye", + "URL": "https://app.meldrx.com/api/fhir/canyoneye", "OrganizationName": "Canyon Eye Associates Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/cecc", + "URL": "https://app.meldrx.com/api/fhir/cecc", "OrganizationName": "Cataract \u0026 Eyecare Center of Dickson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/princetoneye", + "URL": "https://app.meldrx.com/api/fhir/princetoneye", "OrganizationName": "Dr Chirag Shah", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rhop", + "URL": "https://app.meldrx.com/api/fhir/rhop", "OrganizationName": "Riverhill Ophthalmology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/shnayder", + "URL": "https://app.meldrx.com/api/fhir/shnayder", "OrganizationName": "Dr. Eric Shnayder", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/shorthills", + "URL": "https://app.meldrx.com/api/fhir/shorthills", "OrganizationName": "Short Hills Ophthalmology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sio", + "URL": "https://app.meldrx.com/api/fhir/sio", "OrganizationName": "Staten Island Ophthalmology - Dr. Kung", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sondheimer", + "URL": "https://app.meldrx.com/api/fhir/sondheimer", "OrganizationName": "Dr. Stuart Sondheimer, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/supremevision", + "URL": "https://app.meldrx.com/api/fhir/supremevision", "OrganizationName": "Supreme Vision", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/teent", + "URL": "https://app.meldrx.com/api/fhir/teent", "OrganizationName": "Eye, Ear, Nose \u0026 Throat Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/westlake", + "URL": "https://app.meldrx.com/api/fhir/westlake", "OrganizationName": "George S. Hoffman MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/clarityeye", + "URL": "https://app.meldrx.com/api/fhir/clarityeye", "OrganizationName": "Clarity Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/clark", + "URL": "https://app.meldrx.com/api/fhir/clark", "OrganizationName": "Alexandria Ophthalmic-Associates-(Clark)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/curreri", + "URL": "https://app.meldrx.com/api/fhir/curreri", "OrganizationName": "Curreri Ophthalmology Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/edison", + "URL": "https://app.meldrx.com/api/fhir/edison", "OrganizationName": "Edison Ophthalmology Assoc, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/prairieeye", + "URL": "https://app.meldrx.com/api/fhir/prairieeye", "OrganizationName": "Prairie Eye \u0026 Lasik Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/aec", + "URL": "https://app.meldrx.com/api/fhir/aec", "OrganizationName": "SIO-Academic Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/amanpreet", + "URL": "https://app.meldrx.com/api/fhir/amanpreet", "OrganizationName": "Amanpreet Brar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/haasvisioncenter", + "URL": "https://app.meldrx.com/api/fhir/haasvisioncenter", "OrganizationName": "Haas Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/hudson", + "URL": "https://app.meldrx.com/api/fhir/hudson", "OrganizationName": "VisionFirst Eye Center - AL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/lcosi", + "URL": "https://app.meldrx.com/api/fhir/lcosi", "OrganizationName": "Mostafavi Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/antigua", + "URL": "https://app.meldrx.com/api/fhir/antigua", "OrganizationName": "Maida P. Antigua", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/monongalia", + "URL": "https://app.meldrx.com/api/fhir/monongalia", "OrganizationName": "Monongalia General Hospital", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00001", + "URL": "https://app.meldrx.com/api/fhir/ez_00001", "OrganizationName": "21st Century Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00002", + "URL": "https://app.meldrx.com/api/fhir/ez_00002", "OrganizationName": "360 Dermatology PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00003", + "URL": "https://app.meldrx.com/api/fhir/ez_00003", "OrganizationName": "57 West Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00004", + "URL": "https://app.meldrx.com/api/fhir/ez_00004", "OrganizationName": "Acadia Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00005", + "URL": "https://app.meldrx.com/api/fhir/ez_00005", "OrganizationName": "ACTIVE DERMATOLOGY, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00006", + "URL": "https://app.meldrx.com/api/fhir/ez_00006", "OrganizationName": "Advanced Dermatologic and Cosmetic Institute, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00007", + "URL": "https://app.meldrx.com/api/fhir/ez_00007", "OrganizationName": "Affinity Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00008", + "URL": "https://app.meldrx.com/api/fhir/ez_00008", "OrganizationName": "Airia Comprehensive Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00009", + "URL": "https://app.meldrx.com/api/fhir/ez_00009", "OrganizationName": "Alcian Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00010", + "URL": "https://app.meldrx.com/api/fhir/ez_00010", "OrganizationName": "American Institute of Dermatology, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00011", + "URL": "https://app.meldrx.com/api/fhir/ez_00011", "OrganizationName": "Anchorage Dermatology \u0026 Cosmetics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00012", + "URL": "https://app.meldrx.com/api/fhir/ez_00012", "OrganizationName": "Andrew M. Quinn III, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00013", + "URL": "https://app.meldrx.com/api/fhir/ez_00013", "OrganizationName": "Anew Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00014", + "URL": "https://app.meldrx.com/api/fhir/ez_00014", "OrganizationName": "Ann Arbor Saline Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00015", + "URL": "https://app.meldrx.com/api/fhir/ez_00015", "OrganizationName": "Apollo Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00016", + "URL": "https://app.meldrx.com/api/fhir/ez_00016", "OrganizationName": "Appalachian Derm Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00017", + "URL": "https://app.meldrx.com/api/fhir/ez_00017", "OrganizationName": "Arch Dermatology Institute, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00018", + "URL": "https://app.meldrx.com/api/fhir/ez_00018", "OrganizationName": "Arlington Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00019", + "URL": "https://app.meldrx.com/api/fhir/ez_00019", "OrganizationName": "Asheville Dermatology Professionals PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00020", + "URL": "https://app.meldrx.com/api/fhir/ez_00020", "OrganizationName": "Associates in Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00021", + "URL": "https://app.meldrx.com/api/fhir/ez_00021", "OrganizationName": "Atlantic Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00022", + "URL": "https://app.meldrx.com/api/fhir/ez_00022", "OrganizationName": "AU Care Center Aiken Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00023", + "URL": "https://app.meldrx.com/api/fhir/ez_00023", "OrganizationName": "Austin \u0026 Reddick Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00024", + "URL": "https://app.meldrx.com/api/fhir/ez_00024", "OrganizationName": "Avant Dermatology \u0026 Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00025", + "URL": "https://app.meldrx.com/api/fhir/ez_00025", "OrganizationName": "AVIVA Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00026", + "URL": "https://app.meldrx.com/api/fhir/ez_00026", "OrganizationName": "Babak Roshdieh MD Corp", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00027", + "URL": "https://app.meldrx.com/api/fhir/ez_00027", "OrganizationName": "Bardin Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00028", + "URL": "https://app.meldrx.com/api/fhir/ez_00028", "OrganizationName": "Basko Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00029", + "URL": "https://app.meldrx.com/api/fhir/ez_00029", "OrganizationName": "Bayside Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00030", + "URL": "https://app.meldrx.com/api/fhir/ez_00030", "OrganizationName": "Bellmore Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00031", + "URL": "https://app.meldrx.com/api/fhir/ez_00031", "OrganizationName": "Bergen Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00032", + "URL": "https://app.meldrx.com/api/fhir/ez_00032", "OrganizationName": "BETTY RAJAN, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00033", + "URL": "https://app.meldrx.com/api/fhir/ez_00033", "OrganizationName": "Bismarck Dermatology Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00034", + "URL": "https://app.meldrx.com/api/fhir/ez_00034", "OrganizationName": "Blas A. Reyes, M.D. P.A", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00035", + "URL": "https://app.meldrx.com/api/fhir/ez_00035", "OrganizationName": "Braddock Finnegan Dermatology, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00036", + "URL": "https://app.meldrx.com/api/fhir/ez_00036", "OrganizationName": "BRIAN A HARRIS DERMATOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00037", + "URL": "https://app.meldrx.com/api/fhir/ez_00037", "OrganizationName": "Bruce Park MD A Professional Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00038", + "URL": "https://app.meldrx.com/api/fhir/ez_00038", "OrganizationName": "California Dermatology Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00039", + "URL": "https://app.meldrx.com/api/fhir/ez_00039", "OrganizationName": "Camden Dermatology \u0026 Mohs Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00040", + "URL": "https://app.meldrx.com/api/fhir/ez_00040", "OrganizationName": "Camellia Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00041", + "URL": "https://app.meldrx.com/api/fhir/ez_00041", "OrganizationName": "Care Dermatology and Skin Cancer Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00042", + "URL": "https://app.meldrx.com/api/fhir/ez_00042", "OrganizationName": "Cenla Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00043", + "URL": "https://app.meldrx.com/api/fhir/ez_00043", "OrganizationName": "Center for Laser Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00044", + "URL": "https://app.meldrx.com/api/fhir/ez_00044", "OrganizationName": "Central Carolina Dermatology Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00045", + "URL": "https://app.meldrx.com/api/fhir/ez_00045", "OrganizationName": "Central Carolina Skin \u0026 Dermatology Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00046", + "URL": "https://app.meldrx.com/api/fhir/ez_00046", "OrganizationName": "Central Iowa Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00047", + "URL": "https://app.meldrx.com/api/fhir/ez_00047", "OrganizationName": "Central Washington Dermatology \u0026 Cosmetics, PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00048", + "URL": "https://app.meldrx.com/api/fhir/ez_00048", "OrganizationName": "Chagrin Valley Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00049", + "URL": "https://app.meldrx.com/api/fhir/ez_00049", "OrganizationName": "Chattanooga Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00050", + "URL": "https://app.meldrx.com/api/fhir/ez_00050", "OrganizationName": "CincySkin Medical \u0026 Cosmetic Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00051", + "URL": "https://app.meldrx.com/api/fhir/ez_00051", "OrganizationName": "City Dermatology of Northern Virginia, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00052", + "URL": "https://app.meldrx.com/api/fhir/ez_00052", "OrganizationName": "Clarity Dermatology and Cosmetic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00053", + "URL": "https://app.meldrx.com/api/fhir/ez_00053", "OrganizationName": "Cobb Dermatology and Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00054", + "URL": "https://app.meldrx.com/api/fhir/ez_00054", "OrganizationName": "Commonwealth Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00055", + "URL": "https://app.meldrx.com/api/fhir/ez_00055", "OrganizationName": "Comprehensive Blood and Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00056", + "URL": "https://app.meldrx.com/api/fhir/ez_00056", "OrganizationName": "Comprehensive Center for Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00057", + "URL": "https://app.meldrx.com/api/fhir/ez_00057", "OrganizationName": "Comprehensive Dermatology of Idaho, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00058", + "URL": "https://app.meldrx.com/api/fhir/ez_00058", "OrganizationName": "Contour Dermatology and Cosmetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00059", + "URL": "https://app.meldrx.com/api/fhir/ez_00059", "OrganizationName": "Cornerstone Dermatology \u0026 Surgery Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00060", + "URL": "https://app.meldrx.com/api/fhir/ez_00060", "OrganizationName": "Crossroads Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00061", + "URL": "https://app.meldrx.com/api/fhir/ez_00061", "OrganizationName": "Crumay Parnes Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00062", + "URL": "https://app.meldrx.com/api/fhir/ez_00062", "OrganizationName": "Current Dermatology and Cosmetic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00063", + "URL": "https://app.meldrx.com/api/fhir/ez_00063", "OrganizationName": "Cutis Wellness Dermatology \u0026 Dermatopathology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00064", + "URL": "https://app.meldrx.com/api/fhir/ez_00064", "OrganizationName": "Dallas Dermatology and Aesthetics PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00065", + "URL": "https://app.meldrx.com/api/fhir/ez_00065", "OrganizationName": "Dania Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00066", + "URL": "https://app.meldrx.com/api/fhir/ez_00066", "OrganizationName": "Danilo V Del Campo MDSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00067", + "URL": "https://app.meldrx.com/api/fhir/ez_00067", "OrganizationName": "Danowski Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00068", + "URL": "https://app.meldrx.com/api/fhir/ez_00068", "OrganizationName": "DAVIDDERM LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00069", + "URL": "https://app.meldrx.com/api/fhir/ez_00069", "OrganizationName": "David Ginsberg MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00070", + "URL": "https://app.meldrx.com/api/fhir/ez_00070", "OrganizationName": "Dayton Skin Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00071", + "URL": "https://app.meldrx.com/api/fhir/ez_00071", "OrganizationName": "Debra Price MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00072", + "URL": "https://app.meldrx.com/api/fhir/ez_00072", "OrganizationName": "DELILAH ALONSO MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00073", + "URL": "https://app.meldrx.com/api/fhir/ez_00073", "OrganizationName": "Demo Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00074", + "URL": "https://app.meldrx.com/api/fhir/ez_00074", "OrganizationName": "Demo Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00075", + "URL": "https://app.meldrx.com/api/fhir/ez_00075", "OrganizationName": "DERMAGNIFY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00076", + "URL": "https://app.meldrx.com/api/fhir/ez_00076", "OrganizationName": "Dermatologia Borinquen", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00077", + "URL": "https://app.meldrx.com/api/fhir/ez_00077", "OrganizationName": "Dermatologic Surgery Center of Washington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00078", + "URL": "https://app.meldrx.com/api/fhir/ez_00078", "OrganizationName": "Dermatology and Cosmetic Physicians, S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00079", + "URL": "https://app.meldrx.com/api/fhir/ez_00079", "OrganizationName": "Dermatology and Skin Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00080", + "URL": "https://app.meldrx.com/api/fhir/ez_00080", "OrganizationName": "Dermatology and Skincare Arts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00081", + "URL": "https://app.meldrx.com/api/fhir/ez_00081", "OrganizationName": "Dermatology Associates of Berkeley", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00082", + "URL": "https://app.meldrx.com/api/fhir/ez_00082", "OrganizationName": "Dermatology Associates of Glastonbury", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00083", + "URL": "https://app.meldrx.com/api/fhir/ez_00083", "OrganizationName": "Dermatology Associates of Mid Ohio", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00084", + "URL": "https://app.meldrx.com/api/fhir/ez_00084", "OrganizationName": "Dermatology Associates of Oak Ridge", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00085", + "URL": "https://app.meldrx.com/api/fhir/ez_00085", "OrganizationName": "Dermatology By Design LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00086", + "URL": "https://app.meldrx.com/api/fhir/ez_00086", "OrganizationName": "Dermatology Consultants LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00087", + "URL": "https://app.meldrx.com/api/fhir/ez_00087", "OrganizationName": "Dermatology Consultants Midwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00088", + "URL": "https://app.meldrx.com/api/fhir/ez_00088", "OrganizationName": "Dermatology Consultants of Short Hills", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00089", + "URL": "https://app.meldrx.com/api/fhir/ez_00089", "OrganizationName": "Dermatology Consultants PSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00090", + "URL": "https://app.meldrx.com/api/fhir/ez_00090", "OrganizationName": "Dermatology Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00091", + "URL": "https://app.meldrx.com/api/fhir/ez_00091", "OrganizationName": "Dermatology Specialists of St Louis", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00092", + "URL": "https://app.meldrx.com/api/fhir/ez_00092", "OrganizationName": "Dermatology Surgery Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00093", + "URL": "https://app.meldrx.com/api/fhir/ez_00093", "OrganizationName": "Dermatology Treatment and Research Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00094", + "URL": "https://app.meldrx.com/api/fhir/ez_00094", "OrganizationName": "Dermcare Experts LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00095", + "URL": "https://app.meldrx.com/api/fhir/ez_00095", "OrganizationName": "Derm Haven", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00096", + "URL": "https://app.meldrx.com/api/fhir/ez_00096", "OrganizationName": "Derm Institute of Chicago", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00097", + "URL": "https://app.meldrx.com/api/fhir/ez_00097", "OrganizationName": "Derm Institute of West Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00098", + "URL": "https://app.meldrx.com/api/fhir/ez_00098", "OrganizationName": "DermMedical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00099", + "URL": "https://app.meldrx.com/api/fhir/ez_00099", "OrganizationName": "DermUtopia, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00100", + "URL": "https://app.meldrx.com/api/fhir/ez_00100", "OrganizationName": "DeRosa Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00101", + "URL": "https://app.meldrx.com/api/fhir/ez_00101", "OrganizationName": "Deseret Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00102", + "URL": "https://app.meldrx.com/api/fhir/ez_00102", "OrganizationName": "District Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00103", + "URL": "https://app.meldrx.com/api/fhir/ez_00103", "OrganizationName": "Divine Dermatology \u0026 Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00104", + "URL": "https://app.meldrx.com/api/fhir/ez_00104", "OrganizationName": "Divine Dermatology and Surgical Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00105", + "URL": "https://app.meldrx.com/api/fhir/ez_00105", "OrganizationName": "Dockside Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00106", + "URL": "https://app.meldrx.com/api/fhir/ez_00106", "OrganizationName": "DR DELILAH ALONSO DERMATOLOGY LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00107", + "URL": "https://app.meldrx.com/api/fhir/ez_00107", "OrganizationName": "Dr. George Martin Dermatology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00108", + "URL": "https://app.meldrx.com/api/fhir/ez_00108", "OrganizationName": "Dr Kim Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00109", + "URL": "https://app.meldrx.com/api/fhir/ez_00109", "OrganizationName": "Dr. Marisa Potter Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00110", + "URL": "https://app.meldrx.com/api/fhir/ez_00110", "OrganizationName": "Ducharme Dermatology, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00111", + "URL": "https://app.meldrx.com/api/fhir/ez_00111", "OrganizationName": "Duke Neal Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00112", + "URL": "https://app.meldrx.com/api/fhir/ez_00112", "OrganizationName": "Dynamic Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00113", + "URL": "https://app.meldrx.com/api/fhir/ez_00113", "OrganizationName": "Eagle Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00114", + "URL": "https://app.meldrx.com/api/fhir/ez_00114", "OrganizationName": "Edward A. Gross, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00115", + "URL": "https://app.meldrx.com/api/fhir/ez_00115", "OrganizationName": "Elect Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00116", + "URL": "https://app.meldrx.com/api/fhir/ez_00116", "OrganizationName": "Elevation Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00117", + "URL": "https://app.meldrx.com/api/fhir/ez_00117", "OrganizationName": "Ellen C Gendler MDPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00118", + "URL": "https://app.meldrx.com/api/fhir/ez_00118", "OrganizationName": "Elyse S. Rafal, M.D.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00119", + "URL": "https://app.meldrx.com/api/fhir/ez_00119", "OrganizationName": "EPSTEIN \u0026 TUFFANELLI MD'S INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00120", + "URL": "https://app.meldrx.com/api/fhir/ez_00120", "OrganizationName": "Erickson Cosmetic Dermatology \u0026 Lifestyle Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00121", + "URL": "https://app.meldrx.com/api/fhir/ez_00121", "OrganizationName": "Essential Dermatology Group, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00122", + "URL": "https://app.meldrx.com/api/fhir/ez_00122", "OrganizationName": "Eternal Dermatology and Aesthetic Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00123", + "URL": "https://app.meldrx.com/api/fhir/ez_00123", "OrganizationName": "Evergreen Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00124", + "URL": "https://app.meldrx.com/api/fhir/ez_00124", "OrganizationName": "Expert Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00125", + "URL": "https://app.meldrx.com/api/fhir/ez_00125", "OrganizationName": "Fairview Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00126", + "URL": "https://app.meldrx.com/api/fhir/ez_00126", "OrganizationName": "Family Dermatology and Dermatopathology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00127", + "URL": "https://app.meldrx.com/api/fhir/ez_00127", "OrganizationName": "Family Skin Care Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00128", + "URL": "https://app.meldrx.com/api/fhir/ez_00128", "OrganizationName": "Fisher Dermatology \u0026 Aesthetics, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00129", + "URL": "https://app.meldrx.com/api/fhir/ez_00129", "OrganizationName": "FLORES DERMATOLOGY LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00130", + "URL": "https://app.meldrx.com/api/fhir/ez_00130", "OrganizationName": "Florida Academic Dermatology Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00131", + "URL": "https://app.meldrx.com/api/fhir/ez_00131", "OrganizationName": "Florida West Coast Skin \u0026 Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00132", + "URL": "https://app.meldrx.com/api/fhir/ez_00132", "OrganizationName": "Flower City Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00133", + "URL": "https://app.meldrx.com/api/fhir/ez_00133", "OrganizationName": "Fort Lauderdale Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00134", + "URL": "https://app.meldrx.com/api/fhir/ez_00134", "OrganizationName": "Fort Worth Dermatology Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00135", + "URL": "https://app.meldrx.com/api/fhir/ez_00135", "OrganizationName": "FRANCISCO FLORES M.D. LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00136", + "URL": "https://app.meldrx.com/api/fhir/ez_00136", "OrganizationName": "Francisco Flores, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00137", + "URL": "https://app.meldrx.com/api/fhir/ez_00137", "OrganizationName": "Gavino Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00138", + "URL": "https://app.meldrx.com/api/fhir/ez_00138", "OrganizationName": "Germantown Dermatology, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00139", + "URL": "https://app.meldrx.com/api/fhir/ez_00139", "OrganizationName": "Glass Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00140", + "URL": "https://app.meldrx.com/api/fhir/ez_00140", "OrganizationName": "Gold Coast Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00141", + "URL": "https://app.meldrx.com/api/fhir/ez_00141", "OrganizationName": "Golden Coast Dermatology, Skin Cancer \u0026 Vein Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00142", + "URL": "https://app.meldrx.com/api/fhir/ez_00142", "OrganizationName": "Gray Dermatology \u0026 Cosmetic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00143", + "URL": "https://app.meldrx.com/api/fhir/ez_00143", "OrganizationName": "Greater Miami Skin and Laser Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00144", + "URL": "https://app.meldrx.com/api/fhir/ez_00144", "OrganizationName": "Greentree Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00145", + "URL": "https://app.meldrx.com/api/fhir/ez_00145", "OrganizationName": "Haber Dermatology, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00146", + "URL": "https://app.meldrx.com/api/fhir/ez_00146", "OrganizationName": "Harbor Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00147", + "URL": "https://app.meldrx.com/api/fhir/ez_00147", "OrganizationName": "Harpeth Valley Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00148", + "URL": "https://app.meldrx.com/api/fhir/ez_00148", "OrganizationName": "Hassler Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00149", + "URL": "https://app.meldrx.com/api/fhir/ez_00149", "OrganizationName": "HEFTER DERMATOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00150", + "URL": "https://app.meldrx.com/api/fhir/ez_00150", "OrganizationName": "Heidi Goodarzi MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00151", + "URL": "https://app.meldrx.com/api/fhir/ez_00151", "OrganizationName": "Hollywood Dermatology \u0026 Cosmetic Surgery Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00152", + "URL": "https://app.meldrx.com/api/fhir/ez_00152", "OrganizationName": "Honet Dermatology and Cosmetic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00153", + "URL": "https://app.meldrx.com/api/fhir/ez_00153", "OrganizationName": "H ROSS HARRIS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00154", + "URL": "https://app.meldrx.com/api/fhir/ez_00154", "OrganizationName": "Humble Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00155", + "URL": "https://app.meldrx.com/api/fhir/ez_00155", "OrganizationName": "HUNTINGTON DERMATOLOGY MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00156", + "URL": "https://app.meldrx.com/api/fhir/ez_00156", "OrganizationName": "Illinois Skin Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00157", + "URL": "https://app.meldrx.com/api/fhir/ez_00157", "OrganizationName": "Illustra Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00158", + "URL": "https://app.meldrx.com/api/fhir/ez_00158", "OrganizationName": "Imperial Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00159", + "URL": "https://app.meldrx.com/api/fhir/ez_00159", "OrganizationName": "IMPERIAL DERMATOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00160", + "URL": "https://app.meldrx.com/api/fhir/ez_00160", "OrganizationName": "IndyDerm, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00161", + "URL": "https://app.meldrx.com/api/fhir/ez_00161", "OrganizationName": "Infinity Dermatology NYC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00162", + "URL": "https://app.meldrx.com/api/fhir/ez_00162", "OrganizationName": "INNOVA DERMATOLOGY PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00163", + "URL": "https://app.meldrx.com/api/fhir/ez_00163", "OrganizationName": "INNOVATIVE DERMATOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00164", + "URL": "https://app.meldrx.com/api/fhir/ez_00164", "OrganizationName": "Innovative Wound Healing \u0026 Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00165", + "URL": "https://app.meldrx.com/api/fhir/ez_00165", "OrganizationName": "Inspired Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00166", + "URL": "https://app.meldrx.com/api/fhir/ez_00166", "OrganizationName": "Integrative Skin Care of Mississippi", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00167", + "URL": "https://app.meldrx.com/api/fhir/ez_00167", "OrganizationName": "International Dermatology Limited (TEST)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00168", + "URL": "https://app.meldrx.com/api/fhir/ez_00168", "OrganizationName": "International Dermatology Research", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00169", + "URL": "https://app.meldrx.com/api/fhir/ez_00169", "OrganizationName": "Iowa Dermatology Consultants, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00170", + "URL": "https://app.meldrx.com/api/fhir/ez_00170", "OrganizationName": "Ivy Dermatology Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00171", + "URL": "https://app.meldrx.com/api/fhir/ez_00171", "OrganizationName": "Jacksonville Skin Cancer Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00172", + "URL": "https://app.meldrx.com/api/fhir/ez_00172", "OrganizationName": "Jerdan Dermatology Laser and Aesthetic Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00173", + "URL": "https://app.meldrx.com/api/fhir/ez_00173", "OrganizationName": "Julie Darby-Jett MPAS, PA-C LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00174", + "URL": "https://app.meldrx.com/api/fhir/ez_00174", "OrganizationName": "Kaminska Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00175", + "URL": "https://app.meldrx.com/api/fhir/ez_00175", "OrganizationName": "Keehan Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00176", + "URL": "https://app.meldrx.com/api/fhir/ez_00176", "OrganizationName": "Kendall Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00177", + "URL": "https://app.meldrx.com/api/fhir/ez_00177", "OrganizationName": "Kenneth Beer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00178", + "URL": "https://app.meldrx.com/api/fhir/ez_00178", "OrganizationName": "Kentucky Skin Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00179", + "URL": "https://app.meldrx.com/api/fhir/ez_00179", "OrganizationName": "Key Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00180", + "URL": "https://app.meldrx.com/api/fhir/ez_00180", "OrganizationName": "Keys Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00181", + "URL": "https://app.meldrx.com/api/fhir/ez_00181", "OrganizationName": "Keystone Dermatology Partners, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00182", + "URL": "https://app.meldrx.com/api/fhir/ez_00182", "OrganizationName": "Kindred Hair \u0026 Skin Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00183", + "URL": "https://app.meldrx.com/api/fhir/ez_00183", "OrganizationName": "Kirsch Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00184", + "URL": "https://app.meldrx.com/api/fhir/ez_00184", "OrganizationName": "Laguna Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00185", + "URL": "https://app.meldrx.com/api/fhir/ez_00185", "OrganizationName": "Lakeshore Dermatology Laser \u0026 Medical Spa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00186", + "URL": "https://app.meldrx.com/api/fhir/ez_00186", "OrganizationName": "LARK Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00187", + "URL": "https://app.meldrx.com/api/fhir/ez_00187", "OrganizationName": "Lauring Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00188", + "URL": "https://app.meldrx.com/api/fhir/ez_00188", "OrganizationName": "Lilly Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00189", + "URL": "https://app.meldrx.com/api/fhir/ez_00189", "OrganizationName": "Lincoln Road Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00190", + "URL": "https://app.meldrx.com/api/fhir/ez_00190", "OrganizationName": "Linnell Dermatology and Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00191", + "URL": "https://app.meldrx.com/api/fhir/ez_00191", "OrganizationName": "Live Oak Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00192", + "URL": "https://app.meldrx.com/api/fhir/ez_00192", "OrganizationName": "Love Dermatology \u0026 Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00193", + "URL": "https://app.meldrx.com/api/fhir/ez_00193", "OrganizationName": "Magnolia Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00194", + "URL": "https://app.meldrx.com/api/fhir/ez_00194", "OrganizationName": "Marder Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00195", + "URL": "https://app.meldrx.com/api/fhir/ez_00195", "OrganizationName": "MARK RAY MD DERMATOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00196", + "URL": "https://app.meldrx.com/api/fhir/ez_00196", "OrganizationName": "Maui Skin Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00197", + "URL": "https://app.meldrx.com/api/fhir/ez_00197", "OrganizationName": "M D Aesthetics and Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00198", + "URL": "https://app.meldrx.com/api/fhir/ez_00198", "OrganizationName": "M. Dika Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00199", + "URL": "https://app.meldrx.com/api/fhir/ez_00199", "OrganizationName": "Medical \u0026 Cosmetic Dermatology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00200", + "URL": "https://app.meldrx.com/api/fhir/ez_00200", "OrganizationName": "M. Elena Kendall MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00201", + "URL": "https://app.meldrx.com/api/fhir/ez_00201", "OrganizationName": "Memorial Healthcare Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00202", + "URL": "https://app.meldrx.com/api/fhir/ez_00202", "OrganizationName": "Meridian Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00203", + "URL": "https://app.meldrx.com/api/fhir/ez_00203", "OrganizationName": "Michigan Center for Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00204", + "URL": "https://app.meldrx.com/api/fhir/ez_00204", "OrganizationName": "Mill Valley Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00205", + "URL": "https://app.meldrx.com/api/fhir/ez_00205", "OrganizationName": "MI SKIN CENTER PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00206", + "URL": "https://app.meldrx.com/api/fhir/ez_00206", "OrganizationName": "Mitchell Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00207", + "URL": "https://app.meldrx.com/api/fhir/ez_00207", "OrganizationName": "MOD Dermatology, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00208", + "URL": "https://app.meldrx.com/api/fhir/ez_00208", "OrganizationName": "Modern Dermatology PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00209", + "URL": "https://app.meldrx.com/api/fhir/ez_00209", "OrganizationName": "Monarch Dermatology \u0026 Surgery, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00210", + "URL": "https://app.meldrx.com/api/fhir/ez_00210", "OrganizationName": "Natalie Wright Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00211", + "URL": "https://app.meldrx.com/api/fhir/ez_00211", "OrganizationName": "Natural Beauty Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00212", + "URL": "https://app.meldrx.com/api/fhir/ez_00212", "OrganizationName": "New Bloom Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00213", + "URL": "https://app.meldrx.com/api/fhir/ez_00213", "OrganizationName": "New Jersey Dermatology and Aesthetics Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00214", + "URL": "https://app.meldrx.com/api/fhir/ez_00214", "OrganizationName": "Newsha Dermatology + Cosmetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00215", + "URL": "https://app.meldrx.com/api/fhir/ez_00215", "OrganizationName": "Nola Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00216", + "URL": "https://app.meldrx.com/api/fhir/ez_00216", "OrganizationName": "Northeast Alabama Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00217", + "URL": "https://app.meldrx.com/api/fhir/ez_00217", "OrganizationName": "Northern Oak Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00218", + "URL": "https://app.meldrx.com/api/fhir/ez_00218", "OrganizationName": "North Wales Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00219", + "URL": "https://app.meldrx.com/api/fhir/ez_00219", "OrganizationName": "Nosky P.A. DBA: Annexus \u0026 Daystar Skin and Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00220", + "URL": "https://app.meldrx.com/api/fhir/ez_00220", "OrganizationName": "Nova Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00221", + "URL": "https://app.meldrx.com/api/fhir/ez_00221", "OrganizationName": "Novem Dermatology, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00222", + "URL": "https://app.meldrx.com/api/fhir/ez_00222", "OrganizationName": "Oak City Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00223", + "URL": "https://app.meldrx.com/api/fhir/ez_00223", "OrganizationName": "Oasis Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00224", + "URL": "https://app.meldrx.com/api/fhir/ez_00224", "OrganizationName": "Ocean Skin and Vein Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00225", + "URL": "https://app.meldrx.com/api/fhir/ez_00225", "OrganizationName": "Ocotillo Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00226", + "URL": "https://app.meldrx.com/api/fhir/ez_00226", "OrganizationName": "One \u0026 Only Dermatology and MOHS Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00227", + "URL": "https://app.meldrx.com/api/fhir/ez_00227", "OrganizationName": "On The Spot Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00228", + "URL": "https://app.meldrx.com/api/fhir/ez_00228", "OrganizationName": "Osei-Tutu Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00229", + "URL": "https://app.meldrx.com/api/fhir/ez_00229", "OrganizationName": "Padre Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00230", + "URL": "https://app.meldrx.com/api/fhir/ez_00230", "OrganizationName": "Park Avenue Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00231", + "URL": "https://app.meldrx.com/api/fhir/ez_00231", "OrganizationName": "Patagonia Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00232", + "URL": "https://app.meldrx.com/api/fhir/ez_00232", "OrganizationName": "PC Contard, MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00233", + "URL": "https://app.meldrx.com/api/fhir/ez_00233", "OrganizationName": "Peach Dermatology, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00234", + "URL": "https://app.meldrx.com/api/fhir/ez_00234", "OrganizationName": "Pennsylvania Dermatology Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00235", + "URL": "https://app.meldrx.com/api/fhir/ez_00235", "OrganizationName": "Phoenix Surgical Dermatology Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00236", + "URL": "https://app.meldrx.com/api/fhir/ez_00236", "OrganizationName": "Pierre Jaffe, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00237", + "URL": "https://app.meldrx.com/api/fhir/ez_00237", "OrganizationName": "Pine Island Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00238", + "URL": "https://app.meldrx.com/api/fhir/ez_00238", "OrganizationName": "Premier Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00239", + "URL": "https://app.meldrx.com/api/fhir/ez_00239", "OrganizationName": "Promenades Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00240", + "URL": "https://app.meldrx.com/api/fhir/ez_00240", "OrganizationName": "Proper Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00241", + "URL": "https://app.meldrx.com/api/fhir/ez_00241", "OrganizationName": "RACHEL ABUAV MD MEDICAL CORPORATION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00242", + "URL": "https://app.meldrx.com/api/fhir/ez_00242", "OrganizationName": "Rendon Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00243", + "URL": "https://app.meldrx.com/api/fhir/ez_00243", "OrganizationName": "Renew Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00244", + "URL": "https://app.meldrx.com/api/fhir/ez_00244", "OrganizationName": "Reserve Dermatology \u0026 Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00245", + "URL": "https://app.meldrx.com/api/fhir/ez_00245", "OrganizationName": "Resurrect Skin MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00246", + "URL": "https://app.meldrx.com/api/fhir/ez_00246", "OrganizationName": "Revival Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00247", + "URL": "https://app.meldrx.com/api/fhir/ez_00247", "OrganizationName": "Rhode Island Dermatology and Laser Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00248", + "URL": "https://app.meldrx.com/api/fhir/ez_00248", "OrganizationName": "Riemer Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00249", + "URL": "https://app.meldrx.com/api/fhir/ez_00249", "OrganizationName": "River Oaks Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00250", + "URL": "https://app.meldrx.com/api/fhir/ez_00250", "OrganizationName": "Ronald C. Knipe M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00251", + "URL": "https://app.meldrx.com/api/fhir/ez_00251", "OrganizationName": "RVL SKINCARE, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00252", + "URL": "https://app.meldrx.com/api/fhir/ez_00252", "OrganizationName": "RW Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00253", + "URL": "https://app.meldrx.com/api/fhir/ez_00253", "OrganizationName": "Sacred Heart Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00254", + "URL": "https://app.meldrx.com/api/fhir/ez_00254", "OrganizationName": "Sage Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00255", + "URL": "https://app.meldrx.com/api/fhir/ez_00255", "OrganizationName": "Saguaro Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00256", + "URL": "https://app.meldrx.com/api/fhir/ez_00256", "OrganizationName": "Salt Lake Dermatology and Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00257", + "URL": "https://app.meldrx.com/api/fhir/ez_00257", "OrganizationName": "Sand Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00258", + "URL": "https://app.meldrx.com/api/fhir/ez_00258", "OrganizationName": "Sandia Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00259", + "URL": "https://app.meldrx.com/api/fhir/ez_00259", "OrganizationName": "Schwarz Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00260", + "URL": "https://app.meldrx.com/api/fhir/ez_00260", "OrganizationName": "Shari Marchbein MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00261", + "URL": "https://app.meldrx.com/api/fhir/ez_00261", "OrganizationName": "Sharon A. Stokes, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00262", + "URL": "https://app.meldrx.com/api/fhir/ez_00262", "OrganizationName": "Sherri K. Kaplan, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00263", + "URL": "https://app.meldrx.com/api/fhir/ez_00263", "OrganizationName": "Simply Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00264", + "URL": "https://app.meldrx.com/api/fhir/ez_00264", "OrganizationName": "Sina Rabi MD, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00265", + "URL": "https://app.meldrx.com/api/fhir/ez_00265", "OrganizationName": "Skin Cancer Surgery Center at Plano Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00266", + "URL": "https://app.meldrx.com/api/fhir/ez_00266", "OrganizationName": "Skin Care Experts LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00267", + "URL": "https://app.meldrx.com/api/fhir/ez_00267", "OrganizationName": "Skin Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00268", + "URL": "https://app.meldrx.com/api/fhir/ez_00268", "OrganizationName": "Skin Center of South Miami", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00269", + "URL": "https://app.meldrx.com/api/fhir/ez_00269", "OrganizationName": "SkinDC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00270", + "URL": "https://app.meldrx.com/api/fhir/ez_00270", "OrganizationName": "Skin Dermatology and Cosmetic Services, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00271", + "URL": "https://app.meldrx.com/api/fhir/ez_00271", "OrganizationName": "Skin Essentials Dermatology, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00272", + "URL": "https://app.meldrx.com/api/fhir/ez_00272", "OrganizationName": "Skin Joy Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00273", + "URL": "https://app.meldrx.com/api/fhir/ez_00273", "OrganizationName": "Skin Trust Mohs and Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00274", + "URL": "https://app.meldrx.com/api/fhir/ez_00274", "OrganizationName": "Skin Unlimited, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00275", + "URL": "https://app.meldrx.com/api/fhir/ez_00275", "OrganizationName": "Skin \u0026 Vein Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00276", + "URL": "https://app.meldrx.com/api/fhir/ez_00276", "OrganizationName": "SKIN WIN DERMATOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00277", + "URL": "https://app.meldrx.com/api/fhir/ez_00277", "OrganizationName": "SmithCare Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00278", + "URL": "https://app.meldrx.com/api/fhir/ez_00278", "OrganizationName": "SOCAH Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00279", + "URL": "https://app.meldrx.com/api/fhir/ez_00279", "OrganizationName": "Soh Skin \u0026 Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00280", + "URL": "https://app.meldrx.com/api/fhir/ez_00280", "OrganizationName": "Somerset Skin Centre, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00281", + "URL": "https://app.meldrx.com/api/fhir/ez_00281", "OrganizationName": "Southern Dermatology Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00282", + "URL": "https://app.meldrx.com/api/fhir/ez_00282", "OrganizationName": "Springhouse Dermatology Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00283", + "URL": "https://app.meldrx.com/api/fhir/ez_00283", "OrganizationName": "Square Payments Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00284", + "URL": "https://app.meldrx.com/api/fhir/ez_00284", "OrganizationName": "Stone Ridge Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00285", + "URL": "https://app.meldrx.com/api/fhir/ez_00285", "OrganizationName": "St Petersburg Skin and Laser", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00286", + "URL": "https://app.meldrx.com/api/fhir/ez_00286", "OrganizationName": "Summit Dermatology and Spa, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00287", + "URL": "https://app.meldrx.com/api/fhir/ez_00287", "OrganizationName": "Summit View Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00288", + "URL": "https://app.meldrx.com/api/fhir/ez_00288", "OrganizationName": "SUNSET DERMATOLOGY SKIN, LASER \u0026 VEIN CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00289", + "URL": "https://app.meldrx.com/api/fhir/ez_00289", "OrganizationName": "Sunshine Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00290", + "URL": "https://app.meldrx.com/api/fhir/ez_00290", "OrganizationName": "Surfside/Hillcrest Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00291", + "URL": "https://app.meldrx.com/api/fhir/ez_00291", "OrganizationName": "Sweetwater Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00292", + "URL": "https://app.meldrx.com/api/fhir/ez_00292", "OrganizationName": "Swiftwater Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00293", + "URL": "https://app.meldrx.com/api/fhir/ez_00293", "OrganizationName": "Tanya Kormeili MD APC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00294", + "URL": "https://app.meldrx.com/api/fhir/ez_00294", "OrganizationName": "Taylor Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00295", + "URL": "https://app.meldrx.com/api/fhir/ez_00295", "OrganizationName": "Terrence Cronin, Sr., M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00296", + "URL": "https://app.meldrx.com/api/fhir/ez_00296", "OrganizationName": "Texas Skin and Vein", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00297", + "URL": "https://app.meldrx.com/api/fhir/ez_00297", "OrganizationName": "The Knoxville Center for Dermatology and Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00298", + "URL": "https://app.meldrx.com/api/fhir/ez_00298", "OrganizationName": "Theo Medical Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00299", + "URL": "https://app.meldrx.com/api/fhir/ez_00299", "OrganizationName": "The Skin Docs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00300", + "URL": "https://app.meldrx.com/api/fhir/ez_00300", "OrganizationName": "T.J. GIUFFRIDA, M.D., LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00301", + "URL": "https://app.meldrx.com/api/fhir/ez_00301", "OrganizationName": "Tone Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00302", + "URL": "https://app.meldrx.com/api/fhir/ez_00302", "OrganizationName": "Treasure Valley Dermatology \u0026 Skin Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00303", + "URL": "https://app.meldrx.com/api/fhir/ez_00303", "OrganizationName": "Trieu Dermatology LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00304", + "URL": "https://app.meldrx.com/api/fhir/ez_00304", "OrganizationName": "Trinity Vista Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00305", + "URL": "https://app.meldrx.com/api/fhir/ez_00305", "OrganizationName": "True Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00306", + "URL": "https://app.meldrx.com/api/fhir/ez_00306", "OrganizationName": "True Dermatology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00307", + "URL": "https://app.meldrx.com/api/fhir/ez_00307", "OrganizationName": "Tullahoma Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00308", + "URL": "https://app.meldrx.com/api/fhir/ez_00308", "OrganizationName": "Twin Cities Dermatology Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00309", + "URL": "https://app.meldrx.com/api/fhir/ez_00309", "OrganizationName": "UMG Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00310", + "URL": "https://app.meldrx.com/api/fhir/ez_00310", "OrganizationName": "Valley Dermatology and Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00311", + "URL": "https://app.meldrx.com/api/fhir/ez_00311", "OrganizationName": "Verum Cutis Dermatology, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00312", + "URL": "https://app.meldrx.com/api/fhir/ez_00312", "OrganizationName": "Vibrant Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00313", + "URL": "https://app.meldrx.com/api/fhir/ez_00313", "OrganizationName": "Virginia Skin \u0026 Vein", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00314", + "URL": "https://app.meldrx.com/api/fhir/ez_00314", "OrganizationName": "Virginia Square Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00315", + "URL": "https://app.meldrx.com/api/fhir/ez_00315", "OrganizationName": "Visage Dermatology and Aesthetic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00316", + "URL": "https://app.meldrx.com/api/fhir/ez_00316", "OrganizationName": "Vista Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00317", + "URL": "https://app.meldrx.com/api/fhir/ez_00317", "OrganizationName": "Vital Dermatology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00318", + "URL": "https://app.meldrx.com/api/fhir/ez_00318", "OrganizationName": "VivaSkin Dermatology and Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00319", + "URL": "https://app.meldrx.com/api/fhir/ez_00319", "OrganizationName": "Vivo Dermatology and Skin Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00320", + "URL": "https://app.meldrx.com/api/fhir/ez_00320", "OrganizationName": "Wellskin Dermatology and Aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00321", + "URL": "https://app.meldrx.com/api/fhir/ez_00321", "OrganizationName": "West Oak Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00322", + "URL": "https://app.meldrx.com/api/fhir/ez_00322", "OrganizationName": "Westover Hills Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00323", + "URL": "https://app.meldrx.com/api/fhir/ez_00323", "OrganizationName": "West Texas Dermatology \u0026 Skin Cancer Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00324", + "URL": "https://app.meldrx.com/api/fhir/ez_00324", "OrganizationName": "WILTZDERM LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ez_00325", + "URL": "https://app.meldrx.com/api/fhir/ez_00325", "OrganizationName": "Wolverine Dermatology, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4094", + "URL": "https://app.meldrx.com/api/fhir/paydc_4094", "OrganizationName": "Chamberlain Chiropractic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4096", + "URL": "https://app.meldrx.com/api/fhir/paydc_4096", "OrganizationName": "Mccormick Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4098", + "URL": "https://app.meldrx.com/api/fhir/paydc_4098", "OrganizationName": "Limerick Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4100", + "URL": "https://app.meldrx.com/api/fhir/paydc_4100", "OrganizationName": "Jonny C's Crackin", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4102", + "URL": "https://app.meldrx.com/api/fhir/paydc_4102", "OrganizationName": "Affiliate Demo Subscription", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4104", + "URL": "https://app.meldrx.com/api/fhir/paydc_4104", "OrganizationName": "Prognosis Macros", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4105", + "URL": "https://app.meldrx.com/api/fhir/paydc_4105", "OrganizationName": "Montgomery McCracken Walker and Rhoads", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4107", + "URL": "https://app.meldrx.com/api/fhir/paydc_4107", "OrganizationName": "O'Dell Family Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4109", + "URL": "https://app.meldrx.com/api/fhir/paydc_4109", "OrganizationName": "PAYDCSUPPORT.COM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4111", + "URL": "https://app.meldrx.com/api/fhir/paydc_4111", "OrganizationName": "AlignLife of Bloomington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4112", + "URL": "https://app.meldrx.com/api/fhir/paydc_4112", "OrganizationName": "Ramsour Family Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4140", + "URL": "https://app.meldrx.com/api/fhir/paydc_4140", "OrganizationName": "Sell Chiropractic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4165", + "URL": "https://app.meldrx.com/api/fhir/paydc_4165", "OrganizationName": "Savona Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4233", + "URL": "https://app.meldrx.com/api/fhir/paydc_4233", "OrganizationName": "NW Main Chiropractic, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4273", + "URL": "https://app.meldrx.com/api/fhir/paydc_4273", "OrganizationName": "Dr Cecil Walker", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4283", + "URL": "https://app.meldrx.com/api/fhir/paydc_4283", "OrganizationName": "Rizzo Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4342", + "URL": "https://app.meldrx.com/api/fhir/paydc_4342", "OrganizationName": "The Family Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4351", + "URL": "https://app.meldrx.com/api/fhir/paydc_4351", "OrganizationName": "Blozen Chiropractic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4358", + "URL": "https://app.meldrx.com/api/fhir/paydc_4358", "OrganizationName": "Midtown Place Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4365", + "URL": "https://app.meldrx.com/api/fhir/paydc_4365", "OrganizationName": "Sample Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4366", + "URL": "https://app.meldrx.com/api/fhir/paydc_4366", "OrganizationName": "Kenney Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4376", + "URL": "https://app.meldrx.com/api/fhir/paydc_4376", "OrganizationName": "Bryn Mawr Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4394", + "URL": "https://app.meldrx.com/api/fhir/paydc_4394", "OrganizationName": "Koris Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4415", + "URL": "https://app.meldrx.com/api/fhir/paydc_4415", "OrganizationName": "Harris Chiropractic \u0026 Acupuncture", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4416", + "URL": "https://app.meldrx.com/api/fhir/paydc_4416", "OrganizationName": "Dennis G James Jr DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4452", + "URL": "https://app.meldrx.com/api/fhir/paydc_4452", "OrganizationName": "Levin Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4461", + "URL": "https://app.meldrx.com/api/fhir/paydc_4461", "OrganizationName": "Viking Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4466", + "URL": "https://app.meldrx.com/api/fhir/paydc_4466", "OrganizationName": "Carbondale Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4495", + "URL": "https://app.meldrx.com/api/fhir/paydc_4495", "OrganizationName": "Texas Performance Health Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4515", + "URL": "https://app.meldrx.com/api/fhir/paydc_4515", "OrganizationName": "Johnson Street Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4518", + "URL": "https://app.meldrx.com/api/fhir/paydc_4518", "OrganizationName": "Pequannock Chiropractic Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4520", + "URL": "https://app.meldrx.com/api/fhir/paydc_4520", "OrganizationName": "Daniel Shain", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4522", + "URL": "https://app.meldrx.com/api/fhir/paydc_4522", "OrganizationName": "Botti Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4538", + "URL": "https://app.meldrx.com/api/fhir/paydc_4538", "OrganizationName": "Here for You Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4539", + "URL": "https://app.meldrx.com/api/fhir/paydc_4539", "OrganizationName": "Doctor Daves Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4545", + "URL": "https://app.meldrx.com/api/fhir/paydc_4545", "OrganizationName": "Kuhn Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4547", + "URL": "https://app.meldrx.com/api/fhir/paydc_4547", "OrganizationName": "MPower Chiropractic Wellness Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4549", + "URL": "https://app.meldrx.com/api/fhir/paydc_4549", "OrganizationName": "Combined Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4550", + "URL": "https://app.meldrx.com/api/fhir/paydc_4550", "OrganizationName": "William Thimmel, DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4552", + "URL": "https://app.meldrx.com/api/fhir/paydc_4552", "OrganizationName": "Chiropractic Health Center of Hamburg", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4556", + "URL": "https://app.meldrx.com/api/fhir/paydc_4556", "OrganizationName": "Ray Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4560", + "URL": "https://app.meldrx.com/api/fhir/paydc_4560", "OrganizationName": "Kevin J Holton DC LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4562", + "URL": "https://app.meldrx.com/api/fhir/paydc_4562", "OrganizationName": "Spencer L Hoffman DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4563", + "URL": "https://app.meldrx.com/api/fhir/paydc_4563", "OrganizationName": "Hecht Family Chiropractic Care L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4564", + "URL": "https://app.meldrx.com/api/fhir/paydc_4564", "OrganizationName": "Performance Health and Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4567", + "URL": "https://app.meldrx.com/api/fhir/paydc_4567", "OrganizationName": "Londer Family Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4570", + "URL": "https://app.meldrx.com/api/fhir/paydc_4570", "OrganizationName": "DeFabio Spine and Sports Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4575", + "URL": "https://app.meldrx.com/api/fhir/paydc_4575", "OrganizationName": "Clifton Physicians Healthcare and Injury Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4576", + "URL": "https://app.meldrx.com/api/fhir/paydc_4576", "OrganizationName": "Lamoureux Chiropractic and Allergy Relief Centre", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4578", + "URL": "https://app.meldrx.com/api/fhir/paydc_4578", "OrganizationName": "Robin's Demo", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4579", + "URL": "https://app.meldrx.com/api/fhir/paydc_4579", "OrganizationName": "Happy Day Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4582", + "URL": "https://app.meldrx.com/api/fhir/paydc_4582", "OrganizationName": "C-Schell Chiropractic Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4585", + "URL": "https://app.meldrx.com/api/fhir/paydc_4585", "OrganizationName": "Swede Family Chiropractic - Trappe Office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4587", + "URL": "https://app.meldrx.com/api/fhir/paydc_4587", "OrganizationName": "Corradino Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4595", + "URL": "https://app.meldrx.com/api/fhir/paydc_4595", "OrganizationName": "Good Health Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4597", + "URL": "https://app.meldrx.com/api/fhir/paydc_4597", "OrganizationName": "Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4603", + "URL": "https://app.meldrx.com/api/fhir/paydc_4603", "OrganizationName": "Thorn Run Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4608", + "URL": "https://app.meldrx.com/api/fhir/paydc_4608", "OrganizationName": "Helping Hands Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4611", + "URL": "https://app.meldrx.com/api/fhir/paydc_4611", "OrganizationName": "Lori Wojciechowski DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4614", + "URL": "https://app.meldrx.com/api/fhir/paydc_4614", "OrganizationName": "Shade Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4617", + "URL": "https://app.meldrx.com/api/fhir/paydc_4617", "OrganizationName": "Chiro Plus North, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4620", + "URL": "https://app.meldrx.com/api/fhir/paydc_4620", "OrganizationName": "Dr Richard Healy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4622", + "URL": "https://app.meldrx.com/api/fhir/paydc_4622", "OrganizationName": "Alterman \u0026 Johnson Family Chiropractors", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4629", + "URL": "https://app.meldrx.com/api/fhir/paydc_4629", "OrganizationName": "Dr Christine M Jernee", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4630", + "URL": "https://app.meldrx.com/api/fhir/paydc_4630", "OrganizationName": "Glen Oaks Health \u0026 Spine Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4634", + "URL": "https://app.meldrx.com/api/fhir/paydc_4634", "OrganizationName": "Chiropractic Health and Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4637", + "URL": "https://app.meldrx.com/api/fhir/paydc_4637", "OrganizationName": "NorthStar Chiropractic HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4655", + "URL": "https://app.meldrx.com/api/fhir/paydc_4655", "OrganizationName": "Reservoir Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4659", + "URL": "https://app.meldrx.com/api/fhir/paydc_4659", "OrganizationName": "Pittsford Performance Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4664", + "URL": "https://app.meldrx.com/api/fhir/paydc_4664", "OrganizationName": "Chiropractic Spine Center of Flemington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4668", + "URL": "https://app.meldrx.com/api/fhir/paydc_4668", "OrganizationName": "Agape Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4669", + "URL": "https://app.meldrx.com/api/fhir/paydc_4669", "OrganizationName": "Montgomery Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4673", + "URL": "https://app.meldrx.com/api/fhir/paydc_4673", "OrganizationName": "Siskin Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4675", + "URL": "https://app.meldrx.com/api/fhir/paydc_4675", "OrganizationName": "Georgia Chiropractic Neurology Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4684", + "URL": "https://app.meldrx.com/api/fhir/paydc_4684", "OrganizationName": "Huber Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4688", + "URL": "https://app.meldrx.com/api/fhir/paydc_4688", "OrganizationName": "Spine and Laser Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4695", + "URL": "https://app.meldrx.com/api/fhir/paydc_4695", "OrganizationName": "Chiropractic First PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4696", + "URL": "https://app.meldrx.com/api/fhir/paydc_4696", "OrganizationName": "Corrective Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4698", + "URL": "https://app.meldrx.com/api/fhir/paydc_4698", "OrganizationName": "Dynamic Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4699", + "URL": "https://app.meldrx.com/api/fhir/paydc_4699", "OrganizationName": "Advance Chiropractic Clinic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4700", + "URL": "https://app.meldrx.com/api/fhir/paydc_4700", "OrganizationName": "Wall Chiropractic Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4701", + "URL": "https://app.meldrx.com/api/fhir/paydc_4701", "OrganizationName": "Cardinal Chiropractic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4706", + "URL": "https://app.meldrx.com/api/fhir/paydc_4706", "OrganizationName": "Benedetto Chiropractic Health Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4709", + "URL": "https://app.meldrx.com/api/fhir/paydc_4709", "OrganizationName": "Bergman Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4711", + "URL": "https://app.meldrx.com/api/fhir/paydc_4711", "OrganizationName": "Home Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4712", + "URL": "https://app.meldrx.com/api/fhir/paydc_4712", "OrganizationName": "Kingston Chiropractic Rehab LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4720", + "URL": "https://app.meldrx.com/api/fhir/paydc_4720", "OrganizationName": "Tobin Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4722", + "URL": "https://app.meldrx.com/api/fhir/paydc_4722", "OrganizationName": "CHIROPRACTIC WELLNESS CENTER OF CLIFTON, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4724", + "URL": "https://app.meldrx.com/api/fhir/paydc_4724", "OrganizationName": "Dr Jeffrey M Fitch", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4731", + "URL": "https://app.meldrx.com/api/fhir/paydc_4731", "OrganizationName": "Leon A Mosher Jr DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4732", + "URL": "https://app.meldrx.com/api/fhir/paydc_4732", "OrganizationName": "Moon Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4736", + "URL": "https://app.meldrx.com/api/fhir/paydc_4736", "OrganizationName": "Drummond Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4740", + "URL": "https://app.meldrx.com/api/fhir/paydc_4740", "OrganizationName": "Dr. Gina Marino: Center for the Alignment of Body, Mind and Spirit", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4744", + "URL": "https://app.meldrx.com/api/fhir/paydc_4744", "OrganizationName": "Passaic Family Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4745", + "URL": "https://app.meldrx.com/api/fhir/paydc_4745", "OrganizationName": "WILLIAM A. CARONE, D.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4748", + "URL": "https://app.meldrx.com/api/fhir/paydc_4748", "OrganizationName": "Dr Paul White PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4749", + "URL": "https://app.meldrx.com/api/fhir/paydc_4749", "OrganizationName": "Elmore Chiropractic LLC Craig T Butler II DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4753", + "URL": "https://app.meldrx.com/api/fhir/paydc_4753", "OrganizationName": "West Plains Chiropractic PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4755", + "URL": "https://app.meldrx.com/api/fhir/paydc_4755", "OrganizationName": "Mahoney Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4756", + "URL": "https://app.meldrx.com/api/fhir/paydc_4756", "OrganizationName": "Viewpoint Chiropractic Services PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4757", + "URL": "https://app.meldrx.com/api/fhir/paydc_4757", "OrganizationName": "Brent R Graves DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4758", + "URL": "https://app.meldrx.com/api/fhir/paydc_4758", "OrganizationName": "Donohue Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4760", + "URL": "https://app.meldrx.com/api/fhir/paydc_4760", "OrganizationName": "Farragher Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4766", + "URL": "https://app.meldrx.com/api/fhir/paydc_4766", "OrganizationName": "Fosston Chiropractic Clinic PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4769", + "URL": "https://app.meldrx.com/api/fhir/paydc_4769", "OrganizationName": "Atlantic Coast Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4774", + "URL": "https://app.meldrx.com/api/fhir/paydc_4774", "OrganizationName": "North Texas Spinal Health \u0026 Wellness Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4775", + "URL": "https://app.meldrx.com/api/fhir/paydc_4775", "OrganizationName": "Regenesys Physical Medicine PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4776", + "URL": "https://app.meldrx.com/api/fhir/paydc_4776", "OrganizationName": "Mansfield Spinal Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4777", + "URL": "https://app.meldrx.com/api/fhir/paydc_4777", "OrganizationName": "Ciarrocca Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4782", + "URL": "https://app.meldrx.com/api/fhir/paydc_4782", "OrganizationName": "Advanced Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4789", + "URL": "https://app.meldrx.com/api/fhir/paydc_4789", "OrganizationName": "Waterview Nursing Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4790", + "URL": "https://app.meldrx.com/api/fhir/paydc_4790", "OrganizationName": "Our Gentle Touch Chiropractic of The Bronx", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4791", + "URL": "https://app.meldrx.com/api/fhir/paydc_4791", "OrganizationName": "Nyack Manor", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4792", + "URL": "https://app.meldrx.com/api/fhir/paydc_4792", "OrganizationName": "Monmouth Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4793", + "URL": "https://app.meldrx.com/api/fhir/paydc_4793", "OrganizationName": "Gloucester Manor", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4794", + "URL": "https://app.meldrx.com/api/fhir/paydc_4794", "OrganizationName": "Pine Brook Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4795", + "URL": "https://app.meldrx.com/api/fhir/paydc_4795", "OrganizationName": "Our Gentle Touch Chiropractic of New Jersey", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4796", + "URL": "https://app.meldrx.com/api/fhir/paydc_4796", "OrganizationName": "OGT Chiropractic Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4799", + "URL": "https://app.meldrx.com/api/fhir/paydc_4799", "OrganizationName": "Crawford Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4801", + "URL": "https://app.meldrx.com/api/fhir/paydc_4801", "OrganizationName": "Liebman Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4803", + "URL": "https://app.meldrx.com/api/fhir/paydc_4803", "OrganizationName": "Integrative Chiropractic \u0026 Natural Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4804", + "URL": "https://app.meldrx.com/api/fhir/paydc_4804", "OrganizationName": "Neighborhood Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4807", + "URL": "https://app.meldrx.com/api/fhir/paydc_4807", "OrganizationName": "Carolina's Spine and Sports Treatment Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4815", + "URL": "https://app.meldrx.com/api/fhir/paydc_4815", "OrganizationName": "Simi Spine and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4816", + "URL": "https://app.meldrx.com/api/fhir/paydc_4816", "OrganizationName": "Delfine and Hiles Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4820", + "URL": "https://app.meldrx.com/api/fhir/paydc_4820", "OrganizationName": "Integrity Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4821", + "URL": "https://app.meldrx.com/api/fhir/paydc_4821", "OrganizationName": "Taschler Spine \u0026 Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4822", + "URL": "https://app.meldrx.com/api/fhir/paydc_4822", "OrganizationName": "AnyBody Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4827", + "URL": "https://app.meldrx.com/api/fhir/paydc_4827", "OrganizationName": "Family ChiroCare SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4828", + "URL": "https://app.meldrx.com/api/fhir/paydc_4828", "OrganizationName": "Crossroads Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4829", + "URL": "https://app.meldrx.com/api/fhir/paydc_4829", "OrganizationName": "Advanced Clinical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4830", + "URL": "https://app.meldrx.com/api/fhir/paydc_4830", "OrganizationName": "Valley Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4831", + "URL": "https://app.meldrx.com/api/fhir/paydc_4831", "OrganizationName": "Stout-Henrichs Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4832", + "URL": "https://app.meldrx.com/api/fhir/paydc_4832", "OrganizationName": "Advanced Chiropractic \u0026 Spine Center of New Britain", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4836", + "URL": "https://app.meldrx.com/api/fhir/paydc_4836", "OrganizationName": "Chiromedic Services of NMB Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4837", + "URL": "https://app.meldrx.com/api/fhir/paydc_4837", "OrganizationName": "Gary W Hall Chiropractic Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4839", + "URL": "https://app.meldrx.com/api/fhir/paydc_4839", "OrganizationName": "Chiropractic Wellness and Rehabilitation Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4846", + "URL": "https://app.meldrx.com/api/fhir/paydc_4846", "OrganizationName": "Chiropractic Wellness \u0026 Rehabilitation Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4847", + "URL": "https://app.meldrx.com/api/fhir/paydc_4847", "OrganizationName": "Booth Chiropractic Health and Rehabilitation LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4848", + "URL": "https://app.meldrx.com/api/fhir/paydc_4848", "OrganizationName": "Ludwig Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4850", + "URL": "https://app.meldrx.com/api/fhir/paydc_4850", "OrganizationName": "Daniel T Cocks Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4852", + "URL": "https://app.meldrx.com/api/fhir/paydc_4852", "OrganizationName": "True Health Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4853", + "URL": "https://app.meldrx.com/api/fhir/paydc_4853", "OrganizationName": "Lookout Valley Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4858", + "URL": "https://app.meldrx.com/api/fhir/paydc_4858", "OrganizationName": "GLENN W WECKEL DC INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4862", + "URL": "https://app.meldrx.com/api/fhir/paydc_4862", "OrganizationName": "Meeker Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4863", + "URL": "https://app.meldrx.com/api/fhir/paydc_4863", "OrganizationName": "Dr Robert T Buis", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4867", + "URL": "https://app.meldrx.com/api/fhir/paydc_4867", "OrganizationName": "Dr Krawchuk PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4872", + "URL": "https://app.meldrx.com/api/fhir/paydc_4872", "OrganizationName": "Touchpoint Integrative Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4874", + "URL": "https://app.meldrx.com/api/fhir/paydc_4874", "OrganizationName": "Covered Bridge Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4876", + "URL": "https://app.meldrx.com/api/fhir/paydc_4876", "OrganizationName": "Chiro Plus Clinics SW Office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4878", + "URL": "https://app.meldrx.com/api/fhir/paydc_4878", "OrganizationName": "Midwest Multicare SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4882", + "URL": "https://app.meldrx.com/api/fhir/paydc_4882", "OrganizationName": "Spine and Healthcare Center of Elizabeth", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4883", + "URL": "https://app.meldrx.com/api/fhir/paydc_4883", "OrganizationName": "Spine and Healthcare Center of the Plainfields", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4884", + "URL": "https://app.meldrx.com/api/fhir/paydc_4884", "OrganizationName": "Essex Valley Spine \u0026 Healthcare Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4886", + "URL": "https://app.meldrx.com/api/fhir/paydc_4886", "OrganizationName": "McArdle Chiropractic and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4888", + "URL": "https://app.meldrx.com/api/fhir/paydc_4888", "OrganizationName": "Performance Chiropractic \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4892", + "URL": "https://app.meldrx.com/api/fhir/paydc_4892", "OrganizationName": "Elmwood Orthopedic Rehab Center Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4894", + "URL": "https://app.meldrx.com/api/fhir/paydc_4894", "OrganizationName": "Adjust Your Fitness Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4897", + "URL": "https://app.meldrx.com/api/fhir/paydc_4897", "OrganizationName": "Conway Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4902", + "URL": "https://app.meldrx.com/api/fhir/paydc_4902", "OrganizationName": "Milligan Chiropractic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4904", + "URL": "https://app.meldrx.com/api/fhir/paydc_4904", "OrganizationName": "Gallagher Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4907", + "URL": "https://app.meldrx.com/api/fhir/paydc_4907", "OrganizationName": "Ultimate Performance Chiro and Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4908", + "URL": "https://app.meldrx.com/api/fhir/paydc_4908", "OrganizationName": "Back to Wellness Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4911", + "URL": "https://app.meldrx.com/api/fhir/paydc_4911", "OrganizationName": "Alpine Chiropractic and Decompression LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4913", + "URL": "https://app.meldrx.com/api/fhir/paydc_4913", "OrganizationName": "Dawn of Health Chiropractic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4918", + "URL": "https://app.meldrx.com/api/fhir/paydc_4918", "OrganizationName": "Milpitas Spine Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4926", + "URL": "https://app.meldrx.com/api/fhir/paydc_4926", "OrganizationName": "Health in Hand PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4927", + "URL": "https://app.meldrx.com/api/fhir/paydc_4927", "OrganizationName": "LaRocca Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4930", + "URL": "https://app.meldrx.com/api/fhir/paydc_4930", "OrganizationName": "Dr. Chad L Barber, D.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4931", + "URL": "https://app.meldrx.com/api/fhir/paydc_4931", "OrganizationName": "Belle Fourche Family Chiropractic Prof LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4933", + "URL": "https://app.meldrx.com/api/fhir/paydc_4933", "OrganizationName": "HS Triad LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4938", + "URL": "https://app.meldrx.com/api/fhir/paydc_4938", "OrganizationName": "Prince Chiropractic Wellness Center PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4942", + "URL": "https://app.meldrx.com/api/fhir/paydc_4942", "OrganizationName": "Advantage Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4949", + "URL": "https://app.meldrx.com/api/fhir/paydc_4949", "OrganizationName": "Health Center of Hillsborough", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4953", + "URL": "https://app.meldrx.com/api/fhir/paydc_4953", "OrganizationName": "Stanley Family Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4954", + "URL": "https://app.meldrx.com/api/fhir/paydc_4954", "OrganizationName": "Jacobson Sports Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4956", + "URL": "https://app.meldrx.com/api/fhir/paydc_4956", "OrganizationName": "Berger Chiropractic Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4957", + "URL": "https://app.meldrx.com/api/fhir/paydc_4957", "OrganizationName": "Fairview Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4958", + "URL": "https://app.meldrx.com/api/fhir/paydc_4958", "OrganizationName": "Prough Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4964", + "URL": "https://app.meldrx.com/api/fhir/paydc_4964", "OrganizationName": "Affordable Chiropractic Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4966", + "URL": "https://app.meldrx.com/api/fhir/paydc_4966", "OrganizationName": "Preston Chiropractic and Rehab LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4967", + "URL": "https://app.meldrx.com/api/fhir/paydc_4967", "OrganizationName": "Shelby County Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4968", + "URL": "https://app.meldrx.com/api/fhir/paydc_4968", "OrganizationName": "Crestwood Chiropractic Group PSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4975", + "URL": "https://app.meldrx.com/api/fhir/paydc_4975", "OrganizationName": "Rowan Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4981", + "URL": "https://app.meldrx.com/api/fhir/paydc_4981", "OrganizationName": "Chiropractic Family Practice, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4982", + "URL": "https://app.meldrx.com/api/fhir/paydc_4982", "OrganizationName": "Chiropractic Evolved", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4985", + "URL": "https://app.meldrx.com/api/fhir/paydc_4985", "OrganizationName": "Mohr Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4991", + "URL": "https://app.meldrx.com/api/fhir/paydc_4991", "OrganizationName": "Purvis Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4995", + "URL": "https://app.meldrx.com/api/fhir/paydc_4995", "OrganizationName": "Associates in Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_4999", + "URL": "https://app.meldrx.com/api/fhir/paydc_4999", "OrganizationName": "Stevan H Elliott DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5002", + "URL": "https://app.meldrx.com/api/fhir/paydc_5002", "OrganizationName": "Blackledge Family Chiropractic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5003", + "URL": "https://app.meldrx.com/api/fhir/paydc_5003", "OrganizationName": "Accident and Injury Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5010", + "URL": "https://app.meldrx.com/api/fhir/paydc_5010", "OrganizationName": "Hoctor Chiropractic and Family Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5013", + "URL": "https://app.meldrx.com/api/fhir/paydc_5013", "OrganizationName": "A J Linn Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5014", + "URL": "https://app.meldrx.com/api/fhir/paydc_5014", "OrganizationName": "Dr Brett A Wartenberg PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5023", + "URL": "https://app.meldrx.com/api/fhir/paydc_5023", "OrganizationName": "Crossroads Health Group PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5024", + "URL": "https://app.meldrx.com/api/fhir/paydc_5024", "OrganizationName": "Madnick Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5028", + "URL": "https://app.meldrx.com/api/fhir/paydc_5028", "OrganizationName": "Complete Chiropractic of Union", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5030", + "URL": "https://app.meldrx.com/api/fhir/paydc_5030", "OrganizationName": "East Penn Chiropractic \u0026 Healing Arts Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5031", + "URL": "https://app.meldrx.com/api/fhir/paydc_5031", "OrganizationName": "Mountaintop Chiropractic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5033", + "URL": "https://app.meldrx.com/api/fhir/paydc_5033", "OrganizationName": "Wellness Quest Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5034", + "URL": "https://app.meldrx.com/api/fhir/paydc_5034", "OrganizationName": "Andersen Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5040", + "URL": "https://app.meldrx.com/api/fhir/paydc_5040", "OrganizationName": "James A DiMattia DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5048", + "URL": "https://app.meldrx.com/api/fhir/paydc_5048", "OrganizationName": "Brash Chiropractic \u0026 Massage LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5050", + "URL": "https://app.meldrx.com/api/fhir/paydc_5050", "OrganizationName": "UNANIMOUS CHIROPRACTIC INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5056", + "URL": "https://app.meldrx.com/api/fhir/paydc_5056", "OrganizationName": "Apple Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5057", + "URL": "https://app.meldrx.com/api/fhir/paydc_5057", "OrganizationName": "Total Body Chiropractic Pc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5058", + "URL": "https://app.meldrx.com/api/fhir/paydc_5058", "OrganizationName": "Total Health Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5060", + "URL": "https://app.meldrx.com/api/fhir/paydc_5060", "OrganizationName": "BAZZANI CHIROPRACTIC MANCHESTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5062", + "URL": "https://app.meldrx.com/api/fhir/paydc_5062", "OrganizationName": "Berry Chiropractic Office PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5063", + "URL": "https://app.meldrx.com/api/fhir/paydc_5063", "OrganizationName": "Craig Ranch Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5070", + "URL": "https://app.meldrx.com/api/fhir/paydc_5070", "OrganizationName": "Willow Lake Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5072", + "URL": "https://app.meldrx.com/api/fhir/paydc_5072", "OrganizationName": "Northern Chiropractic Pain Relief \u0026 Injury Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5073", + "URL": "https://app.meldrx.com/api/fhir/paydc_5073", "OrganizationName": "GARDEN STATE CHIROPRACTIC LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5076", + "URL": "https://app.meldrx.com/api/fhir/paydc_5076", "OrganizationName": "Hampstead Chiropractic Office PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5077", + "URL": "https://app.meldrx.com/api/fhir/paydc_5077", "OrganizationName": "Frigiola and Meier", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5078", + "URL": "https://app.meldrx.com/api/fhir/paydc_5078", "OrganizationName": "Jersey Shore Chiropractic Cntr LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5080", + "URL": "https://app.meldrx.com/api/fhir/paydc_5080", "OrganizationName": "Cardinal Chiropractic and Sports Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5085", + "URL": "https://app.meldrx.com/api/fhir/paydc_5085", "OrganizationName": "Citrin Chiropractic Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5092", + "URL": "https://app.meldrx.com/api/fhir/paydc_5092", "OrganizationName": "Holtz Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5097", + "URL": "https://app.meldrx.com/api/fhir/paydc_5097", "OrganizationName": "Richard C Healy DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5102", + "URL": "https://app.meldrx.com/api/fhir/paydc_5102", "OrganizationName": "950 cross llc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5103", + "URL": "https://app.meldrx.com/api/fhir/paydc_5103", "OrganizationName": "Back and Body Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5104", + "URL": "https://app.meldrx.com/api/fhir/paydc_5104", "OrganizationName": "Healing Arts Center for Chiropractic Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5106", + "URL": "https://app.meldrx.com/api/fhir/paydc_5106", "OrganizationName": "Foster Family and Sports Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5107", + "URL": "https://app.meldrx.com/api/fhir/paydc_5107", "OrganizationName": "Thomas J Clayton DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5110", + "URL": "https://app.meldrx.com/api/fhir/paydc_5110", "OrganizationName": "John Ryan Price DC PA DBA Premier Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5113", + "URL": "https://app.meldrx.com/api/fhir/paydc_5113", "OrganizationName": "Pine Beach Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5115", + "URL": "https://app.meldrx.com/api/fhir/paydc_5115", "OrganizationName": "Pure Health LLC- MPLS Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5116", + "URL": "https://app.meldrx.com/api/fhir/paydc_5116", "OrganizationName": "Don S Cooper DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5117", + "URL": "https://app.meldrx.com/api/fhir/paydc_5117", "OrganizationName": "Bradley J McAdam DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5118", + "URL": "https://app.meldrx.com/api/fhir/paydc_5118", "OrganizationName": "Living Healthy Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5119", + "URL": "https://app.meldrx.com/api/fhir/paydc_5119", "OrganizationName": "Sugar Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5120", + "URL": "https://app.meldrx.com/api/fhir/paydc_5120", "OrganizationName": "Matthew Haglund, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5121", + "URL": "https://app.meldrx.com/api/fhir/paydc_5121", "OrganizationName": "Bedminster Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5124", + "URL": "https://app.meldrx.com/api/fhir/paydc_5124", "OrganizationName": "Jonihakis Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5127", + "URL": "https://app.meldrx.com/api/fhir/paydc_5127", "OrganizationName": "Woodville Professional Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5129", + "URL": "https://app.meldrx.com/api/fhir/paydc_5129", "OrganizationName": "Braden Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5130", + "URL": "https://app.meldrx.com/api/fhir/paydc_5130", "OrganizationName": "Chirocenter", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5131", + "URL": "https://app.meldrx.com/api/fhir/paydc_5131", "OrganizationName": "Durbin Chiropractic \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5135", + "URL": "https://app.meldrx.com/api/fhir/paydc_5135", "OrganizationName": "Ellen Thomas Chiropractic Physician, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5136", + "URL": "https://app.meldrx.com/api/fhir/paydc_5136", "OrganizationName": "Colacurcio Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5142", + "URL": "https://app.meldrx.com/api/fhir/paydc_5142", "OrganizationName": "Lake Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5143", + "URL": "https://app.meldrx.com/api/fhir/paydc_5143", "OrganizationName": "Jeremy M Gordon DC PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5146", + "URL": "https://app.meldrx.com/api/fhir/paydc_5146", "OrganizationName": "Central Virginia Chiropractic Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5148", + "URL": "https://app.meldrx.com/api/fhir/paydc_5148", "OrganizationName": "Petito Ross Chiropractic Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5151", + "URL": "https://app.meldrx.com/api/fhir/paydc_5151", "OrganizationName": "ROSELAND SPINAL REHAB CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5153", + "URL": "https://app.meldrx.com/api/fhir/paydc_5153", "OrganizationName": "Magee Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5154", + "URL": "https://app.meldrx.com/api/fhir/paydc_5154", "OrganizationName": "Arrowhead Clinics Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5155", + "URL": "https://app.meldrx.com/api/fhir/paydc_5155", "OrganizationName": "Harry W Brown, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5156", + "URL": "https://app.meldrx.com/api/fhir/paydc_5156", "OrganizationName": "Southeast Georgia Injury Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5157", + "URL": "https://app.meldrx.com/api/fhir/paydc_5157", "OrganizationName": "Chiropractic Associates of New Albany", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5158", + "URL": "https://app.meldrx.com/api/fhir/paydc_5158", "OrganizationName": "Kang Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5159", + "URL": "https://app.meldrx.com/api/fhir/paydc_5159", "OrganizationName": "Core Spine \u0026 Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5166", + "URL": "https://app.meldrx.com/api/fhir/paydc_5166", "OrganizationName": "Core Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5167", + "URL": "https://app.meldrx.com/api/fhir/paydc_5167", "OrganizationName": "Beutel Chiropractic \u0026 Wellness Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5168", + "URL": "https://app.meldrx.com/api/fhir/paydc_5168", "OrganizationName": "Bruns Chiropractic Office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5173", + "URL": "https://app.meldrx.com/api/fhir/paydc_5173", "OrganizationName": "Lee Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5175", + "URL": "https://app.meldrx.com/api/fhir/paydc_5175", "OrganizationName": "Marco Chiropractic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5176", + "URL": "https://app.meldrx.com/api/fhir/paydc_5176", "OrganizationName": "Yoder Chiropractic Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5179", + "URL": "https://app.meldrx.com/api/fhir/paydc_5179", "OrganizationName": "Siegel Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5181", + "URL": "https://app.meldrx.com/api/fhir/paydc_5181", "OrganizationName": "Ackerman Chiropractic Services PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5182", + "URL": "https://app.meldrx.com/api/fhir/paydc_5182", "OrganizationName": "Toledo Injury Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5184", + "URL": "https://app.meldrx.com/api/fhir/paydc_5184", "OrganizationName": "Morrone Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5185", + "URL": "https://app.meldrx.com/api/fhir/paydc_5185", "OrganizationName": "Dr Michael J Marco Chiropractor", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5186", + "URL": "https://app.meldrx.com/api/fhir/paydc_5186", "OrganizationName": "Zimmerman Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5188", + "URL": "https://app.meldrx.com/api/fhir/paydc_5188", "OrganizationName": "Precision MRI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5192", + "URL": "https://app.meldrx.com/api/fhir/paydc_5192", "OrganizationName": "Gregory Wilson, DC, ICCSP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5193", + "URL": "https://app.meldrx.com/api/fhir/paydc_5193", "OrganizationName": "Sell Chiropractic P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5196", + "URL": "https://app.meldrx.com/api/fhir/paydc_5196", "OrganizationName": "Nancy E Brand DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5199", + "URL": "https://app.meldrx.com/api/fhir/paydc_5199", "OrganizationName": "Active Health Ltd", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5207", + "URL": "https://app.meldrx.com/api/fhir/paydc_5207", "OrganizationName": "Reister Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5209", + "URL": "https://app.meldrx.com/api/fhir/paydc_5209", "OrganizationName": "Haring Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5211", + "URL": "https://app.meldrx.com/api/fhir/paydc_5211", "OrganizationName": "Spine and Healthcare Center of the Amboys", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5216", + "URL": "https://app.meldrx.com/api/fhir/paydc_5216", "OrganizationName": "Ackerman \u0026 Hershman Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5223", + "URL": "https://app.meldrx.com/api/fhir/paydc_5223", "OrganizationName": "NJ Center for Health and Healing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5224", + "URL": "https://app.meldrx.com/api/fhir/paydc_5224", "OrganizationName": "Chiromed Plus, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5230", + "URL": "https://app.meldrx.com/api/fhir/paydc_5230", "OrganizationName": "Atlantic Brigantine Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5233", + "URL": "https://app.meldrx.com/api/fhir/paydc_5233", "OrganizationName": "Valrico Spine and Rehab Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5234", + "URL": "https://app.meldrx.com/api/fhir/paydc_5234", "OrganizationName": "Klemm Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5235", + "URL": "https://app.meldrx.com/api/fhir/paydc_5235", "OrganizationName": "Horton Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5236", + "URL": "https://app.meldrx.com/api/fhir/paydc_5236", "OrganizationName": "Westford Family Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5237", + "URL": "https://app.meldrx.com/api/fhir/paydc_5237", "OrganizationName": "Richard H Marzo, D.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5238", + "URL": "https://app.meldrx.com/api/fhir/paydc_5238", "OrganizationName": "Moore Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5239", + "URL": "https://app.meldrx.com/api/fhir/paydc_5239", "OrganizationName": "Family Wellness Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5240", + "URL": "https://app.meldrx.com/api/fhir/paydc_5240", "OrganizationName": "Due West Chiropractic and Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5241", + "URL": "https://app.meldrx.com/api/fhir/paydc_5241", "OrganizationName": "Dr. Donnie Novak, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5242", + "URL": "https://app.meldrx.com/api/fhir/paydc_5242", "OrganizationName": "ATLAS Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5243", + "URL": "https://app.meldrx.com/api/fhir/paydc_5243", "OrganizationName": "Stockton Hill Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5245", + "URL": "https://app.meldrx.com/api/fhir/paydc_5245", "OrganizationName": "Dr Renee Gehrig", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5248", + "URL": "https://app.meldrx.com/api/fhir/paydc_5248", "OrganizationName": "Honest Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5249", + "URL": "https://app.meldrx.com/api/fhir/paydc_5249", "OrganizationName": "Spinal Healthcare \u0026 Physical Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5251", + "URL": "https://app.meldrx.com/api/fhir/paydc_5251", "OrganizationName": "Nesnick Family \u0026 Sports Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5253", + "URL": "https://app.meldrx.com/api/fhir/paydc_5253", "OrganizationName": "Benjamin S Buelter DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5254", + "URL": "https://app.meldrx.com/api/fhir/paydc_5254", "OrganizationName": "Shelby Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5255", + "URL": "https://app.meldrx.com/api/fhir/paydc_5255", "OrganizationName": "Kassandra Walkowiak DBA Optimal Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5256", + "URL": "https://app.meldrx.com/api/fhir/paydc_5256", "OrganizationName": "Darby Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5259", + "URL": "https://app.meldrx.com/api/fhir/paydc_5259", "OrganizationName": "Granite Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5263", + "URL": "https://app.meldrx.com/api/fhir/paydc_5263", "OrganizationName": "Erichsen Chiropractic \u0026 Family Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5273", + "URL": "https://app.meldrx.com/api/fhir/paydc_5273", "OrganizationName": "Wilkes Barre Scranton Chiro and Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5275", + "URL": "https://app.meldrx.com/api/fhir/paydc_5275", "OrganizationName": "Arrowhead Clinic of Tennessee, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5277", + "URL": "https://app.meldrx.com/api/fhir/paydc_5277", "OrganizationName": "Agave Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5283", + "URL": "https://app.meldrx.com/api/fhir/paydc_5283", "OrganizationName": "Gasdorf Family Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5284", + "URL": "https://app.meldrx.com/api/fhir/paydc_5284", "OrganizationName": "Freedom Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5289", + "URL": "https://app.meldrx.com/api/fhir/paydc_5289", "OrganizationName": "Stephen C Jackson DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5290", + "URL": "https://app.meldrx.com/api/fhir/paydc_5290", "OrganizationName": "Page Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5296", + "URL": "https://app.meldrx.com/api/fhir/paydc_5296", "OrganizationName": "PBS Demo", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5300", + "URL": "https://app.meldrx.com/api/fhir/paydc_5300", "OrganizationName": "Christopher Grose Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5301", + "URL": "https://app.meldrx.com/api/fhir/paydc_5301", "OrganizationName": "East Wind Healthcare SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5304", + "URL": "https://app.meldrx.com/api/fhir/paydc_5304", "OrganizationName": "PBS Demo 2", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5306", + "URL": "https://app.meldrx.com/api/fhir/paydc_5306", "OrganizationName": "Chiropractic for Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5311", + "URL": "https://app.meldrx.com/api/fhir/paydc_5311", "OrganizationName": "Spinal Healthcare \u0026 Physical Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5314", + "URL": "https://app.meldrx.com/api/fhir/paydc_5314", "OrganizationName": "Paciorek Enterprises LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5315", + "URL": "https://app.meldrx.com/api/fhir/paydc_5315", "OrganizationName": "Dr Kimberly Trainer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5318", + "URL": "https://app.meldrx.com/api/fhir/paydc_5318", "OrganizationName": "Integrated Care Clinics PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5319", + "URL": "https://app.meldrx.com/api/fhir/paydc_5319", "OrganizationName": "Wyckoff Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5321", + "URL": "https://app.meldrx.com/api/fhir/paydc_5321", "OrganizationName": "Dr Jack Atzmon DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5329", + "URL": "https://app.meldrx.com/api/fhir/paydc_5329", "OrganizationName": "Nesbit Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5336", + "URL": "https://app.meldrx.com/api/fhir/paydc_5336", "OrganizationName": "Ellis Health Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5337", + "URL": "https://app.meldrx.com/api/fhir/paydc_5337", "OrganizationName": "Upper Perk Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5338", + "URL": "https://app.meldrx.com/api/fhir/paydc_5338", "OrganizationName": "Ortho-One LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5342", + "URL": "https://app.meldrx.com/api/fhir/paydc_5342", "OrganizationName": "Valcourt Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5345", + "URL": "https://app.meldrx.com/api/fhir/paydc_5345", "OrganizationName": "Current River Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5356", + "URL": "https://app.meldrx.com/api/fhir/paydc_5356", "OrganizationName": "Wagner Chiropractic and Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5361", + "URL": "https://app.meldrx.com/api/fhir/paydc_5361", "OrganizationName": "Caldwell Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5362", + "URL": "https://app.meldrx.com/api/fhir/paydc_5362", "OrganizationName": "Paulding Spinal Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5363", + "URL": "https://app.meldrx.com/api/fhir/paydc_5363", "OrganizationName": "Chiroplus of Locust Lane", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5364", + "URL": "https://app.meldrx.com/api/fhir/paydc_5364", "OrganizationName": "Align Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5365", + "URL": "https://app.meldrx.com/api/fhir/paydc_5365", "OrganizationName": "Olivetti Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5366", + "URL": "https://app.meldrx.com/api/fhir/paydc_5366", "OrganizationName": "Salisbury Musculoskeletal Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5372", + "URL": "https://app.meldrx.com/api/fhir/paydc_5372", "OrganizationName": "Lifetime Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5374", + "URL": "https://app.meldrx.com/api/fhir/paydc_5374", "OrganizationName": "Keystone State Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5377", + "URL": "https://app.meldrx.com/api/fhir/paydc_5377", "OrganizationName": "Mark P Pandolfo DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5378", + "URL": "https://app.meldrx.com/api/fhir/paydc_5378", "OrganizationName": "Advanced Compliance Technologies", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5380", + "URL": "https://app.meldrx.com/api/fhir/paydc_5380", "OrganizationName": "Lafayette Hilltop Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5382", + "URL": "https://app.meldrx.com/api/fhir/paydc_5382", "OrganizationName": "Pike Creek Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5386", + "URL": "https://app.meldrx.com/api/fhir/paydc_5386", "OrganizationName": "Merritt Chiropractic Office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5395", + "URL": "https://app.meldrx.com/api/fhir/paydc_5395", "OrganizationName": "Ulery Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5396", + "URL": "https://app.meldrx.com/api/fhir/paydc_5396", "OrganizationName": "KTSDC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5399", + "URL": "https://app.meldrx.com/api/fhir/paydc_5399", "OrganizationName": "Keebler Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5403", + "URL": "https://app.meldrx.com/api/fhir/paydc_5403", "OrganizationName": "Sean English Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5404", + "URL": "https://app.meldrx.com/api/fhir/paydc_5404", "OrganizationName": "Kettering Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5406", + "URL": "https://app.meldrx.com/api/fhir/paydc_5406", "OrganizationName": "Premier Physical Medicine PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5413", + "URL": "https://app.meldrx.com/api/fhir/paydc_5413", "OrganizationName": "Garnet Valley Sport and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5416", + "URL": "https://app.meldrx.com/api/fhir/paydc_5416", "OrganizationName": "Atlantis Physical Therapy Group, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5419", + "URL": "https://app.meldrx.com/api/fhir/paydc_5419", "OrganizationName": "Corrado Chiropractic and Rehabilitation Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5420", + "URL": "https://app.meldrx.com/api/fhir/paydc_5420", "OrganizationName": "The Wellness Group of Maricopa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5424", + "URL": "https://app.meldrx.com/api/fhir/paydc_5424", "OrganizationName": "New Path Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5427", + "URL": "https://app.meldrx.com/api/fhir/paydc_5427", "OrganizationName": "Metro Atlanta Injury \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5434", + "URL": "https://app.meldrx.com/api/fhir/paydc_5434", "OrganizationName": "Transformative Medical Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5443", + "URL": "https://app.meldrx.com/api/fhir/paydc_5443", "OrganizationName": "Dr Heather L Ledford PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5444", + "URL": "https://app.meldrx.com/api/fhir/paydc_5444", "OrganizationName": "Kamms Corners Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5445", + "URL": "https://app.meldrx.com/api/fhir/paydc_5445", "OrganizationName": "Lighthouse Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5446", + "URL": "https://app.meldrx.com/api/fhir/paydc_5446", "OrganizationName": "Kobliska Chiropractic PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5447", + "URL": "https://app.meldrx.com/api/fhir/paydc_5447", "OrganizationName": "Wilbanks Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5449", + "URL": "https://app.meldrx.com/api/fhir/paydc_5449", "OrganizationName": "Anderson Family Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5450", + "URL": "https://app.meldrx.com/api/fhir/paydc_5450", "OrganizationName": "Northern Kentucky Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5451", + "URL": "https://app.meldrx.com/api/fhir/paydc_5451", "OrganizationName": "Midtown Chiropractic \u0026 Acupuncture", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5452", + "URL": "https://app.meldrx.com/api/fhir/paydc_5452", "OrganizationName": "Dizon Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5455", + "URL": "https://app.meldrx.com/api/fhir/paydc_5455", "OrganizationName": "KJ Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5456", + "URL": "https://app.meldrx.com/api/fhir/paydc_5456", "OrganizationName": "Epstein Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5457", + "URL": "https://app.meldrx.com/api/fhir/paydc_5457", "OrganizationName": "Piedmont Injury and Rehab-Stockbridge", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5462", + "URL": "https://app.meldrx.com/api/fhir/paydc_5462", "OrganizationName": "American Spine and Joint", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5465", + "URL": "https://app.meldrx.com/api/fhir/paydc_5465", "OrganizationName": "Condon Chiropractic Clinics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5467", + "URL": "https://app.meldrx.com/api/fhir/paydc_5467", "OrganizationName": "SIEGEL CHIROPRACTIC CENTER, INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5469", + "URL": "https://app.meldrx.com/api/fhir/paydc_5469", "OrganizationName": "Spinal Rehab Network, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5470", + "URL": "https://app.meldrx.com/api/fhir/paydc_5470", "OrganizationName": "Keystone Health and Wellness Center Inc CBD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5471", + "URL": "https://app.meldrx.com/api/fhir/paydc_5471", "OrganizationName": "Northrock Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5478", + "URL": "https://app.meldrx.com/api/fhir/paydc_5478", "OrganizationName": "Grandview Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5479", + "URL": "https://app.meldrx.com/api/fhir/paydc_5479", "OrganizationName": "Alluvium Chiropractic Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5480", + "URL": "https://app.meldrx.com/api/fhir/paydc_5480", "OrganizationName": "Dodge City Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5489", + "URL": "https://app.meldrx.com/api/fhir/paydc_5489", "OrganizationName": "Chris Peechatka Corrective Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5494", + "URL": "https://app.meldrx.com/api/fhir/paydc_5494", "OrganizationName": "Mid-Atlantic Chiropractic Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5495", + "URL": "https://app.meldrx.com/api/fhir/paydc_5495", "OrganizationName": "Vogelgesang Family Chiropractic. Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5497", + "URL": "https://app.meldrx.com/api/fhir/paydc_5497", "OrganizationName": "Barnewolt and Barnewolt Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5498", + "URL": "https://app.meldrx.com/api/fhir/paydc_5498", "OrganizationName": "Health Chiropractic Rehabilitation Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5502", + "URL": "https://app.meldrx.com/api/fhir/paydc_5502", "OrganizationName": "Webster Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5503", + "URL": "https://app.meldrx.com/api/fhir/paydc_5503", "OrganizationName": "Advantage Health \u0026 Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5504", + "URL": "https://app.meldrx.com/api/fhir/paydc_5504", "OrganizationName": "Short Hills Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5518", + "URL": "https://app.meldrx.com/api/fhir/paydc_5518", "OrganizationName": "Garrett Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5521", + "URL": "https://app.meldrx.com/api/fhir/paydc_5521", "OrganizationName": "The Spine and Health Center of Jersey City", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5523", + "URL": "https://app.meldrx.com/api/fhir/paydc_5523", "OrganizationName": "Millville Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5529", + "URL": "https://app.meldrx.com/api/fhir/paydc_5529", "OrganizationName": "Life is Motion Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5530", + "URL": "https://app.meldrx.com/api/fhir/paydc_5530", "OrganizationName": "Physical Medicine Center of the Rockies, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5531", + "URL": "https://app.meldrx.com/api/fhir/paydc_5531", "OrganizationName": "Paramus Medical \u0026 Sports Rehabilitation Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5532", + "URL": "https://app.meldrx.com/api/fhir/paydc_5532", "OrganizationName": "Hill Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5538", + "URL": "https://app.meldrx.com/api/fhir/paydc_5538", "OrganizationName": "Physicians Rehabilitation as Prestige Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5548", + "URL": "https://app.meldrx.com/api/fhir/paydc_5548", "OrganizationName": "Pixler Integrated Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5549", + "URL": "https://app.meldrx.com/api/fhir/paydc_5549", "OrganizationName": "Rotterdam Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5551", + "URL": "https://app.meldrx.com/api/fhir/paydc_5551", "OrganizationName": "Ward Chiropractic and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5554", + "URL": "https://app.meldrx.com/api/fhir/paydc_5554", "OrganizationName": "Montgomery County Wellness Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5557", + "URL": "https://app.meldrx.com/api/fhir/paydc_5557", "OrganizationName": "Rehab 2 Wellness Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5563", + "URL": "https://app.meldrx.com/api/fhir/paydc_5563", "OrganizationName": "Primary Wellness and Injury Center PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5566", + "URL": "https://app.meldrx.com/api/fhir/paydc_5566", "OrganizationName": "Shore Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5568", + "URL": "https://app.meldrx.com/api/fhir/paydc_5568", "OrganizationName": "Marianne Hoyle DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5570", + "URL": "https://app.meldrx.com/api/fhir/paydc_5570", "OrganizationName": "Integrated Healthcare Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6334", + "URL": "https://app.meldrx.com/api/fhir/paydc_6334", "OrganizationName": "On Point Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6337", + "URL": "https://app.meldrx.com/api/fhir/paydc_6337", "OrganizationName": "Hines Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6338", + "URL": "https://app.meldrx.com/api/fhir/paydc_6338", "OrganizationName": "Crux Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6340", + "URL": "https://app.meldrx.com/api/fhir/paydc_6340", "OrganizationName": "South Jersey Wellness Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6342", + "URL": "https://app.meldrx.com/api/fhir/paydc_6342", "OrganizationName": "Scott Family Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6347", + "URL": "https://app.meldrx.com/api/fhir/paydc_6347", "OrganizationName": "Advanced Injury Care Clinic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6349", + "URL": "https://app.meldrx.com/api/fhir/paydc_6349", "OrganizationName": "Jenkintown Chiropractic Center,Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6352", + "URL": "https://app.meldrx.com/api/fhir/paydc_6352", "OrganizationName": "North Star Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6354", + "URL": "https://app.meldrx.com/api/fhir/paydc_6354", "OrganizationName": "Lewis Chiropractic and Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6355", + "URL": "https://app.meldrx.com/api/fhir/paydc_6355", "OrganizationName": "Charleroi Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6357", + "URL": "https://app.meldrx.com/api/fhir/paydc_6357", "OrganizationName": "Candlewood Chiropractic Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6359", + "URL": "https://app.meldrx.com/api/fhir/paydc_6359", "OrganizationName": "All Pro Chiropractic Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6361", + "URL": "https://app.meldrx.com/api/fhir/paydc_6361", "OrganizationName": "Centro de Vida Quiropractica", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6367", + "URL": "https://app.meldrx.com/api/fhir/paydc_6367", "OrganizationName": "BAB Chiropractic PC dba Staggs Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6371", + "URL": "https://app.meldrx.com/api/fhir/paydc_6371", "OrganizationName": "NW Spinal Rehabilitation Clinic PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6373", + "URL": "https://app.meldrx.com/api/fhir/paydc_6373", "OrganizationName": "Backbone LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6374", + "URL": "https://app.meldrx.com/api/fhir/paydc_6374", "OrganizationName": "DeMutiis Chiropratic LLC - Vitality Spine \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6425", + "URL": "https://app.meldrx.com/api/fhir/paydc_6425", "OrganizationName": "BB\u0026L", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6439", + "URL": "https://app.meldrx.com/api/fhir/paydc_6439", "OrganizationName": "Shepherdsville Chiropractic and Rehab LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6445", + "URL": "https://app.meldrx.com/api/fhir/paydc_6445", "OrganizationName": "ProSpine Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6447", + "URL": "https://app.meldrx.com/api/fhir/paydc_6447", "OrganizationName": "KD Chiropractic PLLC DBA Deimler Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6448", + "URL": "https://app.meldrx.com/api/fhir/paydc_6448", "OrganizationName": "Sage Chiropractic Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6449", + "URL": "https://app.meldrx.com/api/fhir/paydc_6449", "OrganizationName": "JoEllen Kay Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6450", + "URL": "https://app.meldrx.com/api/fhir/paydc_6450", "OrganizationName": "Multi-Disc. 2019", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6451", + "URL": "https://app.meldrx.com/api/fhir/paydc_6451", "OrganizationName": "Elisa A Adams DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6452", + "URL": "https://app.meldrx.com/api/fhir/paydc_6452", "OrganizationName": "Mendel Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6454", + "URL": "https://app.meldrx.com/api/fhir/paydc_6454", "OrganizationName": "Hancock Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6456", + "URL": "https://app.meldrx.com/api/fhir/paydc_6456", "OrganizationName": "NJ Center Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6461", + "URL": "https://app.meldrx.com/api/fhir/paydc_6461", "OrganizationName": "Power Health Colorado LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6462", + "URL": "https://app.meldrx.com/api/fhir/paydc_6462", "OrganizationName": "Michigan Physical Therapy Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6463", + "URL": "https://app.meldrx.com/api/fhir/paydc_6463", "OrganizationName": "HealthMatters Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6493", + "URL": "https://app.meldrx.com/api/fhir/paydc_6493", "OrganizationName": "Yucha Medical Pain Management \u0026 Chiropractic Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6495", + "URL": "https://app.meldrx.com/api/fhir/paydc_6495", "OrganizationName": "East Village Physical Medicine PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6496", + "URL": "https://app.meldrx.com/api/fhir/paydc_6496", "OrganizationName": "Jacalyn Amrine DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6502", + "URL": "https://app.meldrx.com/api/fhir/paydc_6502", "OrganizationName": "Spine \u0026 Neck Injury Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6504", + "URL": "https://app.meldrx.com/api/fhir/paydc_6504", "OrganizationName": "Dr Catherine Silver Riddell, D.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6505", + "URL": "https://app.meldrx.com/api/fhir/paydc_6505", "OrganizationName": "Market Street Chiropractic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6510", + "URL": "https://app.meldrx.com/api/fhir/paydc_6510", "OrganizationName": "North Texas Integrated Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6513", + "URL": "https://app.meldrx.com/api/fhir/paydc_6513", "OrganizationName": "Med Plus Physical Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6514", + "URL": "https://app.meldrx.com/api/fhir/paydc_6514", "OrganizationName": "Back 2 Health Chiropractic Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6531", + "URL": "https://app.meldrx.com/api/fhir/paydc_6531", "OrganizationName": "Shelby Pain and Spine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6538", + "URL": "https://app.meldrx.com/api/fhir/paydc_6538", "OrganizationName": "Thompson Healthcare \u0026 Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6556", + "URL": "https://app.meldrx.com/api/fhir/paydc_6556", "OrganizationName": "Lake Worth Spine and Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6557", + "URL": "https://app.meldrx.com/api/fhir/paydc_6557", "OrganizationName": "Frank Capella DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6561", + "URL": "https://app.meldrx.com/api/fhir/paydc_6561", "OrganizationName": "Pine Woods Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6565", + "URL": "https://app.meldrx.com/api/fhir/paydc_6565", "OrganizationName": "Core Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6566", + "URL": "https://app.meldrx.com/api/fhir/paydc_6566", "OrganizationName": "Central Avenue Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6567", + "URL": "https://app.meldrx.com/api/fhir/paydc_6567", "OrganizationName": "Thomsen Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6569", + "URL": "https://app.meldrx.com/api/fhir/paydc_6569", "OrganizationName": "Heiden Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6575", + "URL": "https://app.meldrx.com/api/fhir/paydc_6575", "OrganizationName": "Rockside Spine Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6576", + "URL": "https://app.meldrx.com/api/fhir/paydc_6576", "OrganizationName": "Fedesna Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6577", + "URL": "https://app.meldrx.com/api/fhir/paydc_6577", "OrganizationName": "Sherwood Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6580", + "URL": "https://app.meldrx.com/api/fhir/paydc_6580", "OrganizationName": "McCulloch Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6587", + "URL": "https://app.meldrx.com/api/fhir/paydc_6587", "OrganizationName": "Kentucky Injury \u0026 Rehab LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6590", + "URL": "https://app.meldrx.com/api/fhir/paydc_6590", "OrganizationName": "Health in Motion Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6593", + "URL": "https://app.meldrx.com/api/fhir/paydc_6593", "OrganizationName": "Heritage Wellness Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6594", + "URL": "https://app.meldrx.com/api/fhir/paydc_6594", "OrganizationName": "SEAPORT CHIROPRACTIC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6596", + "URL": "https://app.meldrx.com/api/fhir/paydc_6596", "OrganizationName": "Joslyn Chiropractic Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6597", + "URL": "https://app.meldrx.com/api/fhir/paydc_6597", "OrganizationName": "Schreck Chiropractic and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6599", + "URL": "https://app.meldrx.com/api/fhir/paydc_6599", "OrganizationName": "Dr. Shaun R Gifford DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6616", + "URL": "https://app.meldrx.com/api/fhir/paydc_6616", "OrganizationName": "Akron Spine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6619", + "URL": "https://app.meldrx.com/api/fhir/paydc_6619", "OrganizationName": "Align Medical Health Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6621", + "URL": "https://app.meldrx.com/api/fhir/paydc_6621", "OrganizationName": "Progressive Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6623", + "URL": "https://app.meldrx.com/api/fhir/paydc_6623", "OrganizationName": "Converse Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6625", + "URL": "https://app.meldrx.com/api/fhir/paydc_6625", "OrganizationName": "Salik Spine and Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6626", + "URL": "https://app.meldrx.com/api/fhir/paydc_6626", "OrganizationName": "CarLouis Chiropractic Chicago Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6629", + "URL": "https://app.meldrx.com/api/fhir/paydc_6629", "OrganizationName": "Vita Source Chiropractic \u0026 Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6656", + "URL": "https://app.meldrx.com/api/fhir/paydc_6656", "OrganizationName": "Bradley Chiropractic Office S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6658", + "URL": "https://app.meldrx.com/api/fhir/paydc_6658", "OrganizationName": "Power Health Colorado LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6660", + "URL": "https://app.meldrx.com/api/fhir/paydc_6660", "OrganizationName": "Power Health Colorado", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6661", + "URL": "https://app.meldrx.com/api/fhir/paydc_6661", "OrganizationName": "Kirtland Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6664", + "URL": "https://app.meldrx.com/api/fhir/paydc_6664", "OrganizationName": "Sport and Spine Chiropractic Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6667", + "URL": "https://app.meldrx.com/api/fhir/paydc_6667", "OrganizationName": "Be Vital Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6669", + "URL": "https://app.meldrx.com/api/fhir/paydc_6669", "OrganizationName": "Family Health Centers LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6670", + "URL": "https://app.meldrx.com/api/fhir/paydc_6670", "OrganizationName": "Chiropractic Naturally PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6671", + "URL": "https://app.meldrx.com/api/fhir/paydc_6671", "OrganizationName": "Krysta L. Little dbd Str8 Up Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5265", + "URL": "https://app.meldrx.com/api/fhir/paydc_5265", "OrganizationName": "BackBone Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/3ESREZSG", + "URL": "https://app.meldrx.com/api/fhir/3ESREZSG", "OrganizationName": "Advanced Retina Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/KMJFIHUW", + "URL": "https://app.meldrx.com/api/fhir/KMJFIHUW", "OrganizationName": "Baribeau \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ER48TUC6", + "URL": "https://app.meldrx.com/api/fhir/ER48TUC6", "OrganizationName": "Culver City Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/IE2TCP6I", + "URL": "https://app.meldrx.com/api/fhir/IE2TCP6I", "OrganizationName": "Buffalo - Niagara Retina - Williamsville, NY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/YVDIZ58K", + "URL": "https://app.meldrx.com/api/fhir/YVDIZ58K", "OrganizationName": "Carty Eye Associates - Bryn Mawr, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/4IS8099F", + "URL": "https://app.meldrx.com/api/fhir/4IS8099F", "OrganizationName": "Center for Eyecare LLC - Washington Twp", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/U5XIDWEB", + "URL": "https://app.meldrx.com/api/fhir/U5XIDWEB", "OrganizationName": "Chang Eye Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/3A4CBIH4", + "URL": "https://app.meldrx.com/api/fhir/3A4CBIH4", "OrganizationName": "Citrus Valley Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/K8KD7A7C", + "URL": "https://app.meldrx.com/api/fhir/K8KD7A7C", "OrganizationName": "Columbia Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ZP9GD5KA", + "URL": "https://app.meldrx.com/api/fhir/ZP9GD5KA", "OrganizationName": "Dr. John Greco", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/C2HWL61Q", + "URL": "https://app.meldrx.com/api/fhir/C2HWL61Q", "OrganizationName": "Edward A. Tsoy, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/DF6GDTDH", + "URL": "https://app.meldrx.com/api/fhir/DF6GDTDH", "OrganizationName": "Evansville Eyecare Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/64SM9K5X", + "URL": "https://app.meldrx.com/api/fhir/64SM9K5X", "OrganizationName": "EyeCare Consultants. LLP.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/YV9ESDQA", + "URL": "https://app.meldrx.com/api/fhir/YV9ESDQA", "OrganizationName": "Harshad G. Shah, MD, dbaThe Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ODFIZWOR", + "URL": "https://app.meldrx.com/api/fhir/ODFIZWOR", "OrganizationName": "Eye Physicians of Southwest Virginia, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/6PSB9AUR", + "URL": "https://app.meldrx.com/api/fhir/6PSB9AUR", "OrganizationName": "Fort Worth Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/60PMVNG8", + "URL": "https://app.meldrx.com/api/fhir/60PMVNG8", "OrganizationName": "Golnaz Moazami, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/W6DKNUZH", + "URL": "https://app.meldrx.com/api/fhir/W6DKNUZH", "OrganizationName": "James Deutsch, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/5VIN8K5O", + "URL": "https://app.meldrx.com/api/fhir/5VIN8K5O", "OrganizationName": "Kaufman Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/RVSTVLG4", + "URL": "https://app.meldrx.com/api/fhir/RVSTVLG4", "OrganizationName": "Marilyn K. Kosier, M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/V0AMPFAP", + "URL": "https://app.meldrx.com/api/fhir/V0AMPFAP", "OrganizationName": "Meridian Ophthalmic Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/7E7A8IYQ", + "URL": "https://app.meldrx.com/api/fhir/7E7A8IYQ", "OrganizationName": "Neil H. Dorfman, M.D. - Eye Physician \u0026 Surgeon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/R9I9LYWS", + "URL": "https://app.meldrx.com/api/fhir/R9I9LYWS", "OrganizationName": "North Fulton Eye Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/NU2Q25NC", + "URL": "https://app.meldrx.com/api/fhir/NU2Q25NC", "OrganizationName": "Ophthalmic Physicians of Monmouth , P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/7P9JA4ZT", + "URL": "https://app.meldrx.com/api/fhir/7P9JA4ZT", "OrganizationName": "Ophthalmology West, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/XBTUN9D1", + "URL": "https://app.meldrx.com/api/fhir/XBTUN9D1", "OrganizationName": "Pasadena Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/S0BSWJJ8", + "URL": "https://app.meldrx.com/api/fhir/S0BSWJJ8", "OrganizationName": "Reinke Eye and Laser Center - Southlake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/3PY5I242", + "URL": "https://app.meldrx.com/api/fhir/3PY5I242", "OrganizationName": "Retina \u0026 Vitreous Consultants of VA, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/8YJ2XRCB", + "URL": "https://app.meldrx.com/api/fhir/8YJ2XRCB", "OrganizationName": "Retina Consultants of Los Angeles Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/IY034F46", + "URL": "https://app.meldrx.com/api/fhir/IY034F46", "OrganizationName": "Richmond Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/SL5L2MNL", + "URL": "https://app.meldrx.com/api/fhir/SL5L2MNL", "OrganizationName": "Rochester Eye \u0026 Laser Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/DMB5NXBP", + "URL": "https://app.meldrx.com/api/fhir/DMB5NXBP", "OrganizationName": "Sherry Eye Clinic, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/TNH2GG5G", + "URL": "https://app.meldrx.com/api/fhir/TNH2GG5G", "OrganizationName": "Spectrum Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/CW9K53RH", + "URL": "https://app.meldrx.com/api/fhir/CW9K53RH", "OrganizationName": "Thurmond Eye Associates - Weslaco", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/EV47663Q", + "URL": "https://app.meldrx.com/api/fhir/EV47663Q", "OrganizationName": "Tozer Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/4OYUY6GG", + "URL": "https://app.meldrx.com/api/fhir/4OYUY6GG", "OrganizationName": "Vista Eye Specialists, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ASVJ32BH", + "URL": "https://app.meldrx.com/api/fhir/ASVJ32BH", "OrganizationName": "Kay, Tabas \u0026 Niknam Ophthalmology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/YRFOGVAF", + "URL": "https://app.meldrx.com/api/fhir/YRFOGVAF", "OrganizationName": "1960 Eye Surgeons, P.A. - Houston, TX", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/YOOSF29L", + "URL": "https://app.meldrx.com/api/fhir/YOOSF29L", "OrganizationName": "Eye Care Specialists P.S.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/5A81RA48", + "URL": "https://app.meldrx.com/api/fhir/5A81RA48", "OrganizationName": "The Laser Vision Correction Center of New Jersey", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5573", + "URL": "https://app.meldrx.com/api/fhir/paydc_5573", "OrganizationName": "Dr Stephen A Pokowicz", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5579", + "URL": "https://app.meldrx.com/api/fhir/paydc_5579", "OrganizationName": "The Physical Medicine Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5585", + "URL": "https://app.meldrx.com/api/fhir/paydc_5585", "OrganizationName": "Dudley Medical \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5595", + "URL": "https://app.meldrx.com/api/fhir/paydc_5595", "OrganizationName": "Compass Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5602", + "URL": "https://app.meldrx.com/api/fhir/paydc_5602", "OrganizationName": "Bergenline Spine \u0026 Healthcare Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5607", + "URL": "https://app.meldrx.com/api/fhir/paydc_5607", "OrganizationName": "Bass Chiropractic and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5610", + "URL": "https://app.meldrx.com/api/fhir/paydc_5610", "OrganizationName": "Dr Hitender Sabharwal Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5619", + "URL": "https://app.meldrx.com/api/fhir/paydc_5619", "OrganizationName": "NORTH JERSEY PAIN \u0026 REHAB CENTER, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5621", + "URL": "https://app.meldrx.com/api/fhir/paydc_5621", "OrganizationName": "Matthews Chiropractic \u0026 Sports Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5626", + "URL": "https://app.meldrx.com/api/fhir/paydc_5626", "OrganizationName": "Mount Kisco Physical Therapy \u0026 Chiropractic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5627", + "URL": "https://app.meldrx.com/api/fhir/paydc_5627", "OrganizationName": "Marston Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5628", + "URL": "https://app.meldrx.com/api/fhir/paydc_5628", "OrganizationName": "Shaffer Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5631", + "URL": "https://app.meldrx.com/api/fhir/paydc_5631", "OrganizationName": "Broad Street Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5637", + "URL": "https://app.meldrx.com/api/fhir/paydc_5637", "OrganizationName": "Refit Physical Restoration LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5640", + "URL": "https://app.meldrx.com/api/fhir/paydc_5640", "OrganizationName": "Lancaster Health Associates dba Latanishen Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5641", + "URL": "https://app.meldrx.com/api/fhir/paydc_5641", "OrganizationName": "ChiroCare of Ft Lauderdale", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5645", + "URL": "https://app.meldrx.com/api/fhir/paydc_5645", "OrganizationName": "Whelan Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5648", + "URL": "https://app.meldrx.com/api/fhir/paydc_5648", "OrganizationName": "Discover Optimal Healthcare Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5652", + "URL": "https://app.meldrx.com/api/fhir/paydc_5652", "OrganizationName": "Mountain View Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5655", + "URL": "https://app.meldrx.com/api/fhir/paydc_5655", "OrganizationName": "Link Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5656", + "URL": "https://app.meldrx.com/api/fhir/paydc_5656", "OrganizationName": "Rose Wellness Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5657", + "URL": "https://app.meldrx.com/api/fhir/paydc_5657", "OrganizationName": "Oakland Park Injury \u0026 Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5658", + "URL": "https://app.meldrx.com/api/fhir/paydc_5658", "OrganizationName": "Dr. Robert R. Weber Chiropractic Physician", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5659", + "URL": "https://app.meldrx.com/api/fhir/paydc_5659", "OrganizationName": "Kemp Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5663", + "URL": "https://app.meldrx.com/api/fhir/paydc_5663", "OrganizationName": "Chirocare of Plantation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5664", + "URL": "https://app.meldrx.com/api/fhir/paydc_5664", "OrganizationName": "Decubellis Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5666", + "URL": "https://app.meldrx.com/api/fhir/paydc_5666", "OrganizationName": "Adams County Spine \u0026 Accident Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5669", + "URL": "https://app.meldrx.com/api/fhir/paydc_5669", "OrganizationName": "Pocono Chiropractic Clinic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5673", + "URL": "https://app.meldrx.com/api/fhir/paydc_5673", "OrganizationName": "University Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5676", + "URL": "https://app.meldrx.com/api/fhir/paydc_5676", "OrganizationName": "Point Chiropractic Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5677", + "URL": "https://app.meldrx.com/api/fhir/paydc_5677", "OrganizationName": "Robb Q Dohman Ltd dba Dohman Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5679", + "URL": "https://app.meldrx.com/api/fhir/paydc_5679", "OrganizationName": "ChiroCare of Cooper City LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5680", + "URL": "https://app.meldrx.com/api/fhir/paydc_5680", "OrganizationName": "Audubon Back Aid Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5683", + "URL": "https://app.meldrx.com/api/fhir/paydc_5683", "OrganizationName": "Central Texas Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5686", + "URL": "https://app.meldrx.com/api/fhir/paydc_5686", "OrganizationName": "Route 15 Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5689", + "URL": "https://app.meldrx.com/api/fhir/paydc_5689", "OrganizationName": "DeCotiis Chiropractic Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5694", + "URL": "https://app.meldrx.com/api/fhir/paydc_5694", "OrganizationName": "Evans Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5695", + "URL": "https://app.meldrx.com/api/fhir/paydc_5695", "OrganizationName": "Wellness Strategies", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5696", + "URL": "https://app.meldrx.com/api/fhir/paydc_5696", "OrganizationName": "Allcare Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5697", + "URL": "https://app.meldrx.com/api/fhir/paydc_5697", "OrganizationName": "San Francisco Spine Pain Relief Center, a Denny Chiropractic Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5701", + "URL": "https://app.meldrx.com/api/fhir/paydc_5701", "OrganizationName": "Advanced Care Center of Delaware", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5702", + "URL": "https://app.meldrx.com/api/fhir/paydc_5702", "OrganizationName": "Lane Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5703", + "URL": "https://app.meldrx.com/api/fhir/paydc_5703", "OrganizationName": "Midwest Healthcare \u0026 Physical Medicine, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5704", + "URL": "https://app.meldrx.com/api/fhir/paydc_5704", "OrganizationName": "Russell Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5705", + "URL": "https://app.meldrx.com/api/fhir/paydc_5705", "OrganizationName": "Inspired Chiropractic, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5706", + "URL": "https://app.meldrx.com/api/fhir/paydc_5706", "OrganizationName": "Dr. Philip A OBrien DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5708", + "URL": "https://app.meldrx.com/api/fhir/paydc_5708", "OrganizationName": "Glass City Spine and Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5710", + "URL": "https://app.meldrx.com/api/fhir/paydc_5710", "OrganizationName": "Ledford Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5713", + "URL": "https://app.meldrx.com/api/fhir/paydc_5713", "OrganizationName": "Umatilla Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5718", + "URL": "https://app.meldrx.com/api/fhir/paydc_5718", "OrganizationName": "Green Mountain Chiropractic and Massage", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5719", + "URL": "https://app.meldrx.com/api/fhir/paydc_5719", "OrganizationName": "G4 Dummy Response - Prod", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5720", + "URL": "https://app.meldrx.com/api/fhir/paydc_5720", "OrganizationName": "Horizon Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5723", + "URL": "https://app.meldrx.com/api/fhir/paydc_5723", "OrganizationName": "Absolute Health Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5725", + "URL": "https://app.meldrx.com/api/fhir/paydc_5725", "OrganizationName": "Jeffry T Parker DC, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5726", + "URL": "https://app.meldrx.com/api/fhir/paydc_5726", "OrganizationName": "Front Range Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5731", + "URL": "https://app.meldrx.com/api/fhir/paydc_5731", "OrganizationName": "Simone Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5732", + "URL": "https://app.meldrx.com/api/fhir/paydc_5732", "OrganizationName": "Galasso Chiropractic Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5733", + "URL": "https://app.meldrx.com/api/fhir/paydc_5733", "OrganizationName": "O'Reilly Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5734", + "URL": "https://app.meldrx.com/api/fhir/paydc_5734", "OrganizationName": "William E West DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5738", + "URL": "https://app.meldrx.com/api/fhir/paydc_5738", "OrganizationName": "Interactive Health/Alaska Lymphedema Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5739", + "URL": "https://app.meldrx.com/api/fhir/paydc_5739", "OrganizationName": "James A Royle DC CCSP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5740", + "URL": "https://app.meldrx.com/api/fhir/paydc_5740", "OrganizationName": "Commonwealth Chiropractic Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5742", + "URL": "https://app.meldrx.com/api/fhir/paydc_5742", "OrganizationName": "Dr. Demetri G. Meimaris", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5744", + "URL": "https://app.meldrx.com/api/fhir/paydc_5744", "OrganizationName": "Brenner Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5746", + "URL": "https://app.meldrx.com/api/fhir/paydc_5746", "OrganizationName": "Turning Point Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5749", + "URL": "https://app.meldrx.com/api/fhir/paydc_5749", "OrganizationName": "Alliance Chiropractic Pain and Health Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5751", + "URL": "https://app.meldrx.com/api/fhir/paydc_5751", "OrganizationName": "Chiropractic Center of Pompano, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5755", + "URL": "https://app.meldrx.com/api/fhir/paydc_5755", "OrganizationName": "Belden Injury Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5756", + "URL": "https://app.meldrx.com/api/fhir/paydc_5756", "OrganizationName": "Reach Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5759", + "URL": "https://app.meldrx.com/api/fhir/paydc_5759", "OrganizationName": "Village Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5763", + "URL": "https://app.meldrx.com/api/fhir/paydc_5763", "OrganizationName": "Five Points Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5766", + "URL": "https://app.meldrx.com/api/fhir/paydc_5766", "OrganizationName": "ChiroCare of Aventura, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5769", + "URL": "https://app.meldrx.com/api/fhir/paydc_5769", "OrganizationName": "Bar Harbor Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5773", + "URL": "https://app.meldrx.com/api/fhir/paydc_5773", "OrganizationName": "Fusion Sport Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5777", + "URL": "https://app.meldrx.com/api/fhir/paydc_5777", "OrganizationName": "Rhode Island Integrated Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5778", + "URL": "https://app.meldrx.com/api/fhir/paydc_5778", "OrganizationName": "Dr JBCDC PLLC Cole Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5779", + "URL": "https://app.meldrx.com/api/fhir/paydc_5779", "OrganizationName": "Bond Chiropractic Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5780", + "URL": "https://app.meldrx.com/api/fhir/paydc_5780", "OrganizationName": "Layton Avenue Injury Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5781", + "URL": "https://app.meldrx.com/api/fhir/paydc_5781", "OrganizationName": "Riverview Chiropractic Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5788", + "URL": "https://app.meldrx.com/api/fhir/paydc_5788", "OrganizationName": "Family Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5789", + "URL": "https://app.meldrx.com/api/fhir/paydc_5789", "OrganizationName": "Spine and Healthcare Center of Belleville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5791", + "URL": "https://app.meldrx.com/api/fhir/paydc_5791", "OrganizationName": "Fischer Health \u0026 Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5793", + "URL": "https://app.meldrx.com/api/fhir/paydc_5793", "OrganizationName": "Freeman Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5794", + "URL": "https://app.meldrx.com/api/fhir/paydc_5794", "OrganizationName": "Toomey Chiropractic Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5795", + "URL": "https://app.meldrx.com/api/fhir/paydc_5795", "OrganizationName": "Hubbard Chiropractic Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5797", + "URL": "https://app.meldrx.com/api/fhir/paydc_5797", "OrganizationName": "Georgia Advanced Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5800", + "URL": "https://app.meldrx.com/api/fhir/paydc_5800", "OrganizationName": "Healthy Spine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5807", + "URL": "https://app.meldrx.com/api/fhir/paydc_5807", "OrganizationName": "Glen Cove Chiropractic \u0026 Physical Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5811", + "URL": "https://app.meldrx.com/api/fhir/paydc_5811", "OrganizationName": "A Chiropractic Wellness Place PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5813", + "URL": "https://app.meldrx.com/api/fhir/paydc_5813", "OrganizationName": "First Choice Chiropractic Neurology \u0026 Rehab Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5814", + "URL": "https://app.meldrx.com/api/fhir/paydc_5814", "OrganizationName": "Partners In Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5815", + "URL": "https://app.meldrx.com/api/fhir/paydc_5815", "OrganizationName": "ChiroCare of Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5818", + "URL": "https://app.meldrx.com/api/fhir/paydc_5818", "OrganizationName": "Natural Health Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5819", + "URL": "https://app.meldrx.com/api/fhir/paydc_5819", "OrganizationName": "East Falls Chiropractic \u0026 Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5821", + "URL": "https://app.meldrx.com/api/fhir/paydc_5821", "OrganizationName": "Northside Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5825", + "URL": "https://app.meldrx.com/api/fhir/paydc_5825", "OrganizationName": "Le Reve Spinal Care \u0026 Pain Management Clinic P.C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5828", + "URL": "https://app.meldrx.com/api/fhir/paydc_5828", "OrganizationName": "Waterside Chiropractic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5836", + "URL": "https://app.meldrx.com/api/fhir/paydc_5836", "OrganizationName": "Shelbyville Chiropractic \u0026 Rehab Center PSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5838", + "URL": "https://app.meldrx.com/api/fhir/paydc_5838", "OrganizationName": "Southside Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5845", + "URL": "https://app.meldrx.com/api/fhir/paydc_5845", "OrganizationName": "ChiroCare of Coconut Creek, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5848", + "URL": "https://app.meldrx.com/api/fhir/paydc_5848", "OrganizationName": "ChiroCare of Weston, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5849", + "URL": "https://app.meldrx.com/api/fhir/paydc_5849", "OrganizationName": "ChiroCare of Boca Raton, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5851", + "URL": "https://app.meldrx.com/api/fhir/paydc_5851", "OrganizationName": "Thornton Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5852", + "URL": "https://app.meldrx.com/api/fhir/paydc_5852", "OrganizationName": "Chiropractic Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5853", + "URL": "https://app.meldrx.com/api/fhir/paydc_5853", "OrganizationName": "REHABILITY, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5856", + "URL": "https://app.meldrx.com/api/fhir/paydc_5856", "OrganizationName": "Houk Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5885", + "URL": "https://app.meldrx.com/api/fhir/paydc_5885", "OrganizationName": "Lockhart Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5886", + "URL": "https://app.meldrx.com/api/fhir/paydc_5886", "OrganizationName": "Smith Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5887", + "URL": "https://app.meldrx.com/api/fhir/paydc_5887", "OrganizationName": "Ollis Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5889", + "URL": "https://app.meldrx.com/api/fhir/paydc_5889", "OrganizationName": "Medcoa Clinic Ltd", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5890", + "URL": "https://app.meldrx.com/api/fhir/paydc_5890", "OrganizationName": "In Touch Chiropractic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5892", + "URL": "https://app.meldrx.com/api/fhir/paydc_5892", "OrganizationName": "Ollis Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5894", + "URL": "https://app.meldrx.com/api/fhir/paydc_5894", "OrganizationName": "Live Well Empowerment LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5898", + "URL": "https://app.meldrx.com/api/fhir/paydc_5898", "OrganizationName": "Kat Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5901", + "URL": "https://app.meldrx.com/api/fhir/paydc_5901", "OrganizationName": "Family Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5902", + "URL": "https://app.meldrx.com/api/fhir/paydc_5902", "OrganizationName": "Dr Andrea J Sciarrillo", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5905", + "URL": "https://app.meldrx.com/api/fhir/paydc_5905", "OrganizationName": "In \u0026 Out Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5907", + "URL": "https://app.meldrx.com/api/fhir/paydc_5907", "OrganizationName": "Dr. Casey Phillips, DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5911", + "URL": "https://app.meldrx.com/api/fhir/paydc_5911", "OrganizationName": "Dr Donald T Alosio Jr Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5918", + "URL": "https://app.meldrx.com/api/fhir/paydc_5918", "OrganizationName": "Antonelli Family Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5919", + "URL": "https://app.meldrx.com/api/fhir/paydc_5919", "OrganizationName": "Primary Care and Chiropractic Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5926", + "URL": "https://app.meldrx.com/api/fhir/paydc_5926", "OrganizationName": "Westland Chiropractic Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5928", + "URL": "https://app.meldrx.com/api/fhir/paydc_5928", "OrganizationName": "Lamb Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5930", + "URL": "https://app.meldrx.com/api/fhir/paydc_5930", "OrganizationName": "Spine and Rehab Center Saddle Brook", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5931", + "URL": "https://app.meldrx.com/api/fhir/paydc_5931", "OrganizationName": "Accelerate Health PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5932", + "URL": "https://app.meldrx.com/api/fhir/paydc_5932", "OrganizationName": "AK Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5936", + "URL": "https://app.meldrx.com/api/fhir/paydc_5936", "OrganizationName": "REVIVE CHIROPRACTIC HEALING CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5940", + "URL": "https://app.meldrx.com/api/fhir/paydc_5940", "OrganizationName": "Alliance Health Partners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5942", + "URL": "https://app.meldrx.com/api/fhir/paydc_5942", "OrganizationName": "New Jersey Rehab Experts LLC Newport", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5945", + "URL": "https://app.meldrx.com/api/fhir/paydc_5945", "OrganizationName": "Vail Health, Inc. dba Vail Integrative Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5948", + "URL": "https://app.meldrx.com/api/fhir/paydc_5948", "OrganizationName": "Accelerate Health PC - CICN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5949", + "URL": "https://app.meldrx.com/api/fhir/paydc_5949", "OrganizationName": "Alliance Health Partners - CICN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5952", + "URL": "https://app.meldrx.com/api/fhir/paydc_5952", "OrganizationName": "Mayfair Injury and Spine Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5953", + "URL": "https://app.meldrx.com/api/fhir/paydc_5953", "OrganizationName": "Burke Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5954", + "URL": "https://app.meldrx.com/api/fhir/paydc_5954", "OrganizationName": "Princeton Integrated Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5958", + "URL": "https://app.meldrx.com/api/fhir/paydc_5958", "OrganizationName": "Spine and Rehab of JC LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5960", + "URL": "https://app.meldrx.com/api/fhir/paydc_5960", "OrganizationName": "Broad Street Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5961", + "URL": "https://app.meldrx.com/api/fhir/paydc_5961", "OrganizationName": "Body Shop Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5962", + "URL": "https://app.meldrx.com/api/fhir/paydc_5962", "OrganizationName": "Columbus Chiropractic Center of Hilliard", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5974", + "URL": "https://app.meldrx.com/api/fhir/paydc_5974", "OrganizationName": "Complete Wellness Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5975", + "URL": "https://app.meldrx.com/api/fhir/paydc_5975", "OrganizationName": "Reinhardt Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5978", + "URL": "https://app.meldrx.com/api/fhir/paydc_5978", "OrganizationName": "Dr. Thomas Oliver, DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5986", + "URL": "https://app.meldrx.com/api/fhir/paydc_5986", "OrganizationName": "Escalon Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5991", + "URL": "https://app.meldrx.com/api/fhir/paydc_5991", "OrganizationName": "Woudsma Chiropractic Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6010", + "URL": "https://app.meldrx.com/api/fhir/paydc_6010", "OrganizationName": "Johnson/Scalise Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6011", + "URL": "https://app.meldrx.com/api/fhir/paydc_6011", "OrganizationName": "Dr Stuart K Himmelstein DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6012", + "URL": "https://app.meldrx.com/api/fhir/paydc_6012", "OrganizationName": "Pinnacle Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6015", + "URL": "https://app.meldrx.com/api/fhir/paydc_6015", "OrganizationName": "Pyramid Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6018", + "URL": "https://app.meldrx.com/api/fhir/paydc_6018", "OrganizationName": "South Pointe Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6020", + "URL": "https://app.meldrx.com/api/fhir/paydc_6020", "OrganizationName": "The Back and Joint Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6022", + "URL": "https://app.meldrx.com/api/fhir/paydc_6022", "OrganizationName": "Rock Creek Spine and Rehabilitation Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6028", + "URL": "https://app.meldrx.com/api/fhir/paydc_6028", "OrganizationName": "ROSE POINT CHIROPRACTIC LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6032", + "URL": "https://app.meldrx.com/api/fhir/paydc_6032", "OrganizationName": "Chiropractic Solutions LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6034", + "URL": "https://app.meldrx.com/api/fhir/paydc_6034", "OrganizationName": "Simkovich Cranial Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6036", + "URL": "https://app.meldrx.com/api/fhir/paydc_6036", "OrganizationName": "Matthew Kenney Chiropractor Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6044", + "URL": "https://app.meldrx.com/api/fhir/paydc_6044", "OrganizationName": "Superior Joint and Spine Medical Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6048", + "URL": "https://app.meldrx.com/api/fhir/paydc_6048", "OrganizationName": "Brownsville Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6050", + "URL": "https://app.meldrx.com/api/fhir/paydc_6050", "OrganizationName": "Pro Spine Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6052", + "URL": "https://app.meldrx.com/api/fhir/paydc_6052", "OrganizationName": "APS Demo 2107", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6053", + "URL": "https://app.meldrx.com/api/fhir/paydc_6053", "OrganizationName": "Shaker Womens Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6117", + "URL": "https://app.meldrx.com/api/fhir/paydc_6117", "OrganizationName": "Vincent J Portera DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6118", + "URL": "https://app.meldrx.com/api/fhir/paydc_6118", "OrganizationName": "Family Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6119", + "URL": "https://app.meldrx.com/api/fhir/paydc_6119", "OrganizationName": "Fairfield Injury Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6120", + "URL": "https://app.meldrx.com/api/fhir/paydc_6120", "OrganizationName": "DC Revenue Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6121", + "URL": "https://app.meldrx.com/api/fhir/paydc_6121", "OrganizationName": "BCPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6132", + "URL": "https://app.meldrx.com/api/fhir/paydc_6132", "OrganizationName": "Nautilus Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6133", + "URL": "https://app.meldrx.com/api/fhir/paydc_6133", "OrganizationName": "Primary Care and Chiropractic - SMIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6135", + "URL": "https://app.meldrx.com/api/fhir/paydc_6135", "OrganizationName": "Advanced Joint and Spine Medical Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6144", + "URL": "https://app.meldrx.com/api/fhir/paydc_6144", "OrganizationName": "Arctic Pain Relief Center � Wasilla", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6147", + "URL": "https://app.meldrx.com/api/fhir/paydc_6147", "OrganizationName": "Northwest Pain Relief Centers � Sequim", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6150", + "URL": "https://app.meldrx.com/api/fhir/paydc_6150", "OrganizationName": "Sean B Mandel DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6154", + "URL": "https://app.meldrx.com/api/fhir/paydc_6154", "OrganizationName": "Doc Tony's Clay Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6155", + "URL": "https://app.meldrx.com/api/fhir/paydc_6155", "OrganizationName": "Reed Kent Comprehensive Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6156", + "URL": "https://app.meldrx.com/api/fhir/paydc_6156", "OrganizationName": "CARE \u0026 CURE PHYSICAL THERAPY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6159", + "URL": "https://app.meldrx.com/api/fhir/paydc_6159", "OrganizationName": "Advanced Chiropractic of Altoona", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6164", + "URL": "https://app.meldrx.com/api/fhir/paydc_6164", "OrganizationName": "Florida Health Doctors PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6165", + "URL": "https://app.meldrx.com/api/fhir/paydc_6165", "OrganizationName": "Brammeier Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6166", + "URL": "https://app.meldrx.com/api/fhir/paydc_6166", "OrganizationName": "Labas Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6167", + "URL": "https://app.meldrx.com/api/fhir/paydc_6167", "OrganizationName": "Medicare Protocols", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6168", + "URL": "https://app.meldrx.com/api/fhir/paydc_6168", "OrganizationName": "Kairos Chiropractic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6173", + "URL": "https://app.meldrx.com/api/fhir/paydc_6173", "OrganizationName": "Well Adjusted Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6175", + "URL": "https://app.meldrx.com/api/fhir/paydc_6175", "OrganizationName": "Chirocare of Miami, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6176", + "URL": "https://app.meldrx.com/api/fhir/paydc_6176", "OrganizationName": "Prod Demo Account", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6177", + "URL": "https://app.meldrx.com/api/fhir/paydc_6177", "OrganizationName": "Hatch Chiropractic \u0026 Wellness - PMIN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6178", + "URL": "https://app.meldrx.com/api/fhir/paydc_6178", "OrganizationName": "Pinnacle Chiropractic - DWPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6183", + "URL": "https://app.meldrx.com/api/fhir/paydc_6183", "OrganizationName": "Green Mountain Chiropractic and Massage - Healthone", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6201", + "URL": "https://app.meldrx.com/api/fhir/paydc_6201", "OrganizationName": "Chirocare of Lake Worth", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6203", + "URL": "https://app.meldrx.com/api/fhir/paydc_6203", "OrganizationName": "Winner Chiro. Wellness Ctr", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6207", + "URL": "https://app.meldrx.com/api/fhir/paydc_6207", "OrganizationName": "Advanced Health Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6208", + "URL": "https://app.meldrx.com/api/fhir/paydc_6208", "OrganizationName": "Glendon C Summers DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6210", + "URL": "https://app.meldrx.com/api/fhir/paydc_6210", "OrganizationName": "Marshall Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6212", + "URL": "https://app.meldrx.com/api/fhir/paydc_6212", "OrganizationName": "Advanced Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6217", + "URL": "https://app.meldrx.com/api/fhir/paydc_6217", "OrganizationName": "Hometown Family Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6221", + "URL": "https://app.meldrx.com/api/fhir/paydc_6221", "OrganizationName": "BACK2GOOD Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6227", + "URL": "https://app.meldrx.com/api/fhir/paydc_6227", "OrganizationName": "Phoenixville Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6228", + "URL": "https://app.meldrx.com/api/fhir/paydc_6228", "OrganizationName": "Glynn Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6230", + "URL": "https://app.meldrx.com/api/fhir/paydc_6230", "OrganizationName": "MNDALBY Inc DBA Camas Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6232", + "URL": "https://app.meldrx.com/api/fhir/paydc_6232", "OrganizationName": "Nardone Chiropractic North", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6234", + "URL": "https://app.meldrx.com/api/fhir/paydc_6234", "OrganizationName": "KK Chiropractic Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6245", + "URL": "https://app.meldrx.com/api/fhir/paydc_6245", "OrganizationName": "Lifecity Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6246", + "URL": "https://app.meldrx.com/api/fhir/paydc_6246", "OrganizationName": "Jeffersontown Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6247", + "URL": "https://app.meldrx.com/api/fhir/paydc_6247", "OrganizationName": "Kastner Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6251", + "URL": "https://app.meldrx.com/api/fhir/paydc_6251", "OrganizationName": "Greater Boston Performance Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6255", + "URL": "https://app.meldrx.com/api/fhir/paydc_6255", "OrganizationName": "Raymond A Seugling Jr DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6256", + "URL": "https://app.meldrx.com/api/fhir/paydc_6256", "OrganizationName": "Kelvin M Washington dba Denver Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6259", + "URL": "https://app.meldrx.com/api/fhir/paydc_6259", "OrganizationName": "Michelle Wozniak LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6270", + "URL": "https://app.meldrx.com/api/fhir/paydc_6270", "OrganizationName": "Robert Donald Jackson Jr PC dba Applewood Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6275", + "URL": "https://app.meldrx.com/api/fhir/paydc_6275", "OrganizationName": "Next Level Spine and Wellness Center of NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6276", + "URL": "https://app.meldrx.com/api/fhir/paydc_6276", "OrganizationName": "Robert D Jackson Jr PC DBA Applewood Chiropractic - CICN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6278", + "URL": "https://app.meldrx.com/api/fhir/paydc_6278", "OrganizationName": "ClearGage Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6281", + "URL": "https://app.meldrx.com/api/fhir/paydc_6281", "OrganizationName": "Dr Frederick B Pine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6283", + "URL": "https://app.meldrx.com/api/fhir/paydc_6283", "OrganizationName": "Front Range Sports Medicine - SMIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6288", + "URL": "https://app.meldrx.com/api/fhir/paydc_6288", "OrganizationName": "Paul J Canali DC PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6290", + "URL": "https://app.meldrx.com/api/fhir/paydc_6290", "OrganizationName": "PayDC Acupuncture Demo", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6299", + "URL": "https://app.meldrx.com/api/fhir/paydc_6299", "OrganizationName": "Thrive Integrated Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6306", + "URL": "https://app.meldrx.com/api/fhir/paydc_6306", "OrganizationName": "Cumberland Valley Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6309", + "URL": "https://app.meldrx.com/api/fhir/paydc_6309", "OrganizationName": "Essington Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6315", + "URL": "https://app.meldrx.com/api/fhir/paydc_6315", "OrganizationName": "Altieri Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6320", + "URL": "https://app.meldrx.com/api/fhir/paydc_6320", "OrganizationName": "Dacus Chiropractic PLLC DBA True Balance Chiropractic and Physical Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6324", + "URL": "https://app.meldrx.com/api/fhir/paydc_6324", "OrganizationName": "Professional Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6325", + "URL": "https://app.meldrx.com/api/fhir/paydc_6325", "OrganizationName": "TruFit Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6326", + "URL": "https://app.meldrx.com/api/fhir/paydc_6326", "OrganizationName": "Damariscotta Chiropractic Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6673", + "URL": "https://app.meldrx.com/api/fhir/paydc_6673", "OrganizationName": "Sahlfeld Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6674", + "URL": "https://app.meldrx.com/api/fhir/paydc_6674", "OrganizationName": "Reino Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6675", + "URL": "https://app.meldrx.com/api/fhir/paydc_6675", "OrganizationName": "Kristin Soehl Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6676", + "URL": "https://app.meldrx.com/api/fhir/paydc_6676", "OrganizationName": "Zulkoski Family Chiropractc LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6677", + "URL": "https://app.meldrx.com/api/fhir/paydc_6677", "OrganizationName": "Medford Chiropractic and Family Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6679", + "URL": "https://app.meldrx.com/api/fhir/paydc_6679", "OrganizationName": "Chiro Theory", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6680", + "URL": "https://app.meldrx.com/api/fhir/paydc_6680", "OrganizationName": "Wemark Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6681", + "URL": "https://app.meldrx.com/api/fhir/paydc_6681", "OrganizationName": "Yaden Physical and Integrated Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6683", + "URL": "https://app.meldrx.com/api/fhir/paydc_6683", "OrganizationName": "Body Harmony of Arlington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6684", + "URL": "https://app.meldrx.com/api/fhir/paydc_6684", "OrganizationName": "Crews Chiropractic Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6685", + "URL": "https://app.meldrx.com/api/fhir/paydc_6685", "OrganizationName": "Westlake Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6686", + "URL": "https://app.meldrx.com/api/fhir/paydc_6686", "OrganizationName": "Resiliency Brain Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6688", + "URL": "https://app.meldrx.com/api/fhir/paydc_6688", "OrganizationName": "Latah Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6692", + "URL": "https://app.meldrx.com/api/fhir/paydc_6692", "OrganizationName": "Accomack Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6694", + "URL": "https://app.meldrx.com/api/fhir/paydc_6694", "OrganizationName": "Davis Chiropractic Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6696", + "URL": "https://app.meldrx.com/api/fhir/paydc_6696", "OrganizationName": "Total Health Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6697", + "URL": "https://app.meldrx.com/api/fhir/paydc_6697", "OrganizationName": "Peak Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6701", + "URL": "https://app.meldrx.com/api/fhir/paydc_6701", "OrganizationName": "Peak Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6703", + "URL": "https://app.meldrx.com/api/fhir/paydc_6703", "OrganizationName": "DePietro Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6705", + "URL": "https://app.meldrx.com/api/fhir/paydc_6705", "OrganizationName": "Rosetree Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6706", + "URL": "https://app.meldrx.com/api/fhir/paydc_6706", "OrganizationName": "Revival Health Group PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6707", + "URL": "https://app.meldrx.com/api/fhir/paydc_6707", "OrganizationName": "Unity Chiropractic and Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6709", + "URL": "https://app.meldrx.com/api/fhir/paydc_6709", "OrganizationName": "Ruegsegger Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6710", + "URL": "https://app.meldrx.com/api/fhir/paydc_6710", "OrganizationName": "Trinity Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6711", + "URL": "https://app.meldrx.com/api/fhir/paydc_6711", "OrganizationName": "Advanced Wellness and Therapy Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6712", + "URL": "https://app.meldrx.com/api/fhir/paydc_6712", "OrganizationName": "Expressions of Life Chiropractic Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6713", + "URL": "https://app.meldrx.com/api/fhir/paydc_6713", "OrganizationName": "Angel Hands Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6714", + "URL": "https://app.meldrx.com/api/fhir/paydc_6714", "OrganizationName": "Nauvoo Health \u0026 Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6715", + "URL": "https://app.meldrx.com/api/fhir/paydc_6715", "OrganizationName": "Joffe Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6716", + "URL": "https://app.meldrx.com/api/fhir/paydc_6716", "OrganizationName": "Cao Integrated PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6717", + "URL": "https://app.meldrx.com/api/fhir/paydc_6717", "OrganizationName": "Myint Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6719", + "URL": "https://app.meldrx.com/api/fhir/paydc_6719", "OrganizationName": "Rebisz Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6720", + "URL": "https://app.meldrx.com/api/fhir/paydc_6720", "OrganizationName": "Booher Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6721", + "URL": "https://app.meldrx.com/api/fhir/paydc_6721", "OrganizationName": "Long Legacy Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6722", + "URL": "https://app.meldrx.com/api/fhir/paydc_6722", "OrganizationName": "Paul M. Bizzaro DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6723", + "URL": "https://app.meldrx.com/api/fhir/paydc_6723", "OrganizationName": "Allegheny Valley Chiropractic Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6725", + "URL": "https://app.meldrx.com/api/fhir/paydc_6725", "OrganizationName": "Jan Account New", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6726", + "URL": "https://app.meldrx.com/api/fhir/paydc_6726", "OrganizationName": "Balanced Body Chiropractic LLC, dba Orchid Springs Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6727", + "URL": "https://app.meldrx.com/api/fhir/paydc_6727", "OrganizationName": "Sonquist Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6728", + "URL": "https://app.meldrx.com/api/fhir/paydc_6728", "OrganizationName": "Prince Chiropractic Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6729", + "URL": "https://app.meldrx.com/api/fhir/paydc_6729", "OrganizationName": "Stedman Chiropractic Centre PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6730", + "URL": "https://app.meldrx.com/api/fhir/paydc_6730", "OrganizationName": "DBA Advanced Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6731", + "URL": "https://app.meldrx.com/api/fhir/paydc_6731", "OrganizationName": "Precision Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6732", + "URL": "https://app.meldrx.com/api/fhir/paydc_6732", "OrganizationName": "Chicot Chiropractic PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6733", + "URL": "https://app.meldrx.com/api/fhir/paydc_6733", "OrganizationName": "Merrill Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6734", + "URL": "https://app.meldrx.com/api/fhir/paydc_6734", "OrganizationName": "Touchpoint Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6735", + "URL": "https://app.meldrx.com/api/fhir/paydc_6735", "OrganizationName": "Staten Chiropractic \u0026 Wellness Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6736", + "URL": "https://app.meldrx.com/api/fhir/paydc_6736", "OrganizationName": "Rebisz Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6737", + "URL": "https://app.meldrx.com/api/fhir/paydc_6737", "OrganizationName": "Paisley Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6738", + "URL": "https://app.meldrx.com/api/fhir/paydc_6738", "OrganizationName": "John J Giovanelli DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6739", + "URL": "https://app.meldrx.com/api/fhir/paydc_6739", "OrganizationName": "Dr Walter Fermin DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6742", + "URL": "https://app.meldrx.com/api/fhir/paydc_6742", "OrganizationName": "We Adjust That...Chiropractic Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6743", + "URL": "https://app.meldrx.com/api/fhir/paydc_6743", "OrganizationName": "Barrick Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6744", + "URL": "https://app.meldrx.com/api/fhir/paydc_6744", "OrganizationName": "Joint Pain Specialists PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6745", + "URL": "https://app.meldrx.com/api/fhir/paydc_6745", "OrganizationName": "Nicholas B Houston DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6746", + "URL": "https://app.meldrx.com/api/fhir/paydc_6746", "OrganizationName": "Schoepp Family Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6748", + "URL": "https://app.meldrx.com/api/fhir/paydc_6748", "OrganizationName": "Essentially Innate Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6750", + "URL": "https://app.meldrx.com/api/fhir/paydc_6750", "OrganizationName": "Kobler Chiropractic and Acupuncture LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6751", + "URL": "https://app.meldrx.com/api/fhir/paydc_6751", "OrganizationName": "Cascade Chiropractic PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6754", + "URL": "https://app.meldrx.com/api/fhir/paydc_6754", "OrganizationName": "Fraser Valley Chiropractic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6755", + "URL": "https://app.meldrx.com/api/fhir/paydc_6755", "OrganizationName": "Strother District Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6759", + "URL": "https://app.meldrx.com/api/fhir/paydc_6759", "OrganizationName": "Harris Chiropractic and Acupuncture", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6761", + "URL": "https://app.meldrx.com/api/fhir/paydc_6761", "OrganizationName": "Disc Centers of America-Brookfield LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6762", + "URL": "https://app.meldrx.com/api/fhir/paydc_6762", "OrganizationName": "Devine Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6765", + "URL": "https://app.meldrx.com/api/fhir/paydc_6765", "OrganizationName": "Inland Empire Healthcare Management Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6767", + "URL": "https://app.meldrx.com/api/fhir/paydc_6767", "OrganizationName": "Chiropractic Rehabilitation Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6770", + "URL": "https://app.meldrx.com/api/fhir/paydc_6770", "OrganizationName": "Sean Higgins DC PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6771", + "URL": "https://app.meldrx.com/api/fhir/paydc_6771", "OrganizationName": "Garner Health Upper Cervical Chiropractic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6772", + "URL": "https://app.meldrx.com/api/fhir/paydc_6772", "OrganizationName": "Waldron Chiropractic \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6773", + "URL": "https://app.meldrx.com/api/fhir/paydc_6773", "OrganizationName": "Azure Sky Chiropractic and Scar Tissue Remediation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6774", + "URL": "https://app.meldrx.com/api/fhir/paydc_6774", "OrganizationName": "Integrated Chiropractic of Cache Valley", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6775", + "URL": "https://app.meldrx.com/api/fhir/paydc_6775", "OrganizationName": "Long Chiropractic Inc, d/b/a Town Center Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6776", + "URL": "https://app.meldrx.com/api/fhir/paydc_6776", "OrganizationName": "Barnes Wellness Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6777", + "URL": "https://app.meldrx.com/api/fhir/paydc_6777", "OrganizationName": "Freed Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6778", + "URL": "https://app.meldrx.com/api/fhir/paydc_6778", "OrganizationName": "Wright Chiropractic,PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6780", + "URL": "https://app.meldrx.com/api/fhir/paydc_6780", "OrganizationName": "BRD Wellness, PLLC - Serenity Health Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6781", + "URL": "https://app.meldrx.com/api/fhir/paydc_6781", "OrganizationName": "Piche Family Chiropractic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6782", + "URL": "https://app.meldrx.com/api/fhir/paydc_6782", "OrganizationName": "MakProd", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6783", + "URL": "https://app.meldrx.com/api/fhir/paydc_6783", "OrganizationName": "Cenk Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6784", + "URL": "https://app.meldrx.com/api/fhir/paydc_6784", "OrganizationName": "Mid-Mo Chiropractic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6785", + "URL": "https://app.meldrx.com/api/fhir/paydc_6785", "OrganizationName": "Hornbeck Chiropractic and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6787", + "URL": "https://app.meldrx.com/api/fhir/paydc_6787", "OrganizationName": "Front Range Sports Medicine - PMIN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6788", + "URL": "https://app.meldrx.com/api/fhir/paydc_6788", "OrganizationName": "Alliance Health Partners � PMIN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6789", + "URL": "https://app.meldrx.com/api/fhir/paydc_6789", "OrganizationName": "Absolute Health Center Inc - PMIN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6790", + "URL": "https://app.meldrx.com/api/fhir/paydc_6790", "OrganizationName": "BeActive LLC d/b/a BeActive Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6791", + "URL": "https://app.meldrx.com/api/fhir/paydc_6791", "OrganizationName": "Brunswick Chiropractic Center of New Jersey LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6792", + "URL": "https://app.meldrx.com/api/fhir/paydc_6792", "OrganizationName": "Princeton Spine Disc and Chiropractic Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6793", + "URL": "https://app.meldrx.com/api/fhir/paydc_6793", "OrganizationName": "Scott Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6794", + "URL": "https://app.meldrx.com/api/fhir/paydc_6794", "OrganizationName": "633 Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6795", + "URL": "https://app.meldrx.com/api/fhir/paydc_6795", "OrganizationName": "United Spine and Ortho", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6796", + "URL": "https://app.meldrx.com/api/fhir/paydc_6796", "OrganizationName": "Chiropractic Professionals of Columbia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6797", + "URL": "https://app.meldrx.com/api/fhir/paydc_6797", "OrganizationName": "Pagano Chiropractic Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6798", + "URL": "https://app.meldrx.com/api/fhir/paydc_6798", "OrganizationName": "Chiropractic Body Works, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6799", + "URL": "https://app.meldrx.com/api/fhir/paydc_6799", "OrganizationName": "INNATE CHIROPRACTIC, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6800", + "URL": "https://app.meldrx.com/api/fhir/paydc_6800", "OrganizationName": "Elite Rehabilitation Institute Braidwood LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6801", + "URL": "https://app.meldrx.com/api/fhir/paydc_6801", "OrganizationName": "Big River Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6802", + "URL": "https://app.meldrx.com/api/fhir/paydc_6802", "OrganizationName": "Premier Chiropractic \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6803", + "URL": "https://app.meldrx.com/api/fhir/paydc_6803", "OrganizationName": "Chiro Worx Injury Center Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6804", + "URL": "https://app.meldrx.com/api/fhir/paydc_6804", "OrganizationName": "Cedar Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6806", + "URL": "https://app.meldrx.com/api/fhir/paydc_6806", "OrganizationName": "Valrico Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6807", + "URL": "https://app.meldrx.com/api/fhir/paydc_6807", "OrganizationName": "Rehab Chiropractic Network, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6808", + "URL": "https://app.meldrx.com/api/fhir/paydc_6808", "OrganizationName": "Radke Chiropractic Office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6809", + "URL": "https://app.meldrx.com/api/fhir/paydc_6809", "OrganizationName": "Fischer Chiropractic \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6810", + "URL": "https://app.meldrx.com/api/fhir/paydc_6810", "OrganizationName": "North Davis Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6813", + "URL": "https://app.meldrx.com/api/fhir/paydc_6813", "OrganizationName": "Total Health Solutions LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6814", + "URL": "https://app.meldrx.com/api/fhir/paydc_6814", "OrganizationName": "Relief \u0026 Rehab Center of Atlanta", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6815", + "URL": "https://app.meldrx.com/api/fhir/paydc_6815", "OrganizationName": "O'Malley Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6816", + "URL": "https://app.meldrx.com/api/fhir/paydc_6816", "OrganizationName": "Health Goals Chiropractic Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6817", + "URL": "https://app.meldrx.com/api/fhir/paydc_6817", "OrganizationName": "Herrington Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6818", + "URL": "https://app.meldrx.com/api/fhir/paydc_6818", "OrganizationName": "Palmer Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6819", + "URL": "https://app.meldrx.com/api/fhir/paydc_6819", "OrganizationName": "FamilyLifeMedical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6820", + "URL": "https://app.meldrx.com/api/fhir/paydc_6820", "OrganizationName": "Lagniappe Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6821", + "URL": "https://app.meldrx.com/api/fhir/paydc_6821", "OrganizationName": "Advanced Spinal Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6822", + "URL": "https://app.meldrx.com/api/fhir/paydc_6822", "OrganizationName": "New Hope Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6825", + "URL": "https://app.meldrx.com/api/fhir/paydc_6825", "OrganizationName": "Twisted Spine Rehabilitation LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6826", + "URL": "https://app.meldrx.com/api/fhir/paydc_6826", "OrganizationName": "Carson Chiropractic Clinic (Marvin Carson DC PC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6827", + "URL": "https://app.meldrx.com/api/fhir/paydc_6827", "OrganizationName": "Drs Evans PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6828", + "URL": "https://app.meldrx.com/api/fhir/paydc_6828", "OrganizationName": "Green Mountain Chiropractic and Massage � SMIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6829", + "URL": "https://app.meldrx.com/api/fhir/paydc_6829", "OrganizationName": "Suburban Orthopaedic Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6830", + "URL": "https://app.meldrx.com/api/fhir/paydc_6830", "OrganizationName": "Porreca Chiropractic Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6831", + "URL": "https://app.meldrx.com/api/fhir/paydc_6831", "OrganizationName": "Southwest Michigan Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6832", + "URL": "https://app.meldrx.com/api/fhir/paydc_6832", "OrganizationName": "Poindexter Chiropractic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6833", + "URL": "https://app.meldrx.com/api/fhir/paydc_6833", "OrganizationName": "Fenster Management Corp", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6834", + "URL": "https://app.meldrx.com/api/fhir/paydc_6834", "OrganizationName": "Bohac Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6835", + "URL": "https://app.meldrx.com/api/fhir/paydc_6835", "OrganizationName": "Best Care Joint Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6836", + "URL": "https://app.meldrx.com/api/fhir/paydc_6836", "OrganizationName": "Miller Family Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6843", + "URL": "https://app.meldrx.com/api/fhir/paydc_6843", "OrganizationName": "Losagio Chiropractic Center Inc. (DBA) Disc Centers of America", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6844", + "URL": "https://app.meldrx.com/api/fhir/paydc_6844", "OrganizationName": "Dr. Gomez Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6848", + "URL": "https://app.meldrx.com/api/fhir/paydc_6848", "OrganizationName": "Advanced Health \u0026 Rehab Center DBA New Leaf Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6851", + "URL": "https://app.meldrx.com/api/fhir/paydc_6851", "OrganizationName": "Spine and Disc Center of Washington, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc28870_urologyhealthcenter", + "URL": "https://app.meldrx.com/api/fhir/uc28870_urologyhealthcenter", "OrganizationName": "Adult Pediatric Urology \u0026 Urogynecology - 28870", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27741_advancedurologyassociatesbrooklyn", + "URL": "https://app.meldrx.com/api/fhir/uc27741_advancedurologyassociatesbrooklyn", "OrganizationName": "Advanced Urology Associates, P.C. - 27741", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05411_auipanamacity", + "URL": "https://app.meldrx.com/api/fhir/uc05411_auipanamacity", "OrganizationName": "Advanced Urology Institute 1062 fka Panama City Urological Center 1062 - 5411", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08738_atlanticurologicalassociates", + "URL": "https://app.meldrx.com/api/fhir/uc08738_atlanticurologicalassociates", "OrganizationName": "Advanced Urology Institute f/k/a Atlantic Urological Associates - 33379", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35356_centralfloridaurospecialists", + "URL": "https://app.meldrx.com/api/fhir/uc35356_centralfloridaurospecialists", "OrganizationName": "Advanced Urology Institute, LLC - 35356", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc41222_advuroswflorida", + "URL": "https://app.meldrx.com/api/fhir/uc41222_advuroswflorida", "OrganizationName": "Advanced Urology Institute, LLC fka Advanced Urology of Southwest Florida, LLC - 41222", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35580_advanceduromedoffices", + "URL": "https://app.meldrx.com/api/fhir/uc35580_advanceduromedoffices", "OrganizationName": "Advanced Urology Medical Offices (LA) - 35580", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05284_advancedurologyofsouthflorida", + "URL": "https://app.meldrx.com/api/fhir/uc05284_advancedurologyofsouthflorida", "OrganizationName": "Advanced Urology of South Florida - 5284", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc40946_affurologistsofoc", + "URL": "https://app.meldrx.com/api/fhir/uc40946_affurologistsofoc", "OrganizationName": "Affiliated Urologists of Orange County - 40946", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc03768_alanschneidermd", + "URL": "https://app.meldrx.com/api/fhir/uc03768_alanschneidermd", "OrganizationName": "Alan Schneider, MD - 21C - 29019", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06310_albanyurologyclinic", + "URL": "https://app.meldrx.com/api/fhir/uc06310_albanyurologyclinic", "OrganizationName": "Albany Urology Clinic - 31163", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09032_suracisrinivasanuro", + "URL": "https://app.meldrx.com/api/fhir/uc09032_suracisrinivasanuro", "OrganizationName": "Aldo J. Suraci, M.D., P.C. 1298 - 9032", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc40982_advuromedcenter", + "URL": "https://app.meldrx.com/api/fhir/uc40982_advuromedcenter", "OrganizationName": "Alfred A. Sidhom, M.D., A Professional Corporation dba Advanced Urology Medical Center - 40982", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc02757_alfredshtainermd", + "URL": "https://app.meldrx.com/api/fhir/uc02757_alfredshtainermd", "OrganizationName": "Alfred Shtainer, M.D. - 28161", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35194_allanklaimanmd", + "URL": "https://app.meldrx.com/api/fhir/uc35194_allanklaimanmd", "OrganizationName": "Allan Klaiman, M.D. - 35194", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29199_allianceurologyspecialistspa", + "URL": "https://app.meldrx.com/api/fhir/uc29199_allianceurologyspecialistspa", "OrganizationName": "Alliance Urology Specialists, P.A. - 29199", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc5936_alvaradolamesaurology", + "URL": "https://app.meldrx.com/api/fhir/uc5936_alvaradolamesaurology", "OrganizationName": "Alvarado La Mesa Urology 1185 - 5936", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc28024_annearundelurologypa", + "URL": "https://app.meldrx.com/api/fhir/uc28024_annearundelurologypa", "OrganizationName": "Anne Arundel Urology, PA - 28024", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11163_antonychenmd", + "URL": "https://app.meldrx.com/api/fhir/uc11163_antonychenmd", "OrganizationName": "Antony Chen, MD - 35528", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc8427_asmedicalpc", + "URL": "https://app.meldrx.com/api/fhir/uc8427_asmedicalpc", "OrganizationName": "AS Medical, P.C. - 8427", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06405_ashevilleurologicalassocinc", + "URL": "https://app.meldrx.com/api/fhir/uc06405_ashevilleurologicalassocinc", "OrganizationName": "Asheville Urological Associates - 21C - 5006", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35511_ashwinshahmd", + "URL": "https://app.meldrx.com/api/fhir/uc35511_ashwinshahmd", "OrganizationName": "Ashwin Shah, MD - 35511", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35342_associatedurologistsofnc", + "URL": "https://app.meldrx.com/api/fhir/uc35342_associatedurologistsofnc", "OrganizationName": "Associated Urologists of North Carolina, P.A. - 35342", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27781_associatesinurologyofworcester", + "URL": "https://app.meldrx.com/api/fhir/uc27781_associatesinurologyofworcester", "OrganizationName": "Associates in Urology of Worcester, P.C. - 27781", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34772_atlanticcoasturology", + "URL": "https://app.meldrx.com/api/fhir/uc34772_atlanticcoasturology", "OrganizationName": "Atlantic Coast Urology, PA - 34772", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08306_augustoetiradomd", + "URL": "https://app.meldrx.com/api/fhir/uc08306_augustoetiradomd", "OrganizationName": "Augusto E Tirado, MD - 21C SFM - 32982", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc28074_edwardjrosenthal", + "URL": "https://app.meldrx.com/api/fhir/uc28074_edwardjrosenthal", "OrganizationName": "Aurora Medical Group, Inc. (\"AMG Urology\") - 28074", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34180_azeemmsachedinamd", + "URL": "https://app.meldrx.com/api/fhir/uc34180_azeemmsachedinamd", "OrganizationName": "Azeem M Sachedina, MD - 21C - 34180", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09995_baystateurologistsinc", + "URL": "https://app.meldrx.com/api/fhir/uc09995_baystateurologistsinc", "OrganizationName": "Bay State Urologists Inc - 34475", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08540_benjaminpengmd", + "URL": "https://app.meldrx.com/api/fhir/uc08540_benjaminpengmd", "OrganizationName": "Benjamin C. Peng, MD - 33200", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc02967_blueridgeurologicalassoc", + "URL": "https://app.meldrx.com/api/fhir/uc05509_bighornurology", + "OrganizationName": "Big Horn Urology 1299 - 5509", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc02967_blueridgeurologicalassoc", "OrganizationName": "Blue Ridge Urological Associates PC - 28332", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11121_bluewaterurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc11121_bluewaterurologyassociates", "OrganizationName": "Blue Water Urology Associates - 35473", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06086_bradleyruppmd", + "URL": "https://app.meldrx.com/api/fhir/uc06086_bradleyruppmd", "OrganizationName": "Bradley Rupp, MD 1175 - 6086", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06653_craigrinderllc", + "URL": "https://app.meldrx.com/api/fhir/uc06653_craigrinderllc", "OrganizationName": "Brattleboro Memorial Hospital - 31471", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08654_brianheatonmd", + "URL": "https://app.meldrx.com/api/fhir/uc08654_brianheatonmd", "OrganizationName": "Brian Heaton, MD - 33306", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06681_brookhavenurology", + "URL": "https://app.meldrx.com/api/fhir/uc06681_brookhavenurology", "OrganizationName": "Brookhaven Urology PA - 31499", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc03521_faueryogelchenven", + "URL": "https://app.meldrx.com/api/fhir/uc03521_faueryogelchenven", "OrganizationName": "Broward Urology Center - 21C - 28807", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06039_capegirardeauuroassoc", + "URL": "https://app.meldrx.com/api/fhir/uc06039_capegirardeauuroassoc", "OrganizationName": "Cape Girardeau Urology Associates 1294 - 6039", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32393_carolinaurologypartners", + "URL": "https://app.meldrx.com/api/fhir/uc32393_carolinaurologypartners", "OrganizationName": "Carolina Urology Partners - 32393", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27777_cenlaurologyclinic", + "URL": "https://app.meldrx.com/api/fhir/uc27777_cenlaurologyclinic", "OrganizationName": "Cenla Urology Clinic, LLC 1364 - 27777", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc33702_centerforadvancedurologysalem", + "URL": "https://app.meldrx.com/api/fhir/uc33702_centerforadvancedurologysalem", "OrganizationName": "Center for Advanced Urology - 33702", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc42923_centeradvurorobot", + "URL": "https://app.meldrx.com/api/fhir/uc42923_centeradvurorobot", "OrganizationName": "Center for Advanced Urology and Robotics - 42923", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc33584_centerforurologiccare", + "URL": "https://app.meldrx.com/api/fhir/uc33584_centerforurologiccare", "OrganizationName": "Center for Urologic Care of Berks County PC - 33584", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27749_ucofsepa", + "URL": "https://app.meldrx.com/api/fhir/uc27749_ucofsepa", "OrganizationName": "Centers for Advanced Urology d/b/a MidLantic Urology f/k/a Urologic Consultants of Southeastern Pennsylvania, LLP - 27749", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27797_academicurologyofpennsylvania", + "URL": "https://app.meldrx.com/api/fhir/uc27797_academicurologyofpennsylvania", "OrganizationName": "Centers for Advanced Urology d/b/a MidLantic Urology fka Academic Urology of Pennsylvania, LLC - 27797", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09924_centraltexasurology", + "URL": "https://app.meldrx.com/api/fhir/uc09924_centraltexasurology", "OrganizationName": "Central Texas Urology - 34412", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc31617_chaboturologymedicalassociates", + "URL": "https://app.meldrx.com/api/fhir/uc31617_chaboturologymedicalassociates", "OrganizationName": "Chabot Urology Medical Associates - CIMplify - 31617", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc30602_urologicalconsultantspa", + "URL": "https://app.meldrx.com/api/fhir/uc30602_urologicalconsultantspa", "OrganizationName": "Chesapeake Urology Associates, LLC - 30602", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09177_chimemchaturoassc", + "URL": "https://app.meldrx.com/api/fhir/uc09177_chimemchaturoassc", "OrganizationName": "CHI Memorial Chattanooga Urology Associates 1194 - 9177", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05366_clevelandurologyassc", + "URL": "https://app.meldrx.com/api/fhir/uc05366_clevelandurologyassc", "OrganizationName": "Cleveland Urology Associates 1050 - 5366", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc41296_cliffordgluckmd", + "URL": "https://app.meldrx.com/api/fhir/uc41296_cliffordgluckmd", "OrganizationName": "Clifford D. Gluck MD, PLLC - 41296", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27735_clinicalurologygadsden", + "URL": "https://app.meldrx.com/api/fhir/uc27735_clinicalurologygadsden", "OrganizationName": "Clinical Urology Associates, PC - 27735", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35581_columbiauroassoc", + "URL": "https://app.meldrx.com/api/fhir/uc35581_columbiauroassoc", "OrganizationName": "Columbia Urological Associates 1035 - 35581", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11144_commonwealthurology", + "URL": "https://app.meldrx.com/api/fhir/uc11144_commonwealthurology", "OrganizationName": "Commonwealth Urology - 35494", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc07055_corpuschristiurologygroup", + "URL": "https://app.meldrx.com/api/fhir/uc07055_corpuschristiurologygroup", "OrganizationName": "Corpus Christi Urology Group, PLLC - 31842", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06295_covinavalleyuromedgroup", + "URL": "https://app.meldrx.com/api/fhir/uc06295_covinavalleyuromedgroup", "OrganizationName": "Covina Valley Urologic Medical Group, Inc. 1284 - 6295", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09816_arizonainstituteofurology", + "URL": "https://app.meldrx.com/api/fhir/uc09816_arizonainstituteofurology", "OrganizationName": "CUA Opco LLC d/b/a United Urology Group f/k/a Arizona Institute of Urology PLLC - 34325", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08494_danhibbertmd", + "URL": "https://app.meldrx.com/api/fhir/uc08494_danhibbertmd", "OrganizationName": "Dan Hibbert, MD 1200 - 8494", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05034_danieljcosgrove", + "URL": "https://app.meldrx.com/api/fhir/uc05034_danieljcosgrove", "OrganizationName": "Daniel J. Cosgrove, M.D., Inc. 1145 - 5034", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc10050_danielkhellersteinmd", + "URL": "https://app.meldrx.com/api/fhir/uc10050_danielkhellersteinmd", "OrganizationName": "Daniel K Hellerstein, MD - 21C SFM - 34523", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09483_southsideurologynephrology", + "URL": "https://app.meldrx.com/api/fhir/uc09483_southsideurologynephrology", "OrganizationName": "Danville Urologic Clinic, Inc. d/b/a Southside Urology \u0026 Nephrology 1266 - 9483", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08542_davidhommd", + "URL": "https://app.meldrx.com/api/fhir/uc08289_darwichbejany", + "OrganizationName": "Darwich E Bejany, MD - 21C SFM - 32966", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc08542_davidhommd", "OrganizationName": "David Hom, MD - 33202", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06605_sandsmd", + "URL": "https://app.meldrx.com/api/fhir/uc06605_sandsmd", "OrganizationName": "David Schwartzwald M.D., P.A. - 31430", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc31780_dennisortiz", + "URL": "https://app.meldrx.com/api/fhir/uc31780_dennisortiz", "OrganizationName": "Dennis L Ortiz, DO - 31780", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc5317_dfwurologyconsultants", + "URL": "https://app.meldrx.com/api/fhir/uc5317_dfwurologyconsultants", "OrganizationName": "DFW Urology Consultants - 5317", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc33968_douglasankrommd", + "URL": "https://app.meldrx.com/api/fhir/uc33968_douglasankrommd", "OrganizationName": "Douglas Ankrom, MD - 33968", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11133_drnaeemchavla", + "URL": "https://app.meldrx.com/api/fhir/uc11133_drnaeemchavla", "OrganizationName": "Dr. Naeem Chavla 1239 - 11133", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29409_levinereigleandschneiderinc", + "URL": "https://app.meldrx.com/api/fhir/uc29409_levinereigleandschneiderinc", "OrganizationName": "Drs. Levine, Reigle, Schneider \u0026 Davili, Inc. - 29409", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc41189_eastvalleyurologycenter", + "URL": "https://app.meldrx.com/api/fhir/uc41189_eastvalleyurologycenter", "OrganizationName": "East Valley Urology Center - 41189", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc40928_erikpasinmd", + "URL": "https://app.meldrx.com/api/fhir/uc33419_ericmpachtermd", + "OrganizationName": "Eric M Pachter, MD - 21C - 33419", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc40928_erikpasinmd", "OrganizationName": "Erik Pasin, MD Inc. - 40928", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08009_ernestolopezmd", + "URL": "https://app.meldrx.com/api/fhir/uc08009_ernestolopezmd", "OrganizationName": "Ernesto Lopez, M.D. - 32706", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05951_advurocontinencecenter", + "URL": "https://app.meldrx.com/api/fhir/uc05951_advurocontinencecenter", "OrganizationName": "FCHC Medical Care, LLC, West Ohio Urology 1159 - 5951", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc33839_urologytreatmentcenter", + "URL": "https://app.meldrx.com/api/fhir/uc33839_urologytreatmentcenter", "OrganizationName": "Florida Urology Specialists - 21C - 33839", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc31561_frankelreedandevans", + "URL": "https://app.meldrx.com/api/fhir/uc31561_frankelreedandevans", "OrganizationName": "Frankel Reed \u0026 Evans - 31561", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35130_gardenstateurology", + "URL": "https://app.meldrx.com/api/fhir/uc35130_gardenstateurology", "OrganizationName": "Garden State Urology, LLC - 35130", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06272_garycbellmanmd", + "URL": "https://app.meldrx.com/api/fhir/uc06272_garycbellmanmd", "OrganizationName": "Gary C. Bellman, M.D., A Professional Corporation 1335 - 6272", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc52665_genesiscareurology", + "URL": "https://app.meldrx.com/api/fhir/uc52665_genesiscareurology", "OrganizationName": "GenesisCare Urology (GCU) - 21C - 52665", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08014_northatlantaurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc08014_northatlantaurologyassociates", "OrganizationName": "Georgia Urology, PA - 32709", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05349_middletonurologicalassociates", + "URL": "https://app.meldrx.com/api/fhir/uc02492_ghassanhamady", + "OrganizationName": "Ghassan Hamady, MD - 21C SFM - 27958", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc05349_middletonurologicalassociates", "OrganizationName": "Granger Medical Clinic, P.C. fka Middleton Urological Associates - 5349", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27752_westernurologicalclinic", + "URL": "https://app.meldrx.com/api/fhir/uc27752_westernurologicalclinic", "OrganizationName": "Granger Medical Clinic, P.C. fka Western Urological Clinic - 27752", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc02267_grantdisickmd", + "URL": "https://app.meldrx.com/api/fhir/uc02267_grantdisickmd", "OrganizationName": "Grant Disick MD - GenesisCare - 27721", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32697_guinc", + "URL": "https://app.meldrx.com/api/fhir/uc32697_guinc", "OrganizationName": "GU, Inc. - 32697", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc07750_johnbertinimd", + "URL": "https://app.meldrx.com/api/fhir/uc07750_johnbertinimd", "OrganizationName": "Gulf Coast Urology (formerly John Bertini MD) - 32468", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35285_gulfregionurology", + "URL": "https://app.meldrx.com/api/fhir/uc35285_gulfregionurology", "OrganizationName": "Gulf Region Urology - 35285", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09166_hixsonurology", + "URL": "https://app.meldrx.com/api/fhir/uc09166_hixsonurology", "OrganizationName": "Hixson Urology, PC 1275 - 9166", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29094_rotolohowardandleitner", + "URL": "https://app.meldrx.com/api/fhir/uc29094_rotolohowardandleitner", "OrganizationName": "Howard Leitner \u0026 Perlmutter Urologic Associates LLC - 29094", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc28918_illinoisurologichealthsurgeons", + "URL": "https://app.meldrx.com/api/fhir/uc28918_illinoisurologichealthsurgeons", "OrganizationName": "Illinois Urologic Health Surgeons - 28918", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc31124_internationalroboticprostatectomyinstitute", + "URL": "https://app.meldrx.com/api/fhir/uc31124_internationalroboticprostatectomyinstitute", "OrganizationName": "International Robotic Prostatectomy Institute - 31124", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05401_janthonyshaheenmd", + "URL": "https://app.meldrx.com/api/fhir/uc05401_janthonyshaheenmd", "OrganizationName": "J. Anthony Shaheen, M.D., Inc. 1043 - 5401", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc39067_jantonioalarconmdinc", - "OrganizationName": "J. Antonio Alarcon, M.D., Inc. - 39067", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.meldrx.com/fhir/uc39240_jamesrotolomd", + "URL": "https://app.meldrx.com/api/fhir/uc39240_jamesrotolomd", "OrganizationName": "James E. Rotolo, MD, FACS, PA - 39240", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06661_jeffreydsmallmd", + "URL": "https://app.meldrx.com/api/fhir/uc06661_jeffreydsmallmd", "OrganizationName": "Jeffrey D. Small, M.D - 31479", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27964_jeffreymarksmd", + "URL": "https://app.meldrx.com/api/fhir/uc27964_jeffreymarksmd", "OrganizationName": "Jeffrey Marks, MD - 27964", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32973_joseachamorromd", + "URL": "https://app.meldrx.com/api/fhir/uc32973_joseachamorromd", "OrganizationName": "Jose A Chamorro, MD - 21C SFM - 32973", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc38992_josephnavonmd", + "URL": "https://app.meldrx.com/api/fhir/uc38992_josephnavonmd", "OrganizationName": "Joseph Navon, MD - 38992", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc07486_khoitangmd", + "URL": "https://app.meldrx.com/api/fhir/uc07486_khoitangmd", "OrganizationName": "Khoi Tang, MD 1180 - 6541", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08536_kinluimd", + "URL": "https://app.meldrx.com/api/fhir/uc08536_kinluimd", "OrganizationName": "Kin Lui, MD - 33196", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc03530_lakeviewcenterforurology", + "URL": "https://app.meldrx.com/api/fhir/uc03530_lakeviewcenterforurology", "OrganizationName": "Lakeview Center For Urology - 28815", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05097_lansinginstituteofurology", + "URL": "https://app.meldrx.com/api/fhir/uc05097_lansinginstituteofurology", "OrganizationName": "Lansing Institute of Urology 1263 - 5097", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc04179_lvurology", + "URL": "https://app.meldrx.com/api/fhir/uc04179_lvurology", "OrganizationName": "Las Vegas Urology - 29365", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06469_lonestarurology", + "URL": "https://app.meldrx.com/api/fhir/uc06469_lonestarurology", "OrganizationName": "Lone Star Urology - 31299", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32165_lonestarurology", + "URL": "https://app.meldrx.com/api/fhir/uc32165_lonestarurology", "OrganizationName": "LoneStar Urology - 32165", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05285_louisianaurology", + "URL": "https://app.meldrx.com/api/fhir/uc05285_louisianaurology", "OrganizationName": "Louisiana Urology 1303 - 5285", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29454_manishmehtamd", + "URL": "https://app.meldrx.com/api/fhir/uc29454_manishmehtamd", "OrganizationName": "Manish Mehta, M.D., Inc. - 29454", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08889_marcmelsermd", + "URL": "https://app.meldrx.com/api/fhir/uc08889_marcmelsermd", "OrganizationName": "Marc Melser, MD - 21C - 33520", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08531_marcusloomd", + "URL": "https://app.meldrx.com/api/fhir/uc08531_marcusloomd", "OrganizationName": "Marcus H Loo, MD - 33191", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06074_markdfritzler", + "URL": "https://app.meldrx.com/api/fhir/uc07462_marinelliandfeldman", + "OrganizationName": "Marinelli \u0026 Feldman - 32205", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc06074_markdfritzler", "OrganizationName": "Mark D Fritzler, MD 1288 - 6074", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29507_martinandplunkett", + "URL": "https://app.meldrx.com/api/fhir/uc29507_martinandplunkett", "OrganizationName": "Martin \u0026 Plunkett - 29507", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09209_associatedurologistsoforangecounty", + "URL": "https://app.meldrx.com/api/fhir/uc09209_associatedurologistsoforangecounty", "OrganizationName": "Matthew L. Greenberger, M.D., Professional Corporation - 33805", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05393_mcgraelurology", + "URL": "https://app.meldrx.com/api/fhir/uc05393_mcgraelurology", "OrganizationName": "McGrael Urology 1053 - 5393", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc6088_metrourogroupsc", + "URL": "https://app.meldrx.com/api/fhir/uc6088_metrourogroupsc", "OrganizationName": "Metropolitan Urology Group, SC 1215 - 6088", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05634_metrowesturologicassoc", + "URL": "https://app.meldrx.com/api/fhir/uc05634_metrowesturologicassoc", "OrganizationName": "MetroWest Urologic Associates, P.C. 1285 - 5634", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35724_miamiurologysexualwellness", + "URL": "https://app.meldrx.com/api/fhir/uc35724_miamiurologysexualwellness", "OrganizationName": "Miami Urology \u0026 Sexual Wellness Institute d/b/a Encore Urology - 35724", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32154_michaelcsolomonmd", + "URL": "https://app.meldrx.com/api/fhir/uc32154_michaelcsolomonmd", "OrganizationName": "Michael C. Solomon, M.D. - 32154", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08924_michaeldanielsmd", + "URL": "https://app.meldrx.com/api/fhir/uc08924_michaeldanielsmd", "OrganizationName": "Michael Daniels, MD 1343 - 8924", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc42926_michaeljhymanmdinc", + "URL": "https://app.meldrx.com/api/fhir/uc42926_michaeljhymanmdinc", "OrganizationName": "Michael J. Hyman, MD, Inc. - 42926", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29598_michiganurologicalclinic", + "URL": "https://app.meldrx.com/api/fhir/uc29598_michiganurologicalclinic", "OrganizationName": "Michigan Urological Clinic - 29598", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29678_middletennesseeurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc29678_middletennesseeurologyassociates", "OrganizationName": "Middle Tennessee Urology - CIMplify - 29678", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc31296_midtownurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc31296_midtownurologyassociates", "OrganizationName": "Midtown Urology Associates - CIMplify - 31296", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35518_milwaukeeurologyspecialists", + "URL": "https://app.meldrx.com/api/fhir/uc35518_milwaukeeurologyspecialists", "OrganizationName": "Milwaukee Urology Specialists - 35518", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32520_mississippiurologyclinic", + "URL": "https://app.meldrx.com/api/fhir/uc32520_mississippiurologyclinic", "OrganizationName": "Mississippi Urology Clinic - CIMplify - 32520", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05404_mountainpeaksurology", + "URL": "https://app.meldrx.com/api/fhir/uc05115_tricountyurologists", + "OrganizationName": "MIU - Michigan Institute of Urology - 5115", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc05404_mountainpeaksurology", "OrganizationName": "Mountain Peaks Urology, P.C. 1086 - 5404", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27996_neourologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc27996_neourologyassociates", "OrganizationName": "N.E.O. Urology Associates, Inc. - 27996", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27726_naplesurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc27726_naplesurologyassociates", "OrganizationName": "Naples Urology Associates - 21C - 27726", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc53515_nashvilleurology", + "URL": "https://app.meldrx.com/api/fhir/uc53515_nashvilleurology", "OrganizationName": "Nashville Urology PC - 53515", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35455_nedstein", + "URL": "https://app.meldrx.com/api/fhir/uc35455_nedstein", "OrganizationName": "Ned Stein MD, FACS, PA - 35455", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc33297_ocalaurologyspecialists", + "URL": "https://app.meldrx.com/api/fhir/uc33297_ocalaurologyspecialists", "OrganizationName": "Norman H. Anderson, M.D., P.A. - 33297", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27791_northalabamaurologypc", + "URL": "https://app.meldrx.com/api/fhir/uc27791_northalabamaurologypc", "OrganizationName": "North Alabama Urology, PC - 27791", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27815_northdfwurology", + "URL": "https://app.meldrx.com/api/fhir/uc27815_northdfwurology", "OrganizationName": "North DFW Urology - 27815", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32209_northeastgeorgiaurologicassoc", + "URL": "https://app.meldrx.com/api/fhir/uc32209_northeastgeorgiaurologicassoc", "OrganizationName": "Northeast Georgia Urologic Assoc - 32209", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc02512_urologicalassociatesofbridgeportpc", + "URL": "https://app.meldrx.com/api/fhir/uc02512_urologicalassociatesofbridgeportpc", "OrganizationName": "Northeast Medical Group - Urology - 27975", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08597_northeasturologicsurgerypc", + "URL": "https://app.meldrx.com/api/fhir/uc08597_northeasturologicsurgerypc", "OrganizationName": "Northeast Urologic Surgery, P.C. - 33252", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05134_northwestiowaurologists", + "URL": "https://app.meldrx.com/api/fhir/uc05134_northwestiowaurologists", "OrganizationName": "Northwest Iowa Urologists 1209 - 5134", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05804_northwesturologicalclinic", + "URL": "https://app.meldrx.com/api/fhir/uc05804_northwesturologicalclinic", "OrganizationName": "Northwest Urology, LLC - 5804", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32639_orangecountyurologyassociatesinc", + "URL": "https://app.meldrx.com/api/fhir/uc32639_orangecountyurologyassociatesinc", "OrganizationName": "Orange County Urology Associates, Inc. - 32639", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27753_orlandourologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc27753_orlandourologyassociates", "OrganizationName": "Orlando Urology Associates - 27753", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05139_pacificuroinstitute", + "URL": "https://app.meldrx.com/api/fhir/uc05139_pacificuroinstitute", "OrganizationName": "Pacific Urology Institute 1206 - 5139", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09646_palouseurology", + "URL": "https://app.meldrx.com/api/fhir/uc29833_palmbeachurology", + "OrganizationName": "Palm Beach Urology Associates, PA - 21C SFM - 29833", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc09646_palouseurology", "OrganizationName": "Palouse Urology 1196 - 9646", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc33432_philadelphiauroasscpc", + "URL": "https://app.meldrx.com/api/fhir/uc33432_philadelphiauroasscpc", "OrganizationName": "Philadelphia Urology Associates, PC 1084 - 33432", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11142_phoenixurology", + "URL": "https://app.meldrx.com/api/fhir/uc11142_phoenixurology", "OrganizationName": "Phoenix Urology 1252 - 11142", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35525_physicianreliancellc", + "URL": "https://app.meldrx.com/api/fhir/uc35525_physicianreliancellc", "OrganizationName": "Physician Reliance, LLC - 35525", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05602_womenshealthspeccare", + "URL": "https://app.meldrx.com/api/fhir/uc05602_womenshealthspeccare", "OrganizationName": "Physicians for Women's Health, LLC--DBA Women's Health Specialty Care - 1195 - 5602", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc41192_femuronashville", + "URL": "https://app.meldrx.com/api/fhir/uc41192_femuronashville", "OrganizationName": "Physicians of Tennessee, P.C. - 41192", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc07370_pinnacleurologypc", + "URL": "https://app.meldrx.com/api/fhir/uc07370_pinnacleurologypc", "OrganizationName": "Pinnacle Urology, P.C. - 32120", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27715_premierurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc27715_premierurologyassociates", "OrganizationName": "Premier Urology Associates, Inc. - 27715", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc5987_prescotturology", + "URL": "https://app.meldrx.com/api/fhir/uc5987_prescotturology", "OrganizationName": "Prescott Urology, LTD. 1338 - 5987", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09291_raineguyfukuda", + "URL": "https://app.meldrx.com/api/fhir/uc09291_raineguyfukuda", "OrganizationName": "Raine Gay Fukuda, MD 1257 - 9291", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05416_reddinguroassoc", + "URL": "https://app.meldrx.com/api/fhir/uc05416_reddinguroassoc", "OrganizationName": "Redding Urologic Associates 1124 - 5416", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11165_reconstructiveurologyatrennaissance", + "URL": "https://app.meldrx.com/api/fhir/uc11165_reconstructiveurologyatrennaissance", "OrganizationName": "Renaissance Surgery Group d/b/a The Urology Institute at Renaissance - 35513", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35319_riograndeurology", + "URL": "https://app.meldrx.com/api/fhir/uc35319_riograndeurology", "OrganizationName": "Rio Grande Urology PA 1136 - 35319", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32329_robertbkiddmdapmc", + "URL": "https://app.meldrx.com/api/fhir/uc32329_robertbkiddmdapmc", "OrganizationName": "Robert B. Kidd, MD, APMC - 32329", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc38988_robertbkleinmd", + "URL": "https://app.meldrx.com/api/fhir/uc38988_robertbkleinmd", "OrganizationName": "Robert B. Klein, M.D., Inc. - 38988", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05418_robertwaguespackmd", + "URL": "https://app.meldrx.com/api/fhir/uc05418_robertwaguespackmd", "OrganizationName": "Robert Waguespack, M.D. 1128 - 5418", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35383_rochesterurologypc", + "URL": "https://app.meldrx.com/api/fhir/uc35383_rochesterurologypc", "OrganizationName": "Rochester Urology, PC - 35383", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc30108_rockforduroassoc", + "URL": "https://app.meldrx.com/api/fhir/uc30108_rockforduroassoc", "OrganizationName": "Rockford Urological Associates 1349 - 30108", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32144_ronaldcsiroismd", + "URL": "https://app.meldrx.com/api/fhir/uc32144_ronaldcsiroismd", "OrganizationName": "Ronald C Sirois, MD - 32144", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc36002_rosenbergurology", + "URL": "https://app.meldrx.com/api/fhir/uc36002_rosenbergurology", "OrganizationName": "Rosenberg Urology - 36002", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35531_ryanfriebenmd", + "URL": "https://app.meldrx.com/api/fhir/uc05421_russelldoubrava", + "OrganizationName": "Russell Doubrava, DO 1041 - 5421", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc35531_ryanfriebenmd", "OrganizationName": "Ryan W Frieben, M.D., PA - 35376", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05422_saiurology", + "URL": "https://app.meldrx.com/api/fhir/uc05422_saiurology", "OrganizationName": "SAI Urology, P.A. 1064 - 5422", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc28016_salinaurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc28016_salinaurologyassociates", "OrganizationName": "Salina Urology Associates - 28016", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34213_sanfernandovalleyurological", + "URL": "https://app.meldrx.com/api/fhir/uc34213_sanfernandovalleyurological", "OrganizationName": "San Fernando Valley Urological - 34213", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27552_sanjuanurology", + "URL": "https://app.meldrx.com/api/fhir/uc27552_sanjuanurology", "OrganizationName": "San Juan Urology PSC dba Ricardo J. Saade, MD 1327 - 27552", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08592_santacruzurology", + "URL": "https://app.meldrx.com/api/fhir/uc08592_santacruzurology", "OrganizationName": "Santa Cruz Urology - 33249", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06224_scottsdaleurosurg", + "URL": "https://app.meldrx.com/api/fhir/uc06224_scottsdaleurosurg", "OrganizationName": "Scottsdale Urologic Surgeons 1258 - 6224", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11070_seetharamanashok", + "URL": "https://app.meldrx.com/api/fhir/uc11070_seetharamanashok", "OrganizationName": "Seetharaman Ashok, MD - 35424", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35290_sherifraboseif", + "URL": "https://app.meldrx.com/api/fhir/uc35290_sherifraboseif", "OrganizationName": "Sherif R. Aboseif, M.D. - CIMplify - 35290", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11041_shlomialbertmd", + "URL": "https://app.meldrx.com/api/fhir/uc11041_shlomialbertmd", "OrganizationName": "Shlomi Albert, M.D. - 35398", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc30232_shoalsurologicalassociatespc", + "URL": "https://app.meldrx.com/api/fhir/uc30232_shoalsurologicalassociatespc", "OrganizationName": "Shoals Urological Associates PC - 30232", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc38989_ssfvua", + "URL": "https://app.meldrx.com/api/fhir/uc38989_ssfvua", "OrganizationName": "Simi San Fernando Valley Urology Associates - 38989", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc31523_simonsaadamd", + "URL": "https://app.meldrx.com/api/fhir/uc31523_simonsaadamd", "OrganizationName": "Simon Saada, MD 1357 - 31523", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05673_siouxlanduroassc", + "URL": "https://app.meldrx.com/api/fhir/uc05673_siouxlanduroassc", "OrganizationName": "Siouxland Urology Associates P.C. - 1059 - 5673", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35366_urologyspecialtygroup", + "URL": "https://app.meldrx.com/api/fhir/uc35366_urologyspecialtygroup", "OrganizationName": "Skyline Urology - 35366", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05427_southcountyurological", + "URL": "https://app.meldrx.com/api/fhir/uc05427_southcountyurological", "OrganizationName": "South County Urological 1027 - 5427", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11021_southfloridaurologycenter", + "URL": "https://app.meldrx.com/api/fhir/uc02518_sfmucohen", + "OrganizationName": "South Florida Medicine Urology - Ross Cohen, MD - 21C SFM - 27981", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc11021_southfloridaurologycenter", "OrganizationName": "South Florida Urology Center - 35379", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05231_southfloridaurologypa", + "URL": "https://app.meldrx.com/api/fhir/uc05231_southfloridaurologypa", "OrganizationName": "Southeast Florida Urology, LLC - 30262", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06033_segeorgiauroassoc", + "URL": "https://app.meldrx.com/api/fhir/uc06033_segeorgiauroassoc", "OrganizationName": "Southeast Georgia Physician Associates - Urology 406 1277 - 6033", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11111_southernconnecticuturologicalassociates", + "URL": "https://app.meldrx.com/api/fhir/uc11111_southernconnecticuturologicalassociates", "OrganizationName": "Southern Connecticut Urological Associates - 35463", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05460_southernurology", + "URL": "https://app.meldrx.com/api/fhir/uc05460_southernurology", "OrganizationName": "Southern Urology 1073 - 5460", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27710_southwesturology", - "OrganizationName": "Southwest Urology - 27710", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.meldrx.com/fhir/uc27794_floridaurologicalassociates", + "URL": "https://app.meldrx.com/api/fhir/uc27794_floridaurologicalassociates", "OrganizationName": "Springs Urology - GenesisCare - 27794", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34179_streisandurology", + "URL": "https://app.meldrx.com/api/fhir/uc34179_streisandurology", "OrganizationName": "Streisand Urology - 21C - 34179", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05312_tnvalleyuroctr", + "URL": "https://app.meldrx.com/api/fhir/uc05312_tnvalleyuroctr", "OrganizationName": "Tennessee Valley Urology Center 1166 - 5312", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11057_texascenterforurology", + "URL": "https://app.meldrx.com/api/fhir/uc11057_texascenterforurology", "OrganizationName": "Texas Center for Urology - 35413", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34867_texasurologyalliance", + "URL": "https://app.meldrx.com/api/fhir/uc34867_texasurologyalliance", "OrganizationName": "Texas Urology Alliance - 34867", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc10101_texomaurologycenter", + "URL": "https://app.meldrx.com/api/fhir/uc10101_texomaurologycenter", "OrganizationName": "Texoma Urology Center - 34562", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05399_midsouthurology", + "URL": "https://app.meldrx.com/api/fhir/uc05399_midsouthurology", "OrganizationName": "The Conrad - Pearson Clinic, P.C. 1096 - 5399", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc39279_theurologyclinicinc", + "URL": "https://app.meldrx.com/api/fhir/uc39279_theurologyclinicinc", "OrganizationName": "The Urology Clinic, Inc. - 39279", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34238_thibodauxurologicalspecialists", + "URL": "https://app.meldrx.com/api/fhir/uc34238_thibodauxurologicalspecialists", "OrganizationName": "Thibodaux Urological Specialists - 34238", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32508_thomasljohnsonjrmd", + "URL": "https://app.meldrx.com/api/fhir/uc32508_thomasljohnsonjrmd", "OrganizationName": "Thomas L Johnson Jr, MD - 32508", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05475_tricountyurologydayton", + "URL": "https://app.meldrx.com/api/fhir/uc31186_thunderbayurology", + "OrganizationName": "Thunder Bay Urology - 31186", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc05475_tricountyurologydayton", "OrganizationName": "Tri-County Urology - 30477", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05201_tuhihongmd", + "URL": "https://app.meldrx.com/api/fhir/uc05201_tuhihongmd", "OrganizationName": "Tu-Hi Hong, M.D. 1142 - 5201", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27571_tulsaurology", + "URL": "https://app.meldrx.com/api/fhir/uc27571_tulsaurology", "OrganizationName": "Tulsa Urology 1329 - 27571", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05528_tricountyuroassoc", + "URL": "https://app.meldrx.com/api/fhir/uc05528_tricountyuroassoc", "OrganizationName": "Uniontown Urology Associates 1220 - 5528", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27957_universityurologists", + "URL": "https://app.meldrx.com/api/fhir/uc34921_unityurology", + "OrganizationName": "Unity Urology - CIMplify - 34921", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc27957_universityurologists", "OrganizationName": "University Urologists - FL - 27957", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35314_universityurologyassociates", + "URL": "https://app.meldrx.com/api/fhir/uc35314_universityurologyassociates", "OrganizationName": "University Urologists - NY - 35314", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc10328_frederickgulmimd", + "URL": "https://app.meldrx.com/api/fhir/uc10328_frederickgulmimd", "OrganizationName": "Unni Mooppan, M.D. - 35085", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32266_urologicconsultantspc", + "URL": "https://app.meldrx.com/api/fhir/uc32266_urologicconsultantspc", "OrganizationName": "Urologic Consultants, P.C. - 32266", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27727_urologyassociatesofsouthtexas", + "URL": "https://app.meldrx.com/api/fhir/uc27727_urologyassociatesofsouthtexas", "OrganizationName": "Urologic Specialists Associates - 27727", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27750_urologicspecialistsofoklahoma", + "URL": "https://app.meldrx.com/api/fhir/uc27750_urologicspecialistsofoklahoma", "OrganizationName": "Urologic Specialists of Oklahoma, Inc. - 27750", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32211_urologicsurgeonsgainesville", + "URL": "https://app.meldrx.com/api/fhir/uc32211_urologicsurgeonsgainesville", "OrganizationName": "Urologic Surgeons - 32211", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc11160_urologicsurgeonsofarizona", + "URL": "https://app.meldrx.com/api/fhir/uc11160_urologicsurgeonsofarizona", "OrganizationName": "Urologic Surgeons of Arizona, PLC - 35509", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08300_urologicalconsultantsofflorida", + "URL": "https://app.meldrx.com/api/fhir/uc08300_urologicalconsultantsofflorida", "OrganizationName": "Urological Consultants of Florida, PA - 32977", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27902_urologicalhealthcenter", + "URL": "https://app.meldrx.com/api/fhir/uc27902_urologicalhealthcenter", "OrganizationName": "Urological Health Center - CIMplify - 27902", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35521_uroservicesofnwyoming", + "URL": "https://app.meldrx.com/api/fhir/uc35521_uroservicesofnwyoming", "OrganizationName": "Urological Services of Northern Wyoming - 35521", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32104_urologicalservicespc", + "URL": "https://app.meldrx.com/api/fhir/uc32104_urologicalservicespc", "OrganizationName": "Urological Services, PC - 32104", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc07360_hindsurologyclinic", + "URL": "https://app.meldrx.com/api/fhir/uc07360_hindsurologyclinic", "OrganizationName": "Urological Surgery Associates, PLLC - 32110", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc40981_urologyassociatesmedicalgroup", + "URL": "https://app.meldrx.com/api/fhir/uc08436_urologyassociatesmuncie", + "OrganizationName": "Urology Associates - 33101", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc40981_urologyassociatesmedicalgroup", "OrganizationName": "Urology Associates Medical Group - 40981", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc31957_urologyassociatesofdover", + "URL": "https://app.meldrx.com/api/fhir/uc31957_urologyassociatesofdover", "OrganizationName": "Urology Associates of Delaware - 31957", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05441_uaoffredericksburg", + "URL": "https://app.meldrx.com/api/fhir/uc05441_uaoffredericksburg", "OrganizationName": "Urology Associates of Fredericksburg 1107 - 5441", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05442_uroassockingsportpc", + "URL": "https://app.meldrx.com/api/fhir/uc05442_uroassockingsportpc", "OrganizationName": "Urology Associates of Kingsport, P.C. 1058 - CIMplify 1058 - 5442", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09551_urologyassociatesofrichmond", + "URL": "https://app.meldrx.com/api/fhir/uc09551_urologyassociatesofrichmond", "OrganizationName": "Urology Associates Of Richmond, Inc. 1218 - 9551", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27786_uroassocpoconos", + "URL": "https://app.meldrx.com/api/fhir/uc27786_uroassocpoconos", "OrganizationName": "Urology Associates of the Poconos 1351 - 27786", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27885_uroassocincok", + "URL": "https://app.meldrx.com/api/fhir/uc27885_uroassocincok", "OrganizationName": "Urology Associates, Inc. 1182 - 27885", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27707_urologyassociatesmatthews", + "URL": "https://app.meldrx.com/api/fhir/uc27707_urologyassociatesmatthews", "OrganizationName": "Urology Associates, LLC - 27707", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05454_urologyassociatesmdpa", + "URL": "https://app.meldrx.com/api/fhir/uc05454_urologyassociatesmdpa", "OrganizationName": "Urology Associates, MD, PA 1071 - 5454", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc33586_urologyassociatespa", + "URL": "https://app.meldrx.com/api/fhir/uc33586_urologyassociatespa", "OrganizationName": "Urology Associates, PA - 33586", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05772_urologyassociateslouisiana", + "URL": "https://app.meldrx.com/api/fhir/uc05772_urologyassociateslouisiana", "OrganizationName": "Urology Associates-Louisiana - 30721", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27743_urologyspecialistsofaustin", + "URL": "https://app.meldrx.com/api/fhir/uc27743_urologyspecialistsofaustin", "OrganizationName": "Urology Austin, PLLC - 27743", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc30744_urologycarecenter", + "URL": "https://app.meldrx.com/api/fhir/uc30744_urologycarecenter", "OrganizationName": "Urology Care Center - 30744", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc43587_urologycareclinic", + "URL": "https://app.meldrx.com/api/fhir/uc43587_urologycareclinic", "OrganizationName": "Urology Care Clinic - 43587", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc41193_urocarecentralfl", + "URL": "https://app.meldrx.com/api/fhir/uc02416_urologycareinc", + "OrganizationName": "Urology Care Inc. - 27875", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc41193_urocarecentralfl", "OrganizationName": "Urology Care of Central Florida, PA - 41193", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05244_urocenterofsouthernok", + "URL": "https://app.meldrx.com/api/fhir/uc05244_urocenterofsouthernok", "OrganizationName": "Urology Center of Southern Oklahoma 1143 - 5244", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09425_urologycenterofspartanburg", + "URL": "https://app.meldrx.com/api/fhir/uc09425_urologycenterofspartanburg", "OrganizationName": "Urology Center of Spartanburg - 34000", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc32756_urologycentral", + "URL": "https://app.meldrx.com/api/fhir/uc32756_urologycentral", "OrganizationName": "Urology Central - 32756", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc30884_urologygroupofwesternnewengland", + "URL": "https://app.meldrx.com/api/fhir/uc30884_urologygroupofwesternnewengland", "OrganizationName": "Urology Group Of Western New England, PC - 30884", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc28008_premierurologygroupllc", + "URL": "https://app.meldrx.com/api/fhir/uc28008_premierurologygroupllc", "OrganizationName": "Urology Management Associates, LLC f/k/a New Jersey Urology, LLC f/k/a Premier Urology Group, LLC - 28008", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc35834_urologyofpueblopc", + "URL": "https://app.meldrx.com/api/fhir/uc35834_urologyofpueblopc", "OrganizationName": "Urology of Pueblo, P.C. (Dr. Feliz) - 35834", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06153_jamesareynoldsmd", + "URL": "https://app.meldrx.com/api/fhir/uc10927_urologyspecialistshuntsville", + "OrganizationName": "Urology Specialists, P.C. - 35289", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc06153_jamesareynoldsmd", "OrganizationName": "Urology Specialists, P.C. 1261 - 6153", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc02303_uromedix", + "URL": "https://app.meldrx.com/api/fhir/uc52549_drsamowitz", + "OrganizationName": "Uro-Medix - Dr. Samowitz - 21C - 52549", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc02303_uromedix", "OrganizationName": "UroMedix Aventura - 21C - 27757", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09295_urologycenterofeasttexas", + "URL": "https://app.meldrx.com/api/fhir/uc30984_urosurgassociates", + "OrganizationName": "UroSurg Associates - 21C - 30984", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc09295_urologycenterofeasttexas", "OrganizationName": "UT Health East Texas Physicians Urology Clinic 1221 - 9295", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc08781_vanguardurology", + "URL": "https://app.meldrx.com/api/fhir/uc08781_vanguardurology", "OrganizationName": "Vanguard Urology - 21C - 33420", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc27950_rtrurology", + "URL": "https://app.meldrx.com/api/fhir/uc27950_rtrurology", "OrganizationName": "Venice Urology fka RTR Urology - 21C - 27950", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34385_verourology", + "URL": "https://app.meldrx.com/api/fhir/uc34385_verourology", "OrganizationName": "Vero Urology Center - 34385", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34924_vladimirpkrichevskymdpc", + "URL": "https://app.meldrx.com/api/fhir/uc11152_virginislandsurocenter", + "OrganizationName": "Virgin Island Urologic Center 1249 - 11152", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc34924_vladimirpkrichevskymdpc", "OrganizationName": "Vladimir P. Krichevsky, M.D., P.C. - 34924", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc07000_waycrossurologyclinic", + "URL": "https://app.meldrx.com/api/fhir/uc07000_waycrossurologyclinic", "OrganizationName": "Waycross Urology Clinic, P.C. 1269 - 7000", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc06200_westcontracostaurological", + "URL": "https://app.meldrx.com/api/fhir/uc06200_westcontracostaurological", "OrganizationName": "West Contra Costa Urological - 31068", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc09277_westtexasurologyclinic", + "URL": "https://app.meldrx.com/api/fhir/uc09277_westtexasurologyclinic", "OrganizationName": "West Texas Urology Clinic 1286 - 9277", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc34532_championurologyltd", + "URL": "https://app.meldrx.com/api/fhir/uc34532_championurologyltd", "OrganizationName": "Westerly Hospital - 34532", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc29871_woosterurology", + "URL": "https://app.meldrx.com/api/fhir/uc29871_woosterurology", "OrganizationName": "Wooster Urology - 29871", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al003", + "URL": "https://app.meldrx.com/api/fhir/uc34635_worcesterurologicalassociates", + "OrganizationName": "Worcester Urological Associates - 34635", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/experity-al003", "OrganizationName": "Middle Creek Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al004", + "URL": "https://app.meldrx.com/api/fhir/experity-al004", "OrganizationName": "Urgent Care by the Bay", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al006", + "URL": "https://app.meldrx.com/api/fhir/experity-al006", "OrganizationName": "Central Alabama Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al007", + "URL": "https://app.meldrx.com/api/fhir/experity-al007", "OrganizationName": "Rural Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al008", + "URL": "https://app.meldrx.com/api/fhir/experity-al008", "OrganizationName": "Gardendale Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al009", + "URL": "https://app.meldrx.com/api/fhir/experity-al009", "OrganizationName": "Primary \u0026 Urgent Care South", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al018", + "URL": "https://app.meldrx.com/api/fhir/experity-al018", "OrganizationName": "ApproXie Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al022", + "URL": "https://app.meldrx.com/api/fhir/experity-al022", "OrganizationName": "Wellness Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al023", + "URL": "https://app.meldrx.com/api/fhir/experity-al023", "OrganizationName": "Jackson Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al024", + "URL": "https://app.meldrx.com/api/fhir/experity-al024", "OrganizationName": "Highway 53 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-al026", + "URL": "https://app.meldrx.com/api/fhir/experity-al026", "OrganizationName": "Maxem Mobile", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-az002", + "URL": "https://app.meldrx.com/api/fhir/experity-az002", "OrganizationName": "Bullhead Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-az004", + "URL": "https://app.meldrx.com/api/fhir/experity-az004", "OrganizationName": "Alliance Urgent Care - AZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-az017", + "URL": "https://app.meldrx.com/api/fhir/experity-az017", "OrganizationName": "Good Night Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-az031", + "URL": "https://app.meldrx.com/api/fhir/experity-az031", "OrganizationName": "TrueCare Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca001", + "URL": "https://app.meldrx.com/api/fhir/experity-ca001", "OrganizationName": "Willow Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca004", + "URL": "https://app.meldrx.com/api/fhir/experity-ca004", "OrganizationName": "SCEM Urgent Care Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca005", + "URL": "https://app.meldrx.com/api/fhir/experity-ca005", "OrganizationName": "Xpress Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca008", + "URL": "https://app.meldrx.com/api/fhir/experity-ca008", "OrganizationName": "Stat Med", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca011", + "URL": "https://app.meldrx.com/api/fhir/experity-ca011", "OrganizationName": "Dr. Pauls Immediate Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca015", + "URL": "https://app.meldrx.com/api/fhir/experity-ca015", "OrganizationName": "Urgent Care Now", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca016", + "URL": "https://app.meldrx.com/api/fhir/experity-ca016", "OrganizationName": "Sand Canyon Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca017", + "URL": "https://app.meldrx.com/api/fhir/experity-ca017", "OrganizationName": "SouthBay Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca019", + "URL": "https://app.meldrx.com/api/fhir/experity-ca019", "OrganizationName": "East County Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca020", + "URL": "https://app.meldrx.com/api/fhir/experity-ca020", "OrganizationName": "St Francis Urgent Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca023", + "URL": "https://app.meldrx.com/api/fhir/experity-ca023", "OrganizationName": "Brentview", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca024", + "URL": "https://app.meldrx.com/api/fhir/experity-ca024", "OrganizationName": "Medhero", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca025", + "URL": "https://app.meldrx.com/api/fhir/experity-ca025", "OrganizationName": "Little Star", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca026", + "URL": "https://app.meldrx.com/api/fhir/experity-ca026", "OrganizationName": "Integrative Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca028", + "URL": "https://app.meldrx.com/api/fhir/experity-ca028", "OrganizationName": "Yubadocs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca048", + "URL": "https://app.meldrx.com/api/fhir/experity-ca048", "OrganizationName": "American Urgent Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca049", + "URL": "https://app.meldrx.com/api/fhir/experity-ca049", "OrganizationName": "Mend Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca050", + "URL": "https://app.meldrx.com/api/fhir/experity-ca050", "OrganizationName": "Reddy Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ca059", + "URL": "https://app.meldrx.com/api/fhir/experity-ca059", "OrganizationName": "Sun Valley Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ct002", + "URL": "https://app.meldrx.com/api/fhir/experity-ct002", "OrganizationName": "Medcare Express", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ct003", + "URL": "https://app.meldrx.com/api/fhir/experity-ct003", "OrganizationName": "PhysicianOne", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ct006", + "URL": "https://app.meldrx.com/api/fhir/experity-ct006", "OrganizationName": "The Doctors Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ct007", + "URL": "https://app.meldrx.com/api/fhir/experity-ct007", "OrganizationName": "City of New Haven Health Department", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ct008", + "URL": "https://app.meldrx.com/api/fhir/experity-ct008", "OrganizationName": "North Stonington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ct010", + "URL": "https://app.meldrx.com/api/fhir/experity-ct010", "OrganizationName": "Trinity Health UC NE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ct011", + "URL": "https://app.meldrx.com/api/fhir/experity-ct011", "OrganizationName": "West Hartford Primary Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-de001", + "URL": "https://app.meldrx.com/api/fhir/experity-de001", "OrganizationName": "Ambient Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-de004", + "URL": "https://app.meldrx.com/api/fhir/experity-de004", "OrganizationName": "Newark 24/7 Urgent Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0001", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0001", "OrganizationName": "AFC Temple, TX", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0006", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0006", "OrganizationName": "AFC Paramus NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0007", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0007", "OrganizationName": "AFC High Point", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0010", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0010", "OrganizationName": "AFC Bon Secours, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0015", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0015", "OrganizationName": "AFC Cape Girardeau", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0044", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0044", "OrganizationName": "AFC Roanoke", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0055", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0055", "OrganizationName": "AFC Portland, OR", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0064", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0064", "OrganizationName": "AFC Waltham", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0067", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0067", "OrganizationName": "AFC Bound Brook", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0072", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0072", "OrganizationName": "AFC Chattanooga, TN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0075", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0075", "OrganizationName": "AFC Lyndhurst, NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0077", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0077", "OrganizationName": "AFC South Plainfield, NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0079", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0079", "OrganizationName": "AFC Narberth, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0084", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0084", "OrganizationName": "AFC Phoenixville, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0089", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0089", "OrganizationName": "AFC Gloucester Township, NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0100", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0100", "OrganizationName": "AFC Beverly, MA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0102", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0102", "OrganizationName": "AFC Herndon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0103", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0103", "OrganizationName": "AFC Willow Grove, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0106", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0106", "OrganizationName": "AFC Aston", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0110", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0110", "OrganizationName": "AFC Sedalia MO", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0116", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0116", "OrganizationName": "AFC Levittown PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0118", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0118", "OrganizationName": "AFC Cheltenham PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0121", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0121", "OrganizationName": "AFC Suffolk VA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0125", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0125", "OrganizationName": "AFC Raleigh Midtown", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0126", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0126", "OrganizationName": "AFC Raleigh - Brier Creek", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl001", + "URL": "https://app.meldrx.com/api/fhir/experity-fl001", "OrganizationName": "Urgent Medical Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl002", + "URL": "https://app.meldrx.com/api/fhir/experity-fl002", "OrganizationName": "MiniER Waterford Lakes LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl012", + "URL": "https://app.meldrx.com/api/fhir/experity-fl012", "OrganizationName": "Bayside Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl017", + "URL": "https://app.meldrx.com/api/fhir/experity-fl017", "OrganizationName": "Atlantic Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl019", + "URL": "https://app.meldrx.com/api/fhir/experity-fl019", "OrganizationName": "Owl Now Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl020", + "URL": "https://app.meldrx.com/api/fhir/experity-fl020", "OrganizationName": "Quality Urgent Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl021", + "URL": "https://app.meldrx.com/api/fhir/experity-fl021", "OrganizationName": "Boca Regional Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl024", + "URL": "https://app.meldrx.com/api/fhir/experity-fl024", "OrganizationName": "Twilight Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl027", + "URL": "https://app.meldrx.com/api/fhir/experity-fl027", "OrganizationName": "Atlantis Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl030", + "URL": "https://app.meldrx.com/api/fhir/experity-fl030", "OrganizationName": "Suncoast Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl032", + "URL": "https://app.meldrx.com/api/fhir/experity-fl032", "OrganizationName": "PrimeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl050", + "URL": "https://app.meldrx.com/api/fhir/experity-fl050", "OrganizationName": "Tropical HealthCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl051", + "URL": "https://app.meldrx.com/api/fhir/experity-fl051", "OrganizationName": "Magnolia Family", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl055", + "URL": "https://app.meldrx.com/api/fhir/experity-fl055", "OrganizationName": "OneStop Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl056", + "URL": "https://app.meldrx.com/api/fhir/experity-fl056", "OrganizationName": "Prestige Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-fl060", + "URL": "https://app.meldrx.com/api/fhir/experity-fl060", "OrganizationName": "Baptist Health Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ga009", + "URL": "https://app.meldrx.com/api/fhir/experity-ga009", "OrganizationName": "Accordia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ga010", + "URL": "https://app.meldrx.com/api/fhir/experity-ga010", "OrganizationName": "AppleCare Memorial", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ga015", + "URL": "https://app.meldrx.com/api/fhir/experity-ga015", "OrganizationName": "Perfect Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ga038", + "URL": "https://app.meldrx.com/api/fhir/experity-ga038", "OrganizationName": "Prime Care Dahlonega", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ga039", + "URL": "https://app.meldrx.com/api/fhir/experity-ga039", "OrganizationName": "SJC Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ia009", + "URL": "https://app.meldrx.com/api/fhir/experity-ia009", "OrganizationName": "MercyOne THPH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ia010", + "URL": "https://app.meldrx.com/api/fhir/experity-ia010", "OrganizationName": "MercyOne Central Iowa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-id005", + "URL": "https://app.meldrx.com/api/fhir/experity-id005", "OrganizationName": "Physicians Immediate Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-il006", + "URL": "https://app.meldrx.com/api/fhir/experity-il006", "OrganizationName": "EPIC Family Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-il009", + "URL": "https://app.meldrx.com/api/fhir/experity-il009", "OrganizationName": "Immediate Care Center of Westmont", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-il024", + "URL": "https://app.meldrx.com/api/fhir/experity-il024", "OrganizationName": "On Dmed Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-in002", + "URL": "https://app.meldrx.com/api/fhir/experity-in002", "OrganizationName": "Midwest Express Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-in004", + "URL": "https://app.meldrx.com/api/fhir/experity-in004", "OrganizationName": "Noblesville Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-in005", + "URL": "https://app.meldrx.com/api/fhir/experity-in005", "OrganizationName": "Lutheran Health Physicians", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ks009", + "URL": "https://app.meldrx.com/api/fhir/experity-ks009", "OrganizationName": "Premier Health University of Kansas", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la003", + "URL": "https://app.meldrx.com/api/fhir/experity-la003", "OrganizationName": "Doctors After Hours Veterans", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la004", + "URL": "https://app.meldrx.com/api/fhir/experity-la004", "OrganizationName": "Riverside Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la006", + "URL": "https://app.meldrx.com/api/fhir/experity-la006", "OrganizationName": "Tchefuncta Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la008", + "URL": "https://app.meldrx.com/api/fhir/experity-la008", "OrganizationName": "Doctors After Hours Clearview", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la010", + "URL": "https://app.meldrx.com/api/fhir/experity-la010", "OrganizationName": "Premier Health Lake Charles", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la015", + "URL": "https://app.meldrx.com/api/fhir/experity-la015", "OrganizationName": "Doctors After Hours Lakeview", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la019", + "URL": "https://app.meldrx.com/api/fhir/experity-la019", "OrganizationName": "Rapides After Hours", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la024", + "URL": "https://app.meldrx.com/api/fhir/experity-la024", "OrganizationName": "Acadiana Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la031", + "URL": "https://app.meldrx.com/api/fhir/experity-la031", "OrganizationName": "MinuteMed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la034", + "URL": "https://app.meldrx.com/api/fhir/experity-la034", "OrganizationName": "Rapid Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la036", + "URL": "https://app.meldrx.com/api/fhir/experity-la036", "OrganizationName": "Urgent Care Eleven", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la039", + "URL": "https://app.meldrx.com/api/fhir/experity-la039", "OrganizationName": "Total Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la040", + "URL": "https://app.meldrx.com/api/fhir/experity-la040", "OrganizationName": "In and Out Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la041", + "URL": "https://app.meldrx.com/api/fhir/experity-la041", "OrganizationName": "Premier Health Sulphur", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la044", + "URL": "https://app.meldrx.com/api/fhir/experity-la044", "OrganizationName": "Maxem Slidell", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la045", + "URL": "https://app.meldrx.com/api/fhir/experity-la045", "OrganizationName": "Maxem Hammond", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la046", + "URL": "https://app.meldrx.com/api/fhir/experity-la046", "OrganizationName": "Maxem Mandeville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la049", + "URL": "https://app.meldrx.com/api/fhir/experity-la049", "OrganizationName": "Cypress Pointe Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la053", + "URL": "https://app.meldrx.com/api/fhir/experity-la053", "OrganizationName": "CheckPoint Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la054", + "URL": "https://app.meldrx.com/api/fhir/experity-la054", "OrganizationName": "Bausey Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la055", + "URL": "https://app.meldrx.com/api/fhir/experity-la055", "OrganizationName": "In and Out Covington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la056", + "URL": "https://app.meldrx.com/api/fhir/experity-la056", "OrganizationName": "Delta Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la059", + "URL": "https://app.meldrx.com/api/fhir/experity-la059", "OrganizationName": "Premier Health Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la060", + "URL": "https://app.meldrx.com/api/fhir/experity-la060", "OrganizationName": "Total Urgent Care Vidalia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la061", + "URL": "https://app.meldrx.com/api/fhir/experity-la061", "OrganizationName": "Total Health Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-la062", + "URL": "https://app.meldrx.com/api/fhir/experity-la062", "OrganizationName": "Doctors Urgent Care - Slidell", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ma020", + "URL": "https://app.meldrx.com/api/fhir/experity-ma020", "OrganizationName": "Urgent Care Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ma022", + "URL": "https://app.meldrx.com/api/fhir/experity-ma022", "OrganizationName": "Lynn Urgent Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-md003", + "URL": "https://app.meldrx.com/api/fhir/experity-md003", "OrganizationName": "Health Matters Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-md009", + "URL": "https://app.meldrx.com/api/fhir/experity-md009", "OrganizationName": "Total Urgent Care and Workplace", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-md012", + "URL": "https://app.meldrx.com/api/fhir/experity-md012", "OrganizationName": "Your Docs In PHV", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-md020", + "URL": "https://app.meldrx.com/api/fhir/experity-md020", "OrganizationName": "Premier Health Express", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi001", + "URL": "https://app.meldrx.com/api/fhir/experity-mi001", "OrganizationName": "Meadowbrook Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi002", + "URL": "https://app.meldrx.com/api/fhir/experity-mi002", "OrganizationName": "Lakes Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi004", + "URL": "https://app.meldrx.com/api/fhir/experity-mi004", "OrganizationName": "Lansing Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi006", + "URL": "https://app.meldrx.com/api/fhir/experity-mi006", "OrganizationName": "Business Health Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi013", + "URL": "https://app.meldrx.com/api/fhir/experity-mi013", "OrganizationName": "Urgent Care Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi014", + "URL": "https://app.meldrx.com/api/fhir/experity-mi014", "OrganizationName": "Suburban Occupational Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi030", + "URL": "https://app.meldrx.com/api/fhir/experity-mi030", "OrganizationName": "Ascent Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi036", + "URL": "https://app.meldrx.com/api/fhir/experity-mi036", "OrganizationName": "Healthy Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi037", + "URL": "https://app.meldrx.com/api/fhir/experity-mi037", "OrganizationName": "IEPPC Healthy Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi040", + "URL": "https://app.meldrx.com/api/fhir/experity-mi040", "OrganizationName": "MI040 Flash Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mi041", + "URL": "https://app.meldrx.com/api/fhir/experity-mi041", "OrganizationName": "Ascent Redicare, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mo001", + "URL": "https://app.meldrx.com/api/fhir/experity-mo001", "OrganizationName": "Total Access Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mo011", + "URL": "https://app.meldrx.com/api/fhir/experity-mo011", "OrganizationName": "Occupational Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mo013", + "URL": "https://app.meldrx.com/api/fhir/experity-mo013", "OrganizationName": "Family Medical Walk In", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms002", + "URL": "https://app.meldrx.com/api/fhir/experity-ms002", "OrganizationName": "St Michaels Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms007", + "URL": "https://app.meldrx.com/api/fhir/experity-ms007", "OrganizationName": "Corner Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms008", + "URL": "https://app.meldrx.com/api/fhir/experity-ms008", "OrganizationName": "Maxem Health Urgent Care Flowood", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms009", + "URL": "https://app.meldrx.com/api/fhir/experity-ms009", "OrganizationName": "Maxem Health Urgent Care Petal", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms011", + "URL": "https://app.meldrx.com/api/fhir/experity-ms011", "OrganizationName": "Maxem Health Urgent Care Hattiesburg", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms012", + "URL": "https://app.meldrx.com/api/fhir/experity-ms012", "OrganizationName": "Maxem Health Urgent Care Ocean Springs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms013", + "URL": "https://app.meldrx.com/api/fhir/experity-ms013", "OrganizationName": "Maxem Health Urgent Care Picayune", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms014", + "URL": "https://app.meldrx.com/api/fhir/experity-ms014", "OrganizationName": "Maxem Health Urgent Care Pascagoula", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms015", + "URL": "https://app.meldrx.com/api/fhir/experity-ms015", "OrganizationName": "Maxem Health Urgent Care Orange Grove", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms017", + "URL": "https://app.meldrx.com/api/fhir/experity-ms017", "OrganizationName": "Maxem Health Urgent Care Magee", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms018", + "URL": "https://app.meldrx.com/api/fhir/experity-ms018", "OrganizationName": "Maxem Health Urgent Care McComb", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms019", + "URL": "https://app.meldrx.com/api/fhir/experity-ms019", "OrganizationName": "Complete Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms020", + "URL": "https://app.meldrx.com/api/fhir/experity-ms020", "OrganizationName": "Maxem Health Urgent Care D'Iberville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms021", + "URL": "https://app.meldrx.com/api/fhir/experity-ms021", "OrganizationName": "Maxem Health Urgent Care Meridian", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ms023", + "URL": "https://app.meldrx.com/api/fhir/experity-ms023", "OrganizationName": "Maxem Health Urgent Care Starkville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-mt001", + "URL": "https://app.meldrx.com/api/fhir/experity-mt001", "OrganizationName": "MedNorth Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nc005", + "URL": "https://app.meldrx.com/api/fhir/experity-nc005", "OrganizationName": "Carolina Express Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nc025", + "URL": "https://app.meldrx.com/api/fhir/experity-nc025", "OrganizationName": "Express Care of Yadkin", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nc026", + "URL": "https://app.meldrx.com/api/fhir/experity-nc026", "OrganizationName": "OneSpotMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ne005", + "URL": "https://app.meldrx.com/api/fhir/experity-ne005", "OrganizationName": "Urgent Care Omaha", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nh001", + "URL": "https://app.meldrx.com/api/fhir/experity-nh001", "OrganizationName": "ConvenientMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nh002", + "URL": "https://app.meldrx.com/api/fhir/experity-nh002", "OrganizationName": "ClearChoiceMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nh005", + "URL": "https://app.meldrx.com/api/fhir/experity-nh005", "OrganizationName": "Alliance Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nj001", + "URL": "https://app.meldrx.com/api/fhir/experity-nj001", "OrganizationName": "Ironbound Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nj002", + "URL": "https://app.meldrx.com/api/fhir/experity-nj002", "OrganizationName": "PromptMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nj019", + "URL": "https://app.meldrx.com/api/fhir/experity-nj019", "OrganizationName": "Great Hope", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ny001", + "URL": "https://app.meldrx.com/api/fhir/experity-ny001", "OrganizationName": "QuikMed Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ny007", + "URL": "https://app.meldrx.com/api/fhir/experity-ny007", "OrganizationName": "Elmira Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ny024", + "URL": "https://app.meldrx.com/api/fhir/experity-ny024", "OrganizationName": "WellNOW Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ny038", + "URL": "https://app.meldrx.com/api/fhir/experity-ny038", "OrganizationName": "AcuteKids Pediatric Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-oh001", + "URL": "https://app.meldrx.com/api/fhir/experity-oh001", "OrganizationName": "Hometown Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-oh002", + "URL": "https://app.meldrx.com/api/fhir/experity-oh002", "OrganizationName": "Doctors Urgent Care/AmCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-oh003", + "URL": "https://app.meldrx.com/api/fhir/experity-oh003", "OrganizationName": "Immediate Health Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-oh008", + "URL": "https://app.meldrx.com/api/fhir/experity-oh008", "OrganizationName": "First Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-oh009", + "URL": "https://app.meldrx.com/api/fhir/experity-oh009", "OrganizationName": "Waynesville Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-oh019", + "URL": "https://app.meldrx.com/api/fhir/experity-oh019", "OrganizationName": "Health Partners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-oh025", + "URL": "https://app.meldrx.com/api/fhir/experity-oh025", "OrganizationName": "MD1StopUrgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ok001", + "URL": "https://app.meldrx.com/api/fhir/experity-ok001", "OrganizationName": "Urgent Med", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ok008", + "URL": "https://app.meldrx.com/api/fhir/experity-ok008", "OrganizationName": "Premier Plus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ok010", + "URL": "https://app.meldrx.com/api/fhir/experity-ok010", "OrganizationName": "TLC Walk In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-ok015", + "URL": "https://app.meldrx.com/api/fhir/experity-ok015", "OrganizationName": "MediTox Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-or004", + "URL": "https://app.meldrx.com/api/fhir/experity-or004", "OrganizationName": "Valley Immediate Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-or012", + "URL": "https://app.meldrx.com/api/fhir/experity-or012", "OrganizationName": "Maxem Health Urgent Care Lake Oswego", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-pa005", + "URL": "https://app.meldrx.com/api/fhir/experity-pa005", "OrganizationName": "Patient Care Now", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-pa006", + "URL": "https://app.meldrx.com/api/fhir/experity-pa006", "OrganizationName": "MyDoc Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-pa011", + "URL": "https://app.meldrx.com/api/fhir/experity-pa011", "OrganizationName": "Lake Scranton", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-pa022", + "URL": "https://app.meldrx.com/api/fhir/experity-pa022", "OrganizationName": "FalconER Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-pa025", + "URL": "https://app.meldrx.com/api/fhir/experity-pa025", "OrganizationName": "iCare Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-sc007", + "URL": "https://app.meldrx.com/api/fhir/experity-sc007", "OrganizationName": "Doctors Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-sc009", + "URL": "https://app.meldrx.com/api/fhir/experity-sc009", "OrganizationName": "Progressive Physical Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-sc010", + "URL": "https://app.meldrx.com/api/fhir/experity-sc010", "OrganizationName": "HealthFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-sc015", + "URL": "https://app.meldrx.com/api/fhir/experity-sc015", "OrganizationName": "NasonCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-sd006", + "URL": "https://app.meldrx.com/api/fhir/experity-sd006", "OrganizationName": "Black Hills Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn001", + "URL": "https://app.meldrx.com/api/fhir/experity-tn001", "OrganizationName": "Physicians Quality Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn009", + "URL": "https://app.meldrx.com/api/fhir/experity-tn009", "OrganizationName": "Niteowl Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn011", + "URL": "https://app.meldrx.com/api/fhir/experity-tn011", "OrganizationName": "Urgent Team", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn012", + "URL": "https://app.meldrx.com/api/fhir/experity-tn012", "OrganizationName": "On Point Care Mid-South", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn013", + "URL": "https://app.meldrx.com/api/fhir/experity-tn013", "OrganizationName": "Well-Key Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn019", + "URL": "https://app.meldrx.com/api/fhir/experity-tn019", "OrganizationName": "Urgent Care Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn021", + "URL": "https://app.meldrx.com/api/fhir/experity-tn021", "OrganizationName": "Eastlake Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn024", + "URL": "https://app.meldrx.com/api/fhir/experity-tn024", "OrganizationName": "East Memphis Urgent Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tn025", + "URL": "https://app.meldrx.com/api/fhir/experity-tn025", "OrganizationName": "Urgent Family Care - TN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx001", + "URL": "https://app.meldrx.com/api/fhir/experity-tx001", "OrganizationName": "Urgent Doc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx005", + "URL": "https://app.meldrx.com/api/fhir/experity-tx005", "OrganizationName": "Quality Urgent Care of America", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx008", + "URL": "https://app.meldrx.com/api/fhir/experity-tx008", "OrganizationName": "Integra Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx016", + "URL": "https://app.meldrx.com/api/fhir/experity-tx016", "OrganizationName": "Pediatric Urgent Care Center of Fort Worth", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx018", + "URL": "https://app.meldrx.com/api/fhir/experity-tx018", "OrganizationName": "North Central Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx029", + "URL": "https://app.meldrx.com/api/fhir/experity-tx029", "OrganizationName": "NightLight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx030", + "URL": "https://app.meldrx.com/api/fhir/experity-tx030", "OrganizationName": "In and Out Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx032", + "URL": "https://app.meldrx.com/api/fhir/experity-tx032", "OrganizationName": "Prompt Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx034", + "URL": "https://app.meldrx.com/api/fhir/experity-tx034", "OrganizationName": "Prime Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx035", + "URL": "https://app.meldrx.com/api/fhir/experity-tx035", "OrganizationName": "Better Faster Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx036", + "URL": "https://app.meldrx.com/api/fhir/experity-tx036", "OrganizationName": "Royal Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx040", + "URL": "https://app.meldrx.com/api/fhir/experity-tx040", "OrganizationName": "Main Street Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx047", + "URL": "https://app.meldrx.com/api/fhir/experity-tx047", "OrganizationName": "Brazos Valley Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx053", + "URL": "https://app.meldrx.com/api/fhir/experity-tx053", "OrganizationName": "The Doctors Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx055", + "URL": "https://app.meldrx.com/api/fhir/experity-tx055", "OrganizationName": "Arete Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx067", + "URL": "https://app.meldrx.com/api/fhir/experity-tx067", "OrganizationName": "Family Urgent Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx069", + "URL": "https://app.meldrx.com/api/fhir/experity-tx069", "OrganizationName": "Freedom Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx070", + "URL": "https://app.meldrx.com/api/fhir/experity-tx070", "OrganizationName": "Natchez After Hours", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx076", + "URL": "https://app.meldrx.com/api/fhir/experity-tx076", "OrganizationName": "Lifeline Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx107", + "URL": "https://app.meldrx.com/api/fhir/experity-tx107", "OrganizationName": "MD Firstwatch", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx111", + "URL": "https://app.meldrx.com/api/fhir/experity-tx111", "OrganizationName": "Little Alsace Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx117", + "URL": "https://app.meldrx.com/api/fhir/experity-tx117", "OrganizationName": "SwiftCare Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx119", + "URL": "https://app.meldrx.com/api/fhir/experity-tx119", "OrganizationName": "Texas Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx120", + "URL": "https://app.meldrx.com/api/fhir/experity-tx120", "OrganizationName": "Urgentology Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx121", + "URL": "https://app.meldrx.com/api/fhir/experity-tx121", "OrganizationName": "Beaumont Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx126", + "URL": "https://app.meldrx.com/api/fhir/experity-tx126", "OrganizationName": "Family First Express Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx127", + "URL": "https://app.meldrx.com/api/fhir/experity-tx127", "OrganizationName": "Preferred Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx128", + "URL": "https://app.meldrx.com/api/fhir/experity-tx128", "OrganizationName": "UT Health East", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx129", + "URL": "https://app.meldrx.com/api/fhir/experity-tx129", "OrganizationName": "Hendrick Health Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx131", + "URL": "https://app.meldrx.com/api/fhir/experity-tx131", "OrganizationName": "Primary Doc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-va001", + "URL": "https://app.meldrx.com/api/fhir/experity-va001", "OrganizationName": "Dulles Urgent Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-va004", + "URL": "https://app.meldrx.com/api/fhir/experity-va004", "OrganizationName": "KidMed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-vt001", + "URL": "https://app.meldrx.com/api/fhir/experity-vt001", "OrganizationName": "Carlos Otis", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-wi001", + "URL": "https://app.meldrx.com/api/fhir/experity-wi001", "OrganizationName": "Urgent Care Physicians - WI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-wy002", + "URL": "https://app.meldrx.com/api/fhir/experity-wy002", "OrganizationName": "Grand Ave Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-wy003", + "URL": "https://app.meldrx.com/api/fhir/experity-wy003", "OrganizationName": "Urgent Care of Casper", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-wy007", + "URL": "https://app.meldrx.com/api/fhir/experity-wy007", "OrganizationName": "Sugarland Walk-In Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6329", + "URL": "https://app.meldrx.com/api/fhir/paydc_6329", "OrganizationName": "A2Z Injury Chiropractic \u0026 Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6331", + "URL": "https://app.meldrx.com/api/fhir/paydc_6331", "OrganizationName": "Valley Spine and Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6377", + "URL": "https://app.meldrx.com/api/fhir/paydc_6377", "OrganizationName": "Tri-County Chiropractic of Douglassville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6381", + "URL": "https://app.meldrx.com/api/fhir/paydc_6381", "OrganizationName": "Sundog Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6382", + "URL": "https://app.meldrx.com/api/fhir/paydc_6382", "OrganizationName": "Advanced Health Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6383", + "URL": "https://app.meldrx.com/api/fhir/paydc_6383", "OrganizationName": "Denver Sport and Spine Inc DBA Highlands Sport and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6388", + "URL": "https://app.meldrx.com/api/fhir/paydc_6388", "OrganizationName": "LaPorte Chiropractic Clinic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6392", + "URL": "https://app.meldrx.com/api/fhir/paydc_6392", "OrganizationName": "Schelly Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6401", + "URL": "https://app.meldrx.com/api/fhir/paydc_6401", "OrganizationName": "Adrienne Fabrizio DBA Carmel Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6402", + "URL": "https://app.meldrx.com/api/fhir/paydc_6402", "OrganizationName": "Carmel Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6408", + "URL": "https://app.meldrx.com/api/fhir/paydc_6408", "OrganizationName": "LeGarde Chiropractic and Wellness, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6412", + "URL": "https://app.meldrx.com/api/fhir/paydc_6412", "OrganizationName": "Chiropractic Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6414", + "URL": "https://app.meldrx.com/api/fhir/paydc_6414", "OrganizationName": "Dr Janet Wolf DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6415", + "URL": "https://app.meldrx.com/api/fhir/paydc_6415", "OrganizationName": "Pro Massage and Chiropractic Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6418", + "URL": "https://app.meldrx.com/api/fhir/paydc_6418", "OrganizationName": "D and R Spinal Health and Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6419", + "URL": "https://app.meldrx.com/api/fhir/paydc_6419", "OrganizationName": "TruHealth Pain Center Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6420", + "URL": "https://app.meldrx.com/api/fhir/paydc_6420", "OrganizationName": "ARCTIC CHIROPRACTIC SOLDOTNA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6421", + "URL": "https://app.meldrx.com/api/fhir/paydc_6421", "OrganizationName": "Arkfeld Advanced Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6423", + "URL": "https://app.meldrx.com/api/fhir/paydc_6423", "OrganizationName": "Balance Spine and Disc Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6424", + "URL": "https://app.meldrx.com/api/fhir/paydc_6424", "OrganizationName": "Regenerate Wellness Texas, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6434", + "URL": "https://app.meldrx.com/api/fhir/paydc_6434", "OrganizationName": "Spinal Health Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6436", + "URL": "https://app.meldrx.com/api/fhir/paydc_6436", "OrganizationName": "New Heights Chiropractic \u0026 Nutrition", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6438", + "URL": "https://app.meldrx.com/api/fhir/paydc_6438", "OrganizationName": "McPeak Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6457", + "URL": "https://app.meldrx.com/api/fhir/paydc_6457", "OrganizationName": "Tri County Pain Management Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6458", + "URL": "https://app.meldrx.com/api/fhir/paydc_6458", "OrganizationName": "Restoring L.I.F.E.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6459", + "URL": "https://app.meldrx.com/api/fhir/paydc_6459", "OrganizationName": "Aligned Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6460", + "URL": "https://app.meldrx.com/api/fhir/paydc_6460", "OrganizationName": "Daniel V. Fortuna, D.C., S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6464", + "URL": "https://app.meldrx.com/api/fhir/paydc_6464", "OrganizationName": "Professional Chiropractic and Rehab Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6466", + "URL": "https://app.meldrx.com/api/fhir/paydc_6466", "OrganizationName": "Billy Rodriguez Chiropractic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6468", + "URL": "https://app.meldrx.com/api/fhir/paydc_6468", "OrganizationName": "Davey Jones Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6469", + "URL": "https://app.meldrx.com/api/fhir/paydc_6469", "OrganizationName": "Norristown Pain Management Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6471", + "URL": "https://app.meldrx.com/api/fhir/paydc_6471", "OrganizationName": "Precision Pain Management Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6473", + "URL": "https://app.meldrx.com/api/fhir/paydc_6473", "OrganizationName": "Premier Chiropractic LLC DBA Eyota Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6474", + "URL": "https://app.meldrx.com/api/fhir/paydc_6474", "OrganizationName": "West Philadelphia Pain Management Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6475", + "URL": "https://app.meldrx.com/api/fhir/paydc_6475", "OrganizationName": "Limitless Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6478", + "URL": "https://app.meldrx.com/api/fhir/paydc_6478", "OrganizationName": "Cleveland Heights Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6479", + "URL": "https://app.meldrx.com/api/fhir/paydc_6479", "OrganizationName": "Prada Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6481", + "URL": "https://app.meldrx.com/api/fhir/paydc_6481", "OrganizationName": "Cohen Nimmo Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6484", + "URL": "https://app.meldrx.com/api/fhir/paydc_6484", "OrganizationName": "Button-Weller Chiropractic DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6486", + "URL": "https://app.meldrx.com/api/fhir/paydc_6486", "OrganizationName": "Exton Pain Management Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6489", + "URL": "https://app.meldrx.com/api/fhir/paydc_6489", "OrganizationName": "Mininsohn Chiropractic and Acupuncture Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6490", + "URL": "https://app.meldrx.com/api/fhir/paydc_6490", "OrganizationName": "Natural Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6491", + "URL": "https://app.meldrx.com/api/fhir/paydc_6491", "OrganizationName": "Back to Basics Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6515", + "URL": "https://app.meldrx.com/api/fhir/paydc_6515", "OrganizationName": "Chiro Choice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6516", + "URL": "https://app.meldrx.com/api/fhir/paydc_6516", "OrganizationName": "Texas Health \u0026 Wellness Centers, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6518", + "URL": "https://app.meldrx.com/api/fhir/paydc_6518", "OrganizationName": "Montclair Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6519", + "URL": "https://app.meldrx.com/api/fhir/paydc_6519", "OrganizationName": "Skyline Chiropractic and Sports Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6522", + "URL": "https://app.meldrx.com/api/fhir/paydc_6522", "OrganizationName": "Wilmington Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6524", + "URL": "https://app.meldrx.com/api/fhir/paydc_6524", "OrganizationName": "Chiro On the Road LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6525", + "URL": "https://app.meldrx.com/api/fhir/paydc_6525", "OrganizationName": "Fletcher Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6527", + "URL": "https://app.meldrx.com/api/fhir/paydc_6527", "OrganizationName": "NY Spine and Sports Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6528", + "URL": "https://app.meldrx.com/api/fhir/paydc_6528", "OrganizationName": "Hennicken Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6530", + "URL": "https://app.meldrx.com/api/fhir/paydc_6530", "OrganizationName": "McWhorter Chiropractic and Neurological Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6533", + "URL": "https://app.meldrx.com/api/fhir/paydc_6533", "OrganizationName": "Borak Chiropractic Office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6534", + "URL": "https://app.meldrx.com/api/fhir/paydc_6534", "OrganizationName": "Dr. Jim Bremner DC Chiropractor", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6537", + "URL": "https://app.meldrx.com/api/fhir/paydc_6537", "OrganizationName": "ChiroConcepts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6540", + "URL": "https://app.meldrx.com/api/fhir/paydc_6540", "OrganizationName": "Injury 2 Wellness Centers, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6541", + "URL": "https://app.meldrx.com/api/fhir/paydc_6541", "OrganizationName": "Bergen Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6542", + "URL": "https://app.meldrx.com/api/fhir/paydc_6542", "OrganizationName": "Precision Upper Cervical PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6543", + "URL": "https://app.meldrx.com/api/fhir/paydc_6543", "OrganizationName": "Sirninger Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6544", + "URL": "https://app.meldrx.com/api/fhir/paydc_6544", "OrganizationName": "Williams Chiropractic \u0026 Sports Performance", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6546", + "URL": "https://app.meldrx.com/api/fhir/paydc_6546", "OrganizationName": "Holthaus Family Chiropractic Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6547", + "URL": "https://app.meldrx.com/api/fhir/paydc_6547", "OrganizationName": "Dawn M Horn DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6548", + "URL": "https://app.meldrx.com/api/fhir/paydc_6548", "OrganizationName": "Simply Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6550", + "URL": "https://app.meldrx.com/api/fhir/paydc_6550", "OrganizationName": "Functional AIM Chiropractic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6551", + "URL": "https://app.meldrx.com/api/fhir/paydc_6551", "OrganizationName": "Shaker Women's Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6553", + "URL": "https://app.meldrx.com/api/fhir/paydc_6553", "OrganizationName": "Payson Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6562", + "URL": "https://app.meldrx.com/api/fhir/paydc_6562", "OrganizationName": "Iceberg Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6563", + "URL": "https://app.meldrx.com/api/fhir/paydc_6563", "OrganizationName": "Core Physical Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6564", + "URL": "https://app.meldrx.com/api/fhir/paydc_6564", "OrganizationName": "Core Physical Medicine - Coppell", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6570", + "URL": "https://app.meldrx.com/api/fhir/paydc_6570", "OrganizationName": "Leo A Staten DC LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6572", + "URL": "https://app.meldrx.com/api/fhir/paydc_6572", "OrganizationName": "Mohr Chiropractic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6573", + "URL": "https://app.meldrx.com/api/fhir/paydc_6573", "OrganizationName": "Atlas Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6574", + "URL": "https://app.meldrx.com/api/fhir/paydc_6574", "OrganizationName": "Scott Darling, DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6600", + "URL": "https://app.meldrx.com/api/fhir/paydc_6600", "OrganizationName": "NorthStar Alignment", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6603", + "URL": "https://app.meldrx.com/api/fhir/paydc_6603", "OrganizationName": "James C Rees DC PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6604", + "URL": "https://app.meldrx.com/api/fhir/paydc_6604", "OrganizationName": "Atlas Chiropractic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6608", + "URL": "https://app.meldrx.com/api/fhir/paydc_6608", "OrganizationName": "Stafford Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6609", + "URL": "https://app.meldrx.com/api/fhir/paydc_6609", "OrganizationName": "Be Well Spine \u0026 Soul LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6611", + "URL": "https://app.meldrx.com/api/fhir/paydc_6611", "OrganizationName": "Core Chiropractic and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6614", + "URL": "https://app.meldrx.com/api/fhir/paydc_6614", "OrganizationName": "Saffron Spinal Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6615", + "URL": "https://app.meldrx.com/api/fhir/paydc_6615", "OrganizationName": "Bennett Chiropractic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6627", + "URL": "https://app.meldrx.com/api/fhir/paydc_6627", "OrganizationName": "Back to Health Center for Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6628", + "URL": "https://app.meldrx.com/api/fhir/paydc_6628", "OrganizationName": "Scioto Valley Chiropractic and Rehab Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6631", + "URL": "https://app.meldrx.com/api/fhir/paydc_6631", "OrganizationName": "Life Adjusted", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6632", + "URL": "https://app.meldrx.com/api/fhir/paydc_6632", "OrganizationName": "Greve Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6635", + "URL": "https://app.meldrx.com/api/fhir/paydc_6635", "OrganizationName": "Southampton Chiropractic and Wellness Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6636", + "URL": "https://app.meldrx.com/api/fhir/paydc_6636", "OrganizationName": "Transformative Health Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6638", + "URL": "https://app.meldrx.com/api/fhir/paydc_6638", "OrganizationName": "Draney Chiropractic and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6639", + "URL": "https://app.meldrx.com/api/fhir/paydc_6639", "OrganizationName": "Lancaster Chiropractic Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6640", + "URL": "https://app.meldrx.com/api/fhir/paydc_6640", "OrganizationName": "Moon Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6641", + "URL": "https://app.meldrx.com/api/fhir/paydc_6641", "OrganizationName": "Foreward Fitness and Chiropractic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6642", + "URL": "https://app.meldrx.com/api/fhir/paydc_6642", "OrganizationName": "Elizabethtown Family Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6643", + "URL": "https://app.meldrx.com/api/fhir/paydc_6643", "OrganizationName": "Keating Chiropractic and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6644", + "URL": "https://app.meldrx.com/api/fhir/paydc_6644", "OrganizationName": "Action Care Healing and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6645", + "URL": "https://app.meldrx.com/api/fhir/paydc_6645", "OrganizationName": "Dr Andrew Sands DC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6646", + "URL": "https://app.meldrx.com/api/fhir/paydc_6646", "OrganizationName": "THE WELLNESS CENTER AT RITTENHOUSE LLC DBA UTAH NECK \u0026 BACK CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6648", + "URL": "https://app.meldrx.com/api/fhir/paydc_6648", "OrganizationName": "Dr. Craig Selinger DC PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6650", + "URL": "https://app.meldrx.com/api/fhir/paydc_6650", "OrganizationName": "Innate Chiropractic and Wellness Wesley Chapel", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6651", + "URL": "https://app.meldrx.com/api/fhir/paydc_6651", "OrganizationName": "Dr. Julie Chiropractic \u0026 Massage", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6654", + "URL": "https://app.meldrx.com/api/fhir/paydc_6654", "OrganizationName": "Spinal Rehab Network, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6657", + "URL": "https://app.meldrx.com/api/fhir/paydc_6657", "OrganizationName": "Root and Stem Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ennoblecare", + "URL": "https://app.meldrx.com/api/fhir/ennoblecare", "OrganizationName": "Ennoble HC DMV LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity_dt010", + "URL": "https://app.meldrx.com/api/fhir/experity_dt010", "OrganizationName": "Experity - DocuTap Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/southernvascularspecialists", + "URL": "https://app.meldrx.com/api/fhir/southernvascularspecialists", "OrganizationName": "Southern Vascular Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/symmetryvascularcenter", + "URL": "https://app.meldrx.com/api/fhir/symmetryvascularcenter", "OrganizationName": "Symmetry Vascular Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/southcarolinasurgical", + "URL": "https://app.meldrx.com/api/fhir/southcarolinasurgical", "OrganizationName": "South Carolina Surgical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/acvgrandrapids", + "URL": "https://app.meldrx.com/api/fhir/acvgrandrapids", "OrganizationName": "Advanced Cardiac and Vascular Centers for Amputation Prevention", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/associatesvascularcare", + "URL": "https://app.meldrx.com/api/fhir/associatesvascularcare", "OrganizationName": "Associates in Vascular Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/chmg", + "URL": "https://app.meldrx.com/api/fhir/chmg", "OrganizationName": "Coastal Heart Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/hillvascular", + "URL": "https://app.meldrx.com/api/fhir/hillvascular", "OrganizationName": "Hill Vascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/mountainstatevascular", + "URL": "https://app.meldrx.com/api/fhir/mountainstatevascular", "OrganizationName": "Mountain State Vascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/901vascular", + "URL": "https://app.meldrx.com/api/fhir/901vascular", "OrganizationName": "901 Vascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/acvnevadabernstien", + "URL": "https://app.meldrx.com/api/fhir/acvnevadabernstien", "OrganizationName": "ACV Nevada Bernstien", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/appalachianhvi", + "URL": "https://app.meldrx.com/api/fhir/appalachianhvi", "OrganizationName": "Appalachian Heart \u0026 Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/oregonvascularspecialists", + "URL": "https://app.meldrx.com/api/fhir/oregonvascularspecialists", "OrganizationName": "Oregon Vascular Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rockymountainveinbillings", + "URL": "https://app.meldrx.com/api/fhir/rockymountainveinbillings", "OrganizationName": "Rocky Mountain Vein Clinics, PC - Billings MT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rockymountainveinbozeman", + "URL": "https://app.meldrx.com/api/fhir/rockymountainveinbozeman", "OrganizationName": "Rocky Mountain Vein Clinics, PC -Bozeman MT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rockymountainveingreatfalls", + "URL": "https://app.meldrx.com/api/fhir/rockymountainveingreatfalls", "OrganizationName": "Rocky Mountain Vein Clinics, PC - Great Falls MT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/brownsurgicalassociates", + "URL": "https://app.meldrx.com/api/fhir/brownsurgicalassociates", "OrganizationName": "Brown Surgical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/vascularassociatesofsouthalabama", + "URL": "https://app.meldrx.com/api/fhir/vascularassociatesofsouthalabama", "OrganizationName": "Vascular Associates of South Alabama (VASA)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/kheartvascularinstitute", + "URL": "https://app.meldrx.com/api/fhir/kheartvascularinstitute", "OrganizationName": "K Heart and Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/nevadaheartvascular", + "URL": "https://app.meldrx.com/api/fhir/nevadaheartvascular", "OrganizationName": "Nevada Heart and Vascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/nevadaveinvascular", + "URL": "https://app.meldrx.com/api/fhir/nevadaveinvascular", "OrganizationName": "Nevada Vein and Vascular (NVV)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/valleyvascularassociates", + "URL": "https://app.meldrx.com/api/fhir/valleyvascularassociates", "OrganizationName": "Valley Vascular Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-abcc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-abcc", "OrganizationName": "ABC Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-above", + "URL": "https://app.meldrx.com/api/fhir/pimsy-above", "OrganizationName": "Above it all", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-abwt", + "URL": "https://app.meldrx.com/api/fhir/pimsy-abwt", "OrganizationName": "A Better Way Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-acgc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-acgc", "OrganizationName": "Austin Child Guidance Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-achc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-achc", "OrganizationName": "ACTIVE COMMUNITY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-adap", + "URL": "https://app.meldrx.com/api/fhir/pimsy-adap", "OrganizationName": "ADAP Counseling Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-affirm", + "URL": "https://app.meldrx.com/api/fhir/pimsy-affirm", "OrganizationName": "Affirmations Psychological Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ahcs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ahcs", "OrganizationName": "Adonai Healthcare Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-aps", + "URL": "https://app.meldrx.com/api/fhir/pimsy-aps", "OrganizationName": "Advocate Psychological Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-aptc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-aptc", "OrganizationName": "Austin Psychological Testing Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-arcanc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-arcanc", "OrganizationName": "Addiction Recovery Care Association", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ascc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ascc", "OrganizationName": "Adirondack Samaritan Counseling Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ascent", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ascent", "OrganizationName": "Ascent 121", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-bhs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-bhs", "OrganizationName": "Behavioral Solutions, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-blue", + "URL": "https://app.meldrx.com/api/fhir/pimsy-blue", "OrganizationName": "Bluestone Psychiatry, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-bmsc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-bmsc", "OrganizationName": "Blue Moon Senior Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-bpa", + "URL": "https://app.meldrx.com/api/fhir/pimsy-bpa", "OrganizationName": "Courage to Change)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-bwc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-bwc", "OrganizationName": "Because We Care II", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-care", + "URL": "https://app.meldrx.com/api/fhir/pimsy-care", "OrganizationName": "CareConnect, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-casasc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-casasc", "OrganizationName": "Central Alberta Sexual Assault Support Centre", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cbtwnc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cbtwnc", "OrganizationName": "Cognitive Behavioral Therapy Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cca", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cca", "OrganizationName": "CARBONDALE COUNSELING ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cedm", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cedm", "OrganizationName": "Center for Eating Disorders Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-celadon", + "URL": "https://app.meldrx.com/api/fhir/pimsy-celadon", "OrganizationName": "Celadon Recovery Campus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ceogc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ceogc", "OrganizationName": "Step Forward", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cfio", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cfio", "OrganizationName": "Children \u0026 Families of Iowa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-clinic", + "URL": "https://app.meldrx.com/api/fhir/pimsy-clinic", "OrganizationName": "ALEPH Psychological Services, DBA The Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cmap", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cmap", "OrganizationName": "Healthy Lifestyle Program \"Cenla Med Access\"", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cmps", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cmps", "OrganizationName": "Comprehensive MedPsych Systems", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cogp", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cogp", "OrganizationName": "The Counseling Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cpc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cpc", "OrganizationName": "Camas Professional Counseling, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-cps", + "URL": "https://app.meldrx.com/api/fhir/pimsy-cps", "OrganizationName": "Calgary Police - Psychological Services Division", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ctcs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ctcs", "OrganizationName": "Cord of Three Counseling Services, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-dans", + "URL": "https://app.meldrx.com/api/fhir/pimsy-dans", "OrganizationName": "Daniel Silverman", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-daybreak", + "URL": "https://app.meldrx.com/api/fhir/pimsy-daybreak", "OrganizationName": "Daybreak Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-devr", + "URL": "https://app.meldrx.com/api/fhir/pimsy-devr", "OrganizationName": "Devonear, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-dmg", + "URL": "https://app.meldrx.com/api/fhir/pimsy-dmg", "OrganizationName": "Desert Milagros LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ecas", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ecas", "OrganizationName": "Eugene Center For Anxiety And Stress", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-edelson", + "URL": "https://app.meldrx.com/api/fhir/pimsy-edelson", "OrganizationName": "Edelson and Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-emerge", + "URL": "https://app.meldrx.com/api/fhir/pimsy-emerge", "OrganizationName": "Emerge PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-enri", + "URL": "https://app.meldrx.com/api/fhir/pimsy-enri", "OrganizationName": "Counseling \u0026 Enrichment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-etoc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-etoc", "OrganizationName": "Eugene Therapy \u0026 Oregon Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-evolve", + "URL": "https://app.meldrx.com/api/fhir/pimsy-evolve", "OrganizationName": "Evolve LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-fca", + "URL": "https://app.meldrx.com/api/fhir/pimsy-fca", "OrganizationName": "Family Counseling Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ffa", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ffa", "OrganizationName": "Faith \u0026 Family Advocate, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-fgva", + "URL": "https://app.meldrx.com/api/fhir/pimsy-fgva", "OrganizationName": "Family Guidance of Virginia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-fss", + "URL": "https://app.meldrx.com/api/fhir/pimsy-fss", "OrganizationName": "First Step Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-gcs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-gcs", "OrganizationName": "Gateway Community Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-gctw", + "URL": "https://app.meldrx.com/api/fhir/pimsy-gctw", "OrganizationName": "Gulf Coast Therapy Works", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-genesis", + "URL": "https://app.meldrx.com/api/fhir/pimsy-genesis", "OrganizationName": "Genesis.... A New Beginning", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-gmh", + "URL": "https://app.meldrx.com/api/fhir/pimsy-gmh", "OrganizationName": "Grew, Morter, \u0026 Hartye, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-hclf", + "URL": "https://app.meldrx.com/api/fhir/pimsy-hclf", "OrganizationName": "Healthcare Living for Families", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-hfaz", + "URL": "https://app.meldrx.com/api/fhir/pimsy-hfaz", "OrganizationName": "Healthy Futures AZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-hhhs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-hhhs", "OrganizationName": "Helping Hands Health Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-hhwnc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-hhwnc", "OrganizationName": "Hawthorn Heights WNC, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-hights", + "URL": "https://app.meldrx.com/api/fhir/pimsy-hights", "OrganizationName": "Helping Inspire Gifts of Hope Trust and Service", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-hra", + "URL": "https://app.meldrx.com/api/fhir/pimsy-hra", "OrganizationName": "Heron Ridge", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ihcs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ihcs", "OrganizationName": "In-Home Counseling Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-imi", + "URL": "https://app.meldrx.com/api/fhir/pimsy-imi", "OrganizationName": "Inspiring Minds Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-inp", + "URL": "https://app.meldrx.com/api/fhir/pimsy-inp", "OrganizationName": "New Dawn", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-jnp", + "URL": "https://app.meldrx.com/api/fhir/pimsy-jnp", "OrganizationName": "Johnson Neuropsychology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-karalee", + "URL": "https://app.meldrx.com/api/fhir/pimsy-karalee", "OrganizationName": "KaraLee \u0026 Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-kare", + "URL": "https://app.meldrx.com/api/fhir/pimsy-kare", "OrganizationName": "Kids Advocacy Resource Effort", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-keys", + "URL": "https://app.meldrx.com/api/fhir/pimsy-keys", "OrganizationName": "Keys Development", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-kpc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-kpc", "OrganizationName": "KP Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-lcg", + "URL": "https://app.meldrx.com/api/fhir/pimsy-lcg", "OrganizationName": "Life Changes Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ls", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ls", "OrganizationName": "Lauryn Sawyer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-lsca", + "URL": "https://app.meldrx.com/api/fhir/pimsy-lsca", "OrganizationName": "LifeSolutions Counseling Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-lsci", + "URL": "https://app.meldrx.com/api/fhir/pimsy-lsci", "OrganizationName": "Life Strategies Counseling, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-m2m", + "URL": "https://app.meldrx.com/api/fhir/pimsy-m2m", "OrganizationName": "Mind to Mindful", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-maha", + "URL": "https://app.meldrx.com/api/fhir/pimsy-maha", "OrganizationName": "Midwest Asian Health Association", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-mas", + "URL": "https://app.meldrx.com/api/fhir/pimsy-mas", "OrganizationName": "MAS Medical Staffing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-matp", + "URL": "https://app.meldrx.com/api/fhir/pimsy-matp", "OrganizationName": "Matt�s Place", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-mfh", + "URL": "https://app.meldrx.com/api/fhir/pimsy-mfh", "OrganizationName": "Minds for Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-mhr", + "URL": "https://app.meldrx.com/api/fhir/pimsy-mhr", "OrganizationName": "Mental Health Resources", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-mmh", + "URL": "https://app.meldrx.com/api/fhir/pimsy-mmh", "OrganizationName": "Mountaineer Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-mvca", + "URL": "https://app.meldrx.com/api/fhir/pimsy-mvca", "OrganizationName": "Mohawk Valley Counseling Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-mwrs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-mwrs", "OrganizationName": "Medicine Wheel Recovery Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-newc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-newc", "OrganizationName": "New Chance", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-next", + "URL": "https://app.meldrx.com/api/fhir/pimsy-next", "OrganizationName": "AR NextStep Counseling Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-nmphi", + "URL": "https://app.meldrx.com/api/fhir/pimsy-nmphi", "OrganizationName": "New Mainers Public Health Initiative", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-np", + "URL": "https://app.meldrx.com/api/fhir/pimsy-np", "OrganizationName": "New Perspectives", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-nwdwnc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-nwdwnc", "OrganizationName": "No Wrong Door WNC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-paio", + "URL": "https://app.meldrx.com/api/fhir/pimsy-paio", "OrganizationName": "Psychiatric Associates of Iowa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-pcc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-pcc", "OrganizationName": "PERSPECTIVES OF TROY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-pci", + "URL": "https://app.meldrx.com/api/fhir/pimsy-pci", "OrganizationName": "Potomac Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-pcme", + "URL": "https://app.meldrx.com/api/fhir/pimsy-pcme", "OrganizationName": "Progress Center of Maine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-peninsula", + "URL": "https://app.meldrx.com/api/fhir/pimsy-peninsula", "OrganizationName": "Peninsula Psychological Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-phc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-phc", "OrganizationName": "PSYCHOLOGICAL HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-phr", + "URL": "https://app.meldrx.com/api/fhir/pimsy-phr", "OrganizationName": "Psychological Health Roanoke", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-popr", + "URL": "https://app.meldrx.com/api/fhir/pimsy-popr", "OrganizationName": "Positive Progressions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-prowo", + "URL": "https://app.meldrx.com/api/fhir/pimsy-prowo", "OrganizationName": "Project Woman", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ptcs", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ptcs", "OrganizationName": "Pine Tree Community Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-pwc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-pwc", "OrganizationName": "Peaceway Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-rain", + "URL": "https://app.meldrx.com/api/fhir/pimsy-rain", "OrganizationName": "Rainy River Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-refresh", + "URL": "https://app.meldrx.com/api/fhir/pimsy-refresh", "OrganizationName": "REFRESH Corporate Admin Account", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-rens", + "URL": "https://app.meldrx.com/api/fhir/pimsy-rens", "OrganizationName": "Renaissance Social Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-repay", + "URL": "https://app.meldrx.com/api/fhir/pimsy-repay", "OrganizationName": "REPAY, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-rkwell", + "URL": "https://app.meldrx.com/api/fhir/pimsy-rkwell", "OrganizationName": "R\u0026K Wellness and Mental Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-roc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-roc", "OrganizationName": "Red Oak Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-rossccac", + "URL": "https://app.meldrx.com/api/fhir/pimsy-rossccac", "OrganizationName": "Ross County Community Action Commission", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-rota", + "URL": "https://app.meldrx.com/api/fhir/pimsy-rota", "OrganizationName": "Lindsey S. Daniels, Psy.D", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-ryp", + "URL": "https://app.meldrx.com/api/fhir/pimsy-ryp", "OrganizationName": "Royalton Psychological", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-sbd", + "URL": "https://app.meldrx.com/api/fhir/pimsy-sbd", "OrganizationName": "Support by Design", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-sbyam", + "URL": "https://app.meldrx.com/api/fhir/pimsy-sbyam", "OrganizationName": "Maine Immigrant and Refugee Service", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-sccswm", + "URL": "https://app.meldrx.com/api/fhir/pimsy-sccswm", "OrganizationName": "Samaritan Counseling Center Of Southwestern MI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-serenity", + "URL": "https://app.meldrx.com/api/fhir/pimsy-serenity", "OrganizationName": "SERENITY TRAUMA HEALING CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-sfhcc", + "URL": "https://app.meldrx.com/api/fhir/pimsy-sfhcc", "OrganizationName": "Seasons Counseling of Michiana", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-sherman", + "URL": "https://app.meldrx.com/api/fhir/pimsy-sherman", "OrganizationName": "Sherman Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-smps", + "URL": "https://app.meldrx.com/api/fhir/pimsy-smps", "OrganizationName": "Smoky Mountain Psychological Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-stgrp", + "URL": "https://app.meldrx.com/api/fhir/pimsy-stgrp", "OrganizationName": "Spectrum Transformation Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-sundance", + "URL": "https://app.meldrx.com/api/fhir/pimsy-sundance", "OrganizationName": "Sundance Behavioral Resources", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-svtms", + "URL": "https://app.meldrx.com/api/fhir/pimsy-svtms", "OrganizationName": "Silicon Valley TMS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-tabor", + "URL": "https://app.meldrx.com/api/fhir/pimsy-tabor", "OrganizationName": "THE TABOR THERAPY GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-tbm", + "URL": "https://app.meldrx.com/api/fhir/pimsy-tbm", "OrganizationName": "Therapy by Mindy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-tca", + "URL": "https://app.meldrx.com/api/fhir/pimsy-tca", "OrganizationName": "TRIANGLE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-thrive", + "URL": "https://app.meldrx.com/api/fhir/pimsy-thrive", "OrganizationName": "Thrive Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-tides", + "URL": "https://app.meldrx.com/api/fhir/pimsy-tides", "OrganizationName": "Tides of Mind Counseling", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-tis", + "URL": "https://app.meldrx.com/api/fhir/pimsy-tis", "OrganizationName": "Therapeutic Intervention Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-tnl", + "URL": "https://app.meldrx.com/api/fhir/pimsy-tnl", "OrganizationName": "The Northern Lighthouse, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-tph", + "URL": "https://app.meldrx.com/api/fhir/pimsy-tph", "OrganizationName": "The Potter's House Family And Children Treatment C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-uifl", + "URL": "https://app.meldrx.com/api/fhir/pimsy-uifl", "OrganizationName": "Utopian Institute of Family Living", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-uptown", + "URL": "https://app.meldrx.com/api/fhir/pimsy-uptown", "OrganizationName": "Psychiatry Specialists Inc dba Uptown Psych", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-urban", + "URL": "https://app.meldrx.com/api/fhir/pimsy-urban", "OrganizationName": "Urban Balance", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-usafwb", + "URL": "https://app.meldrx.com/api/fhir/pimsy-usafwb", "OrganizationName": "USA FAMILY WELL BEING", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-vcrw", + "URL": "https://app.meldrx.com/api/fhir/pimsy-vcrw", "OrganizationName": "Vermont Center for Responder Wellness \u0026 Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-well", + "URL": "https://app.meldrx.com/api/fhir/pimsy-well", "OrganizationName": "Wellness Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-wmbh", + "URL": "https://app.meldrx.com/api/fhir/pimsy-wmbh", "OrganizationName": "Western Maine Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-wsga", + "URL": "https://app.meldrx.com/api/fhir/pimsy-wsga", "OrganizationName": "Winslow Guidance Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-xplor", + "URL": "https://app.meldrx.com/api/fhir/pimsy-xplor", "OrganizationName": "XPLOR COUNSELING", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pimsy-testnew", + "URL": "https://app.meldrx.com/api/fhir/pimsy-testnew", "OrganizationName": "PIMSY Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/advancedeye", + "URL": "https://app.meldrx.com/api/fhir/advancedeye", "OrganizationName": "AdvancedEye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/arizonaeye", + "URL": "https://app.meldrx.com/api/fhir/arizonaeye", "OrganizationName": "ArizonaEye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/associatedeyecare", + "URL": "https://app.meldrx.com/api/fhir/associatedeyecare", "OrganizationName": "Associated Eye-care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/athwaleye", + "URL": "https://app.meldrx.com/api/fhir/athwaleye", "OrganizationName": "AthwalEye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/austineye", + "URL": "https://app.meldrx.com/api/fhir/austineye", "OrganizationName": "Austin Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/azareye", + "URL": "https://app.meldrx.com/api/fhir/azareye", "OrganizationName": "Azar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/cartereyecenter", + "URL": "https://app.meldrx.com/api/fhir/cartereyecenter", "OrganizationName": "CarterEye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/chesterroe", + "URL": "https://app.meldrx.com/api/fhir/chesterroe", "OrganizationName": "ChesterROE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/childrenseye", + "URL": "https://app.meldrx.com/api/fhir/childrenseye", "OrganizationName": "ChildrensEye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/creeksidevision", + "URL": "https://app.meldrx.com/api/fhir/creeksidevision", "OrganizationName": "Creekside Vision", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/hartmaneyegroup", + "URL": "https://app.meldrx.com/api/fhir/hartmaneyegroup", "OrganizationName": "Hartman Eye Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/regionaleyeassociates", + "URL": "https://app.meldrx.com/api/fhir/regionaleyeassociates", "OrganizationName": "Regional Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecnj", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecnj", "OrganizationName": "OPTOMETRIC PHYSICIANS OF MIDDLETOWN PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecga", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecga", "OrganizationName": "CLARKSON OPTOMETRY GEORGIA INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_eca", + "URL": "https://app.meldrx.com/api/fhir/ecp_eca", "OrganizationName": "EYECARE ASSOCIATES, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecva", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecva", "OrganizationName": "MAY \u0026 HETTLER, O.D., PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecfl", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecfl", "OrganizationName": "SIGHT AND SUN EYEWORKS LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecoh", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecoh", "OrganizationName": "CLARKSON OPTOMETRY MIDWEST INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecmo", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecmo", "OrganizationName": "CLARKSON OPTOMETRY INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecmi", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecmi", "OrganizationName": "BENNETT OPTOMETRY LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecil", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecil", "OrganizationName": "CLARKSON OPTOMETRY ILLINOIS, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecks", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecks", "OrganizationName": "DRS PRICE YOUNG ODLE \u0026 HORSCH PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_ecc", + "URL": "https://app.meldrx.com/api/fhir/ecp_ecc", "OrganizationName": "EYECARECENTER OD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cectx", + "URL": "https://app.meldrx.com/api/fhir/ecp_cectx", "OrganizationName": "FRISCO EYE ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ecp_cecaz", + "URL": "https://app.meldrx.com/api/fhir/ecp_cecaz", "OrganizationName": "ADVANCED EYECARE AND VISION THERAPY INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/darena_health_pg", - "OrganizationName": "Darena Health PG", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.meldrx.com/fhir/darena_care_ad", + "URL": "https://app.meldrx.com/api/fhir/darena_care_ad", "OrganizationName": "Darena Care AD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_cov", + "URL": "https://app.meldrx.com/api/fhir/osteal_cov", "OrganizationName": "Covenant", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_capitaleye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_capitaleye", "OrganizationName": "Capital Eye Consultants, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_maxvision", + "URL": "https://app.meldrx.com/api/fhir/imedicware_maxvision", "OrganizationName": "Max Vision PLLC dba Eye Physicians of Lakewood", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_arkansasoutpatient", + "URL": "https://app.meldrx.com/api/fhir/imedicware_arkansasoutpatient", "OrganizationName": "Arkansas Outpatient-Eye-SurgeryCenter", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_cfe", + "URL": "https://app.meldrx.com/api/fhir/imedicware_cfe", "OrganizationName": "Central Florida Eye Specialists and Laser Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_clariseye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_clariseye", "OrganizationName": "Claris Eye Care \u0026 Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_dedhameye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_dedhameye", "OrganizationName": "Dedham Ophthalmic Consultants \u0026 Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_eyephysicianslancaster", + "URL": "https://app.meldrx.com/api/fhir/imedicware_eyephysicianslancaster", "OrganizationName": "Eye Physicians of Lancaster", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_fairview", + "URL": "https://app.meldrx.com/api/fhir/imedicware_fairview", "OrganizationName": "Fairview Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_familyeyemedical", + "URL": "https://app.meldrx.com/api/fhir/imedicware_familyeyemedical", "OrganizationName": "Family Medical Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_samo", + "URL": "https://app.meldrx.com/api/fhir/imedicware_samo", "OrganizationName": "Santa Monica Eye Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_seaside", + "URL": "https://app.meldrx.com/api/fhir/imedicware_seaside", "OrganizationName": "Seaside Ophthalmology, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_shabatian", + "URL": "https://app.meldrx.com/api/fhir/imedicware_shabatian", "OrganizationName": "Ventura Institute of Ophthalmology Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_theeyecenter", + "URL": "https://app.meldrx.com/api/fhir/imedicware_theeyecenter", "OrganizationName": "The Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_tylock", + "URL": "https://app.meldrx.com/api/fhir/imedicware_tylock", "OrganizationName": "Tylock-George Eye Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_vces", + "URL": "https://app.meldrx.com/api/fhir/imedicware_vces", "OrganizationName": "Virginia Center for Eye Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0115", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0115", "OrganizationName": "AFC Hollywood, FL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc05455_yakimaurologyassoc", + "URL": "https://app.meldrx.com/api/fhir/uc05455_yakimaurologyassoc", "OrganizationName": "Yakima Urology at Memorial Tr", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_silverman", + "URL": "https://app.meldrx.com/api/fhir/imedicware_silverman", "OrganizationName": "Silverman Eye Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_surgicalcarecenter", + "URL": "https://app.meldrx.com/api/fhir/imedicware_surgicalcarecenter", "OrganizationName": "Surgical Care Center, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_vghwhitingclinic", + "URL": "https://app.meldrx.com/api/fhir/imedicware_vghwhitingclinic", "OrganizationName": "Whiting Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_associatesinophthalmology", + "URL": "https://app.meldrx.com/api/fhir/imedicware_associatesinophthalmology", "OrganizationName": "Associates In Ophthalmology - MI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_fishman", + "URL": "https://app.meldrx.com/api/fhir/imedicware_fishman", "OrganizationName": "Fishman \u0026 Sheridan Eyecare Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_henry", + "URL": "https://app.meldrx.com/api/fhir/imedicware_henry", "OrganizationName": "Henry Eye Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_keystone", + "URL": "https://app.meldrx.com/api/fhir/imedicware_keystone", "OrganizationName": "Keystone Eye Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_kirkeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_kirkeye", "OrganizationName": "Kirk Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_lifestyle", + "URL": "https://app.meldrx.com/api/fhir/imedicware_lifestyle", "OrganizationName": "Lifestyle Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_dso", + "URL": "https://app.meldrx.com/api/fhir/imedicware_dso", "OrganizationName": "Heart of Texas Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_lvivi", + "URL": "https://app.meldrx.com/api/fhir/imedicware_lvivi", "OrganizationName": "Laser Vision Institute of the Virgin Islands", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_manahan", + "URL": "https://app.meldrx.com/api/fhir/imedicware_manahan", "OrganizationName": "Manahan Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_mcdonaldeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_mcdonaldeye", "OrganizationName": "Mcdonald Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_millmanderr", + "URL": "https://app.meldrx.com/api/fhir/imedicware_millmanderr", "OrganizationName": "Millman-Derr Center for Eye Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_miramar", + "URL": "https://app.meldrx.com/api/fhir/imedicware_miramar", "OrganizationName": "Miramar Eye Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_visionfirst", + "URL": "https://app.meldrx.com/api/fhir/imedicware_visionfirst", "OrganizationName": "VisionFirst Eye Center - AL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_hamiltoneye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_hamiltoneye", "OrganizationName": "Hamilton Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_retinaassociates", + "URL": "https://app.meldrx.com/api/fhir/imedicware_retinaassociates", "OrganizationName": "Retina Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_mec", + "URL": "https://app.meldrx.com/api/fhir/imedicware_mec", "OrganizationName": "Milan Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_betz", + "URL": "https://app.meldrx.com/api/fhir/imedicware_betz", "OrganizationName": "Betz Ophthalmology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_cfei", + "URL": "https://app.meldrx.com/api/fhir/imedicware_cfei", "OrganizationName": "Central Florida Eye Institute - CFEI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_centralvisioneyecare", + "URL": "https://app.meldrx.com/api/fhir/imedicware_centralvisioneyecare", "OrganizationName": "Central Vision Eyecare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_chamg", + "URL": "https://app.meldrx.com/api/fhir/imedicware_chamg", "OrganizationName": "CHA Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_crandall", + "URL": "https://app.meldrx.com/api/fhir/imedicware_crandall", "OrganizationName": "crandalleye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_cunningham", + "URL": "https://app.meldrx.com/api/fhir/imedicware_cunningham", "OrganizationName": "C\u0026M Medical Billing LLC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_derbyeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_derbyeye", "OrganizationName": "Derby Eye and Vision", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_envisioneye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_envisioneye", "OrganizationName": "Envision Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_eyephysiciansofaustin", + "URL": "https://app.meldrx.com/api/fhir/imedicware_eyephysiciansofaustin", "OrganizationName": "Eye Physicians of Austin", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_eyeassociates", + "URL": "https://app.meldrx.com/api/fhir/imedicware_eyeassociates", "OrganizationName": "Eye Associates (Vineland)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_feinermanvision", + "URL": "https://app.meldrx.com/api/fhir/imedicware_feinermanvision", "OrganizationName": "Feinerman Vision Ctr", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_friedbergeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_friedbergeye", "OrganizationName": "Friedberg Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_lehighvalley", + "URL": "https://app.meldrx.com/api/fhir/imedicware_lehighvalley", "OrganizationName": "Lehigh Valley (Center for Sight)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_pecsl", + "URL": "https://app.meldrx.com/api/fhir/imedicware_pecsl", "OrganizationName": "Premier Eye Care \u0026 Surgery LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-drx0025", + "URL": "https://app.meldrx.com/api/fhir/experity-drx0025", "OrganizationName": "AFC Urgent Care Nanuet", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_ufg", + "URL": "https://app.meldrx.com/api/fhir/osteal_ufg", "OrganizationName": "University of Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_phu", + "URL": "https://app.meldrx.com/api/fhir/osteal_phu", "OrganizationName": "Rothman Institute Thomas Jefferson University", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_okc", + "URL": "https://app.meldrx.com/api/fhir/osteal_okc", "OrganizationName": "Integris Southwest Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_oca", + "URL": "https://app.meldrx.com/api/fhir/osteal_oca", "OrganizationName": "OrthoCarolina", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_uap", + "URL": "https://app.meldrx.com/api/fhir/osteal_uap", "OrganizationName": "University of Arizona - Banner Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/commonhealth", + "URL": "https://app.meldrx.com/api/fhir/commonhealth", "OrganizationName": "CommonHealth", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/t5x2d7ew", + "URL": "https://app.meldrx.com/api/fhir/t5x2d7ew", "OrganizationName": "Eye Clinic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_berkeleyeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_berkeleyeye", "OrganizationName": "Berkeley Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/k7d8z3ae", + "URL": "https://app.meldrx.com/api/fhir/k7d8z3ae", "OrganizationName": "Bellingham Bay Ophthalmology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_castellano_eyecare", + "URL": "https://app.meldrx.com/api/fhir/imedicware_castellano_eyecare", "OrganizationName": "Joseph P Castellano", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_tuscarawas_eye_centre_inc", + "URL": "https://app.meldrx.com/api/fhir/imedicware_tuscarawas_eye_centre_inc", "OrganizationName": "Tuscarawas Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_martin_edwards_fletcher", + "URL": "https://app.meldrx.com/api/fhir/imedicware_martin_edwards_fletcher", "OrganizationName": "Martin Edward Fletcher, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_5331", + "URL": "https://app.meldrx.com/api/fhir/paydc_5331", "OrganizationName": "Forbes Family Chiropractic, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_edwin_schottenstein", + "URL": "https://app.meldrx.com/api/fhir/imedicware_edwin_schottenstein", "OrganizationName": "Edwin M. Schottenstein, M.D", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/aep98fr1", + "URL": "https://app.meldrx.com/api/fhir/aep98fr1", "OrganizationName": "Auburn Eye Physicians, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/jrl43lk4", + "URL": "https://app.meldrx.com/api/fhir/jrl43lk4", "OrganizationName": "Jeffrey R. Lander, MD, LLC (Leader Heights Eye Center)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/tec32qz5", + "URL": "https://app.meldrx.com/api/fhir/tec32qz5", "OrganizationName": "The Eye Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/wey56dv9", + "URL": "https://app.meldrx.com/api/fhir/wey56dv9", "OrganizationName": "Wade E. Young, M.D., Inc dba Tiffin Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_chu", + "URL": "https://app.meldrx.com/api/fhir/osteal_chu", "OrganizationName": "University of Virginia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_advanced_eye_care_nemeth", + "URL": "https://app.meldrx.com/api/fhir/imedicware_advanced_eye_care_nemeth", "OrganizationName": "Advanced Eye Care - Nemeth", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_clc", + "URL": "https://app.meldrx.com/api/fhir/osteal_clc", "OrganizationName": "Cleveland Clinic, OH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/7p45tr57", + "URL": "https://app.meldrx.com/api/fhir/7p45tr57", "OrganizationName": "Morganton Eye Physicians, P.A. \u0026 Surgery Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_bennett", + "URL": "https://app.meldrx.com/api/fhir/imedicware_bennett", "OrganizationName": "Bennett \u0026 Bloom", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_campanella_eye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_campanella_eye", "OrganizationName": "Campanella Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/p0k8n6v4", + "URL": "https://app.meldrx.com/api/fhir/p0k8n6v4", "OrganizationName": "David S Hoffman MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_ardoin", + "URL": "https://app.meldrx.com/api/fhir/imedicware_ardoin", "OrganizationName": "Ardoin Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/9u2d3g5a", + "URL": "https://app.meldrx.com/api/fhir/9u2d3g5a", "OrganizationName": "Highlands Eye Institute, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/8q0a4x6m", + "URL": "https://app.meldrx.com/api/fhir/8q0a4x6m", "OrganizationName": "South Ocean Ophthalmology PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/1s2k7g8f", + "URL": "https://app.meldrx.com/api/fhir/1s2k7g8f", "OrganizationName": "Brighton Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/5r4e9b1c", + "URL": "https://app.meldrx.com/api/fhir/5r4e9b1c", "OrganizationName": "Mountain View Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/8y0p1j5v", + "URL": "https://app.meldrx.com/api/fhir/8y0p1j5v", "OrganizationName": "Rayner Eye Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/3n7m2x7h", + "URL": "https://app.meldrx.com/api/fhir/3n7m2x7h", "OrganizationName": "OXFORD EYE SURGERY CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/4t6c9b0p", + "URL": "https://app.meldrx.com/api/fhir/4t6c9b0p", "OrganizationName": "RAYNER OPTICAL, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_claris", + "URL": "https://app.meldrx.com/api/fhir/imedicware_claris", "OrganizationName": "ClarisVision", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_davisvisioncenter", + "URL": "https://app.meldrx.com/api/fhir/imedicware_davisvisioncenter", "OrganizationName": "Davis Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/t7g8d1e4", + "URL": "https://app.meldrx.com/api/fhir/t7g8d1e4", "OrganizationName": "Jackson Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx079", + "URL": "https://app.meldrx.com/api/fhir/experity-tx079", "OrganizationName": "Affinity Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-tx124", + "URL": "https://app.meldrx.com/api/fhir/experity-tx124", "OrganizationName": "Pediatric Urgent Care of Denton", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/experity-nc006", + "URL": "https://app.meldrx.com/api/fhir/experity-nc006", "OrganizationName": "Urgent Care Down East", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/9p7k5f3d", + "URL": "https://app.meldrx.com/api/fhir/9p7k5f3d", "OrganizationName": "Mission Hills Eye Center Medical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/patientfirst", + "URL": "https://app.meldrx.com/api/fhir/patientfirst", "OrganizationName": "PatientFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/py54rf32", + "URL": "https://app.meldrx.com/api/fhir/py54rf32", "OrganizationName": "Advanced Ophthalmology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sc90we12", + "URL": "https://app.meldrx.com/api/fhir/sc90we12", "OrganizationName": "Atlantic Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ut88qa45", + "URL": "https://app.meldrx.com/api/fhir/ut88qa45", "OrganizationName": "Allegra Arthritis Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ki76yt34", + "URL": "https://app.meldrx.com/api/fhir/ki76yt34", "OrganizationName": "Regional Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/zx48gf39", + "URL": "https://app.meldrx.com/api/fhir/zx48gf39", "OrganizationName": "Lawrence Perlmutter, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/dj22km59", + "URL": "https://app.meldrx.com/api/fhir/dj22km59", "OrganizationName": "Starer-Rizzo-Ruffini Ophthalmic Associates P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/vd87xf53", + "URL": "https://app.meldrx.com/api/fhir/vd87xf53", "OrganizationName": "Wichita Vision Institute, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/bh33ws14", + "URL": "https://app.meldrx.com/api/fhir/bh33ws14", "OrganizationName": "Moore Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/gh56df78", + "URL": "https://app.meldrx.com/api/fhir/gh56df78", "OrganizationName": "Edmond Regional Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/dw32ax89", + "URL": "https://app.meldrx.com/api/fhir/dw32ax89", "OrganizationName": "Tekwani Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/90yt21gf", + "URL": "https://app.meldrx.com/api/fhir/90yt21gf", "OrganizationName": "Derry Family Eye Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/vs76ur56", + "URL": "https://app.meldrx.com/api/fhir/vs76ur56", "OrganizationName": "Deer Eye Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pk92qb38", + "URL": "https://app.meldrx.com/api/fhir/pk92qb38", "OrganizationName": "North Iowa Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_eastvalleyoph", + "URL": "https://app.meldrx.com/api/fhir/imedicware_eastvalleyoph", "OrganizationName": "East Valley Ophthalmology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_massengaleeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_massengaleeye", "OrganizationName": "Massengale Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_ohiovalleyeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_ohiovalleyeye", "OrganizationName": "Ohio Valley Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_thao_tran_eye_doctor", + "URL": "https://app.meldrx.com/api/fhir/imedicware_thao_tran_eye_doctor", "OrganizationName": "Thao Tran Eye Doctor", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_wang_vision", + "URL": "https://app.meldrx.com/api/fhir/imedicware_wang_vision", "OrganizationName": "Wang Vision", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_magiesmithchartoneye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_magiesmithchartoneye", "OrganizationName": "Magiesmithchartoneye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_gec", + "URL": "https://app.meldrx.com/api/fhir/imedicware_gec", "OrganizationName": "Gec", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_finkelstein", + "URL": "https://app.meldrx.com/api/fhir/imedicware_finkelstein", "OrganizationName": "Finkelstein", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_cep", + "URL": "https://app.meldrx.com/api/fhir/imedicware_cep", "OrganizationName": "California Eye Professionals (CEP)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/93as17mb", + "URL": "https://app.meldrx.com/api/fhir/93as17mb", "OrganizationName": "Oakland Ophthalmic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/darenahealth", - "OrganizationName": "Darena Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.meldrx.com/fhir/vo90cc71", + "URL": "https://app.meldrx.com/api/fhir/vo90cc71", "OrganizationName": "Visionary Ophthalmology and Cataract Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/es82ny71", + "URL": "https://app.meldrx.com/api/fhir/es82ny71", "OrganizationName": "Eye Surgeons of Central New York", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pw01bw43", + "URL": "https://app.meldrx.com/api/fhir/pw01bw43", "OrganizationName": "Eye Institute of Mississippi", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/js62qa55", + "URL": "https://app.meldrx.com/api/fhir/js62qa55", "OrganizationName": "Eye Institute of Mississippi", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/uc53680_gillespiecountyurology", + "URL": "https://app.meldrx.com/api/fhir/uc53680_gillespiecountyurology", "OrganizationName": "Gillespie County Urology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_dfwretina", + "URL": "https://app.meldrx.com/api/fhir/imedicware_dfwretina", "OrganizationName": "Dallas Fort Worth Retina", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_eye_surgery_consultants", + "URL": "https://app.meldrx.com/api/fhir/imedicware_eye_surgery_consultants", "OrganizationName": "Eye Surgery Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_hashemi", + "URL": "https://app.meldrx.com/api/fhir/imedicware_hashemi", "OrganizationName": "Hashemi", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_sneed_eye_associates", + "URL": "https://app.meldrx.com/api/fhir/imedicware_sneed_eye_associates", "OrganizationName": "Sneed Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_eye_institute_southeastern", + "URL": "https://app.meldrx.com/api/fhir/imedicware_eye_institute_southeastern", "OrganizationName": "Eye Institute of Southeastern MI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_ehb_jr_facs", + "URL": "https://app.meldrx.com/api/fhir/imedicware_ehb_jr_facs", "OrganizationName": "Edward H Bedrossian Jr Md Facs (ehb)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/07des9gf", + "URL": "https://app.meldrx.com/api/fhir/07des9gf", "OrganizationName": "Delaware Eye Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/aec0th65", + "URL": "https://app.meldrx.com/api/fhir/aec0th65", "OrganizationName": "Akstein Eye Center, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/me45ca23", + "URL": "https://app.meldrx.com/api/fhir/me45ca23", "OrganizationName": "Memphis Eye \u0026 Cataract Associates, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_thp", + "URL": "https://app.meldrx.com/api/fhir/osteal_thp", "OrganizationName": "Texas Health Presbyterian", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_drpitts", + "URL": "https://app.meldrx.com/api/fhir/imedicware_drpitts", "OrganizationName": "Dr. Pitts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_dr_brent_e_walker", + "URL": "https://app.meldrx.com/api/fhir/imedicware_dr_brent_e_walker", "OrganizationName": "Dr. Brent Walker", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_aiyan_diabetes", + "URL": "https://app.meldrx.com/api/fhir/imedicware_aiyan_diabetes", "OrganizationName": "Aiyan Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_arkansasretinaclinic", + "URL": "https://app.meldrx.com/api/fhir/imedicware_arkansasretinaclinic", "OrganizationName": "Arkansas Retina Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_movshovich", + "URL": "https://app.meldrx.com/api/fhir/imedicware_movshovich", "OrganizationName": "Movshovich", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_osu", + "URL": "https://app.meldrx.com/api/fhir/osteal_osu", "OrganizationName": "Ohio State University", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_wec", + "URL": "https://app.meldrx.com/api/fhir/osteal_wec", "OrganizationName": "Cleveland Clinic, FL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_col", + "URL": "https://app.meldrx.com/api/fhir/osteal_col", "OrganizationName": "Columbia University", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ms83ra37", + "URL": "https://app.meldrx.com/api/fhir/ms83ra37", "OrganizationName": "Mid-South Retina Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_southmichiganophthalmology", + "URL": "https://app.meldrx.com/api/fhir/imedicware_southmichiganophthalmology", "OrganizationName": "South Michigan Ophthalmology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_premiumlaseroph", + "URL": "https://app.meldrx.com/api/fhir/imedicware_premiumlaseroph", "OrganizationName": "Premium Laser Oph", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/osteal_ukl", + "URL": "https://app.meldrx.com/api/fhir/osteal_ukl", "OrganizationName": "University of Kentucky", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_bzoa", + "URL": "https://app.meldrx.com/api/fhir/imedicware_bzoa", "OrganizationName": "Bzoa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_downeasteye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_downeasteye", "OrganizationName": "Downeast Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_alliedeyeps", + "URL": "https://app.meldrx.com/api/fhir/imedicware_alliedeyeps", "OrganizationName": "Allied Eye PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/dv51ct09", + "URL": "https://app.meldrx.com/api/fhir/dv51ct09", "OrganizationName": "Dakota Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ea28pc91", + "URL": "https://app.meldrx.com/api/fhir/ea28pc91", "OrganizationName": "Eye Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/gr61ec73", + "URL": "https://app.meldrx.com/api/fhir/gr61ec73", "OrganizationName": "EYES OF GRACE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/be87ec17", + "URL": "https://app.meldrx.com/api/fhir/be87ec17", "OrganizationName": "The Bixby Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ce49nb17", + "URL": "https://app.meldrx.com/api/fhir/ce49nb17", "OrganizationName": "Coastal Eye Clinic - New Bern, NC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rl04pa82", + "URL": "https://app.meldrx.com/api/fhir/rl04pa82", "OrganizationName": "David M. Ringel, DO, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/testingss_0914", - "OrganizationName": "testingss_0914", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.meldrx.com/fhir/la09rz76", + "URL": "https://app.meldrx.com/api/fhir/la09rz76", "OrganizationName": "Leo Ayzenberg MD INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ra43mc13", + "URL": "https://app.meldrx.com/api/fhir/ra43mc13", "OrganizationName": "Retina of Auburn \u0026 Metro Columbus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rb55zx64", + "URL": "https://app.meldrx.com/api/fhir/rb55zx64", "OrganizationName": "Roy Z Braunstein, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sf32ec77", + "URL": "https://app.meldrx.com/api/fhir/sf32ec77", "OrganizationName": "Spectacle Family Eye Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/bm81od01", + "URL": "https://app.meldrx.com/api/fhir/bm81od01", "OrganizationName": "Bruce Micley, O.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/jc69fq23", + "URL": "https://app.meldrx.com/api/fhir/jc69fq23", "OrganizationName": "Jonathan Chun, O.D. LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ml44yt51", + "URL": "https://app.meldrx.com/api/fhir/ml44yt51", "OrganizationName": "Martin Leib,M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/jm04gs16", + "URL": "https://app.meldrx.com/api/fhir/jm04gs16", "OrganizationName": "John C Merriam M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ce45in12", + "URL": "https://app.meldrx.com/api/fhir/ce45in12", "OrganizationName": "Complete Eye Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sc76rs34", + "URL": "https://app.meldrx.com/api/fhir/sc76rs34", "OrganizationName": "Southern California Retina Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ec20lk88", + "URL": "https://app.meldrx.com/api/fhir/ec20lk88", "OrganizationName": "EyeCare 20/20 - NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_golden_state_eye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_golden_state_eye", "OrganizationName": "Golden State Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_south_etog", + "URL": "https://app.meldrx.com/api/fhir/imedicware_south_etog", "OrganizationName": "Southeast Texas Op", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_whitesquarevascular", + "URL": "https://app.meldrx.com/api/fhir/fivos_whitesquarevascular", "OrganizationName": "White Square Vascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_flintvascularsurgical", + "URL": "https://app.meldrx.com/api/fhir/fivos_flintvascularsurgical", "OrganizationName": "Flint Vascular Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_innovativeminimallyinvasiveimagingtherapeutics", + "URL": "https://app.meldrx.com/api/fhir/fivos_innovativeminimallyinvasiveimagingtherapeutics", "OrganizationName": "Innovative Minimally Invasive Imaging \u0026 Therapeutics, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_northwestmichigansurgicalgroup", + "URL": "https://app.meldrx.com/api/fhir/fivos_northwestmichigansurgicalgroup", "OrganizationName": "NWMI - NW-Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_sanantoniovascularandendovascularclinic", + "URL": "https://app.meldrx.com/api/fhir/fivos_sanantoniovascularandendovascularclinic", "OrganizationName": "San Antonio Vascular and Endovascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_valleyvascularconsultants", + "URL": "https://app.meldrx.com/api/fhir/fivos_valleyvascularconsultants", "OrganizationName": "Valley Vascular Consultants (VVC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_vanguardvascular", + "URL": "https://app.meldrx.com/api/fhir/fivos_vanguardvascular", "OrganizationName": "Vanguard Vascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_vascularandveincenterofnj", + "URL": "https://app.meldrx.com/api/fhir/fivos_vascularandveincenterofnj", "OrganizationName": "Vascular \u0026 Vein Center of NJ (VVCNJ)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_vascularaction", + "URL": "https://app.meldrx.com/api/fhir/fivos_vascularaction", "OrganizationName": "Vascular Action, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_vascularspecialists", + "URL": "https://app.meldrx.com/api/fhir/fivos_vascularspecialists", "OrganizationName": "Vascular Specialists, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_vivaa", + "URL": "https://app.meldrx.com/api/fhir/fivos_vivaa", "OrganizationName": "VIVAA LLC Vein Vascular and Aesthetic Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_westernvascularinstitute", + "URL": "https://app.meldrx.com/api/fhir/fivos_westernvascularinstitute", "OrganizationName": "Western Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_indianavascularsurgerycenter", + "URL": "https://app.meldrx.com/api/fhir/fivos_indianavascularsurgerycenter", "OrganizationName": "Indiana Vascular Surgery Center Dr. Sanjay Mohindra (DSM)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_ozarkregionalveincenter", + "URL": "https://app.meldrx.com/api/fhir/fivos_ozarkregionalveincenter", "OrganizationName": "OZARK REGIONAL VEIN CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_oregonvascularandveininstitute", + "URL": "https://app.meldrx.com/api/fhir/fivos_oregonvascularandveininstitute", "OrganizationName": "Oregon Vascular and Vein Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_acvtccvcnm", + "URL": "https://app.meldrx.com/api/fhir/fivos_acvtccvcnm", "OrganizationName": "ACV Traverse CVCNM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_americanvascularspecialists", + "URL": "https://app.meldrx.com/api/fhir/fivos_americanvascularspecialists", "OrganizationName": "American Vascular Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_cardiovascularinstituteofsandiego", + "URL": "https://app.meldrx.com/api/fhir/fivos_cardiovascularinstituteofsandiego", "OrganizationName": "Cardiovascular Institute of San Diego", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_centerforvascularintervention", + "URL": "https://app.meldrx.com/api/fhir/fivos_centerforvascularintervention", "OrganizationName": "Center for Vascular Intervention", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_centralohiovascularcarevivevascular", + "URL": "https://app.meldrx.com/api/fhir/fivos_centralohiovascularcarevivevascular", "OrganizationName": "Central Ohio Vascular Care - Vive Vascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_comprehensivevascularsurgeryofgeorgia", + "URL": "https://app.meldrx.com/api/fhir/fivos_comprehensivevascularsurgeryofgeorgia", "OrganizationName": "Comprehensive Vascular Surgery of Georgia (CVSG)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_lakesinterventionalradiology", + "URL": "https://app.meldrx.com/api/fhir/fivos_lakesinterventionalradiology", "OrganizationName": "Lakes Interventional Radiology dba Unique Interventional Radiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_medicalveinclinic", + "URL": "https://app.meldrx.com/api/fhir/fivos_medicalveinclinic", "OrganizationName": "Medical Vein Clinic (MVC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_northeastohiovascularassociates", + "URL": "https://app.meldrx.com/api/fhir/fivos_northeastohiovascularassociates", "OrganizationName": "Northeast Ohio Vascular Associates - Rollins", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_orangecountyvascularspecialists", + "URL": "https://app.meldrx.com/api/fhir/fivos_orangecountyvascularspecialists", "OrganizationName": "Orange County Vascular Specialists (OCVS)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_peachtreevascularspecialists", + "URL": "https://app.meldrx.com/api/fhir/fivos_peachtreevascularspecialists", "OrganizationName": "Peachtree Vascular Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_pedesmedicusmanagement", + "URL": "https://app.meldrx.com/api/fhir/fivos_pedesmedicusmanagement", "OrganizationName": "PEDES - Medicus Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_surgicalassociatesofsandiego", + "URL": "https://app.meldrx.com/api/fhir/fivos_surgicalassociatesofsandiego", "OrganizationName": "Surgical Associates of San Diego (SASD)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_solanocardiovascularconsultants", + "URL": "https://app.meldrx.com/api/fhir/fivos_solanocardiovascularconsultants", "OrganizationName": "Solano Cardiovascular", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_surgicalcareassociates", + "URL": "https://app.meldrx.com/api/fhir/fivos_surgicalcareassociates", "OrganizationName": "Surgical Care Associates, P.S.C - KYSurgical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_vascularcenterofintervention", + "URL": "https://app.meldrx.com/api/fhir/fivos_vascularcenterofintervention", "OrganizationName": "Vascular Center of Intervention - Dr. Lee", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_vascularcenterofmobile", + "URL": "https://app.meldrx.com/api/fhir/fivos_vascularcenterofmobile", "OrganizationName": "Vascular Center of Mobile (VCOM)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_advantageirtx", + "URL": "https://app.meldrx.com/api/fhir/fivos_advantageirtx", "OrganizationName": "Advantage IR", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_advantageiraz", + "URL": "https://app.meldrx.com/api/fhir/fivos_advantageiraz", "OrganizationName": "Advantage IR - AZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rc38wk11", + "URL": "https://app.meldrx.com/api/fhir/rc38wk11", "OrganizationName": "The Retina Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sb81pt01", + "URL": "https://app.meldrx.com/api/fhir/sb81pt01", "OrganizationName": "Stony Brook", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pa15qf99", + "URL": "https://app.meldrx.com/api/fhir/pa15qf99", "OrganizationName": "The Eye center of central PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ah08ec77", + "URL": "https://app.meldrx.com/api/fhir/ah08ec77", "OrganizationName": "Atlantic Health Eye Care Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/radnet_arizona", + "URL": "https://app.meldrx.com/api/fhir/radnet_arizona", "OrganizationName": "Radnet Arizona", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/radnet_california", + "URL": "https://app.meldrx.com/api/fhir/radnet_california", "OrganizationName": "RadNet California", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/radnet_florida", + "URL": "https://app.meldrx.com/api/fhir/radnet_florida", "OrganizationName": "RadNet Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/gl98ei81", + "URL": "https://app.meldrx.com/api/fhir/gl98ei81", "OrganizationName": "Great Lakes Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fe77hg41", + "URL": "https://app.meldrx.com/api/fhir/fe77hg41", "OrganizationName": "Francis Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/oa56tr43", + "URL": "https://app.meldrx.com/api/fhir/oa56tr43", "OrganizationName": "Ophthalmology Associates of Western New York", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/os34tb33", + "URL": "https://app.meldrx.com/api/fhir/os34tb33", "OrganizationName": "Ophthalmic Surgeons of Greater Bridgeport", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rl68ad17", + "URL": "https://app.meldrx.com/api/fhir/rl68ad17", "OrganizationName": "Robert L Gise MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sk65md49", + "URL": "https://app.meldrx.com/api/fhir/sk65md49", "OrganizationName": "Sidney Kriger MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/me61ws34", + "URL": "https://app.meldrx.com/api/fhir/me61ws34", "OrganizationName": "Michigan Eyecare Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ne55uf11", + "URL": "https://app.meldrx.com/api/fhir/ne55uf11", "OrganizationName": "Northern Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/he01zs22", + "URL": "https://app.meldrx.com/api/fhir/he01zs22", "OrganizationName": "Heritage Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/dv56bs14", + "URL": "https://app.meldrx.com/api/fhir/dv56bs14", "OrganizationName": "Davison Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/vc90it43", + "URL": "https://app.meldrx.com/api/fhir/vc90it43", "OrganizationName": "Eye Contact Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/bf03pa23", + "URL": "https://app.meldrx.com/api/fhir/bf03pa23", "OrganizationName": "Barrington Family Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/co81tr45", + "URL": "https://app.meldrx.com/api/fhir/co81tr45", "OrganizationName": "Chelmsford Optometric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/lp83da44", + "URL": "https://app.meldrx.com/api/fhir/lp83da44", "OrganizationName": "Larry Pratt", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/se51cd90", + "URL": "https://app.meldrx.com/api/fhir/se51cd90", "OrganizationName": "Seashore Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/wv27lc58", + "URL": "https://app.meldrx.com/api/fhir/wv27lc58", "OrganizationName": "Wells Vision Laser Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ss26gf99", + "URL": "https://app.meldrx.com/api/fhir/ss26gf99", "OrganizationName": "Dr Shropshire \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/be00uk72", + "URL": "https://app.meldrx.com/api/fhir/be00uk72", "OrganizationName": "BisMan Eyecare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/vb06qa83", + "URL": "https://app.meldrx.com/api/fhir/vb06qa83", "OrganizationName": "Vidulich, Blase and Associates (Pearle Vision)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/me33xj87", + "URL": "https://app.meldrx.com/api/fhir/me33xj87", "OrganizationName": "Magnolia Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/pv47mg01", + "URL": "https://app.meldrx.com/api/fhir/pv47mg01", "OrganizationName": "Pearle Vision Maple Grove, MN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/we49bw76", + "URL": "https://app.meldrx.com/api/fhir/we49bw76", "OrganizationName": "Wadena Eye Clinic,Ltd", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/sg05pl67", + "URL": "https://app.meldrx.com/api/fhir/sg05pl67", "OrganizationName": "Scott A Gartner, OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/wa57tn90", + "URL": "https://app.meldrx.com/api/fhir/wa57tn90", "OrganizationName": "Walmart Athens, TN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/la71zk99", + "URL": "https://app.meldrx.com/api/fhir/la71zk99", "OrganizationName": "Lange Eyecare \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ar15kd84", + "URL": "https://app.meldrx.com/api/fhir/ar15kd84", "OrganizationName": "Aris Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/nc39op55", + "URL": "https://app.meldrx.com/api/fhir/nc39op55", "OrganizationName": "North Coast optical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ke29rv65", + "URL": "https://app.meldrx.com/api/fhir/ke29rv65", "OrganizationName": "Kesselman Eye Care Inc. dba Riviera Vision", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/mc80ag61", + "URL": "https://app.meldrx.com/api/fhir/mc80ag61", "OrganizationName": "The MindEye Connection", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/ec21ei41", + "URL": "https://app.meldrx.com/api/fhir/ec21ei41", "OrganizationName": "Emerald Coast Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/bm33sw01", + "URL": "https://app.meldrx.com/api/fhir/bm33sw01", "OrganizationName": "BatraVision Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/jf89ep47", + "URL": "https://app.meldrx.com/api/fhir/jf89ep47", "OrganizationName": "Eye Physicians Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/nereg_northeastregionalepilepsygroupnj", + "URL": "https://app.meldrx.com/api/fhir/nereg_northeastregionalepilepsygroupnj", "OrganizationName": "Northeast Regional Epilepsy Group NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/nereg_northeastregionalepilepsygroupny", + "URL": "https://app.meldrx.com/api/fhir/nereg_northeastregionalepilepsygroupny", "OrganizationName": "Northeast Regional Epilepsy Group NY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/nereg_midatlanticepilepsyandsleepcenter", + "URL": "https://app.meldrx.com/api/fhir/nereg_midatlanticepilepsyandsleepcenter", "OrganizationName": "Mid-Atlantic Epilepsy and Sleep Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fivos_southtexasvascularinstitute", + "URL": "https://app.meldrx.com/api/fhir/fivos_southtexasvascularinstitute", "OrganizationName": "South Texas Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/radnet_midatlantic", + "URL": "https://app.meldrx.com/api/fhir/radnet_midatlantic", "OrganizationName": "RadNet MidAtlantic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/radnet_northeast", + "URL": "https://app.meldrx.com/api/fhir/radnet_northeast", "OrganizationName": "RadNet Northeast", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/gr57ec91", + "URL": "https://app.meldrx.com/api/fhir/gr57ec91", "OrganizationName": "Galloway Regional Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/cc07th77", + "URL": "https://app.meldrx.com/api/fhir/cc07th77", "OrganizationName": "Campbell Cunningham Taylor and Haun", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/mo85we19", + "URL": "https://app.meldrx.com/api/fhir/mo85we19", "OrganizationName": "Mid Ohio Eye Physicians \u0026 Surgeons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/jb73pa47", + "URL": "https://app.meldrx.com/api/fhir/jb73pa47", "OrganizationName": "Janet A. Betchkal, M.D. PA - FL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/cc17hq83", + "URL": "https://app.meldrx.com/api/fhir/cc17hq83", "OrganizationName": "Cascade Eyecare Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/mm37uw04", + "URL": "https://app.meldrx.com/api/fhir/mm37uw04", "OrganizationName": "Meier \u0026 Moser Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/oc75pk61", + "URL": "https://app.meldrx.com/api/fhir/oc75pk61", "OrganizationName": "Ophthalmology Consultants of Houston, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/fg44bz01", + "URL": "https://app.meldrx.com/api/fhir/fg44bz01", "OrganizationName": "The Foot Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/jl71dw14", + "URL": "https://app.meldrx.com/api/fhir/jl71dw14", "OrganizationName": "Jeffrey D. Levine, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/rt56pa32", + "URL": "https://app.meldrx.com/api/fhir/rt56pa32", "OrganizationName": "Robert P. Tucker III, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/wf27fp93", + "URL": "https://app.meldrx.com/api/fhir/wf27fp93", "OrganizationName": "Wedgewood Family Physicians", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/gv82uq01", + "URL": "https://app.meldrx.com/api/fhir/gv82uq01", "OrganizationName": "Greeneville Eye Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6812", + "URL": "https://app.meldrx.com/api/fhir/paydc_6812", "OrganizationName": "Premier Physical Medicine PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/paydc_6849", + "URL": "https://app.meldrx.com/api/fhir/paydc_6849", "OrganizationName": "Premier Chiropractic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/nb49ea77", + "URL": "https://app.meldrx.com/api/fhir/nb49ea77", "OrganizationName": "North Bay Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_balouris_eye_center", + "URL": "https://app.meldrx.com/api/fhir/medflow_balouris_eye_center", "OrganizationName": "Balouris Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_western_maryland_eye_center", + "URL": "https://app.meldrx.com/api/fhir/medflow_western_maryland_eye_center", "OrganizationName": "Western Maryland Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_integ_health_systems", + "URL": "https://app.meldrx.com/api/fhir/medflow_integ_health_systems", "OrganizationName": "Integ Health Systems", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_greenwood_eye_clinic", + "URL": "https://app.meldrx.com/api/fhir/medflow_greenwood_eye_clinic", "OrganizationName": "Greenwood Eye Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_first_eye_associates", + "URL": "https://app.meldrx.com/api/fhir/medflow_first_eye_associates", "OrganizationName": "First Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_eye_care_chattanooga", + "URL": "https://app.meldrx.com/api/fhir/medflow_eye_care_chattanooga", "OrganizationName": "Eye Care Chattanooga", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_tallman_eye_associates", + "URL": "https://app.meldrx.com/api/fhir/medflow_tallman_eye_associates", "OrganizationName": "Tallman Eye Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/mplus_utahvalleyeye", + "URL": "https://app.meldrx.com/api/fhir/mplus_utahvalleyeye", "OrganizationName": "Utah Valley Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/mve_eyedoopticalinc", + "URL": "https://app.meldrx.com/api/fhir/mve_eyedoopticalinc", "OrganizationName": "Eye-do Optical, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_lyonseyecare", + "URL": "https://app.meldrx.com/api/fhir/imedicware_lyonseyecare", "OrganizationName": "Lyons Eye Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_perrysburgeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_perrysburgeye", "OrganizationName": "Perrysburg Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_tutelaeyecare", + "URL": "https://app.meldrx.com/api/fhir/imedicware_tutelaeyecare", "OrganizationName": "Tutela Eye Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_mountainvalleyeye", + "URL": "https://app.meldrx.com/api/fhir/imedicware_mountainvalleyeye", "OrganizationName": "Mountain Valley Eye", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/amritamedical_provider", + "URL": "https://app.meldrx.com/api/fhir/amritamedical_provider", "OrganizationName": "Amrita Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_hawaiieyeinstitute", + "URL": "https://app.meldrx.com/api/fhir/medflow_hawaiieyeinstitute", "OrganizationName": "Hawaii Eye Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_charlesretinainstitute", + "URL": "https://app.meldrx.com/api/fhir/medflow_charlesretinainstitute", "OrganizationName": "Charles Retina Institute PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/medflow_eyeassociatesofneedham", + "URL": "https://app.meldrx.com/api/fhir/medflow_eyeassociatesofneedham", "OrganizationName": "Eye Associates of Needham P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.meldrx.com/fhir/imedicware_kernersvilleeyesurgeons", + "URL": "https://app.meldrx.com/api/fhir/imedicware_kernersvilleeyesurgeons", "OrganizationName": "Kernersville Eye Surgeons", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/uc09804_arizonacenterforvasectomy", + "OrganizationName": "Arizona Center For Vasectomy - 34314", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://app.meldrx.com/api/fhir/senthiltest0105", + "OrganizationName": "senthiltest0105", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Drchrono_Inc_EndpointSources.json b/resources/prod_resources/Drchrono_Inc_EndpointSources.json index 529484d6f..9f85fec78 100644 --- a/resources/prod_resources/Drchrono_Inc_EndpointSources.json +++ b/resources/prod_resources/Drchrono_Inc_EndpointSources.json @@ -1061,6 +1061,60 @@ "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_494357/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_495043/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_494475/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_493061/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_494676/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_493969/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_495007/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_494822/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://drchrono-fhirpresentation.everhealthsoftware.com/fhir/drchrono/drchrono_493729/r4", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json b/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json index 513ebecbb..8a10648e0 100644 --- a/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json +++ b/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json @@ -2408,7 +2408,7 @@ }, { "URL": "https://epicproxy.et1057.epichosted.com/FHIRProxy/api/FHIR/DSTU2/", - "OrganizationName": "Molina Healthcare", + "OrganizationName": "Molina Care Connections", "NPIID": "", "OrganizationZipCode": "" }, @@ -4928,7 +4928,7 @@ }, { "URL": "https://epicproxy.et1057.epichosted.com/FHIRProxy/api/FHIR/R4/", - "OrganizationName": "Molina Healthcare", + "OrganizationName": "Molina Care Connections", "NPIID": "", "OrganizationZipCode": "" }, diff --git a/resources/prod_resources/Firely_USA_Inc_EndpointSources.json b/resources/prod_resources/Firely_USA_Inc_EndpointSources.json new file mode 100644 index 000000000..758ecb11b --- /dev/null +++ b/resources/prod_resources/Firely_USA_Inc_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://server.fire.ly/r4", + "OrganizationName": "Firely B.V.", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/First_Insight_Corporation_EndpointSources.json b/resources/prod_resources/First_Insight_Corporation_EndpointSources.json index b2187f0f0..7bbe380ec 100644 --- a/resources/prod_resources/First_Insight_Corporation_EndpointSources.json +++ b/resources/prod_resources/First_Insight_Corporation_EndpointSources.json @@ -150,12 +150,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://EndlessMountainEyeCare.ficintegrations.com/API/KWSev7/R4", - "OrganizationName": "Endless Mountains Eye Care, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://eyemdofalamedaca.ficintegrations.com:448/API/Wez8bJ/R4", "OrganizationName": "EyeMD of Alameda", @@ -330,12 +324,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://BrevardVisionCare.ficintegrations.com/API/CfTroT/R4", - "OrganizationName": "BREVARD VISION CARE", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://seymouroptometriccenterct.ficintegrations.com:444/API/NMmBzj/R4", "OrganizationName": "Seymour Optometric Center, LLC", @@ -1800,6 +1788,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.maximeyes.com/api/brookingsvision/R4", + "OrganizationName": "Brookings Vision Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.maximeyes.com/api/yanceyeyecenter/R4", "OrganizationName": "Ronald B. Yancey PC", @@ -2425,7 +2419,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/wec/R4", + "URL": "https://fhir.maximeyes.com/api/wec/R4", "OrganizationName": "Winchester Eye Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" @@ -2485,7 +2479,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/veo/R4", + "URL": "https://fhir.maximeyes.com/api/veo/R4", "OrganizationName": "VisualEyes Optometry", "NPIID": "", "OrganizationZipCode": "" @@ -2509,7 +2503,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/winterparkvisionspecialists/R4", + "URL": "https://fhir.maximeyes.com/api/winterparkvisionspecialists/R4", "OrganizationName": "James A. Podschun", "NPIID": "", "OrganizationZipCode": "" @@ -2557,7 +2551,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/proeye/R4", + "URL": "https://fhir.maximeyes.com/api/proeye/R4", "OrganizationName": "Mary C. Beaulieu, OD", "NPIID": "", "OrganizationZipCode": "" @@ -2671,7 +2665,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/universityeye/R4", + "URL": "https://fhir.maximeyes.com/api/universityeye/R4", "OrganizationName": "UNIVERSITY EYE ASSOCIATES, O.D., P.A.", "NPIID": "", "OrganizationZipCode": "" @@ -2701,7 +2695,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/bec/R4", + "URL": "https://fhir.maximeyes.com/api/bec/R4", "OrganizationName": "Brassell Eye Care", "NPIID": "", "OrganizationZipCode": "" @@ -2719,7 +2713,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/springfieldeyes/R4", + "URL": "https://fhir.maximeyes.com/api/springfieldeyes/R4", "OrganizationName": "Springfield Eye Specialists", "NPIID": "", "OrganizationZipCode": "" @@ -2815,7 +2809,7 @@ "OrganizationZipCode": "" }, { - "URL": "api/enhancedeyecare/R4", + "URL": "https://fhir.maximeyes.com/api/enhancedeyecare/R4", "OrganizationName": "Richard Centar, O.D., Ryan Imler,O.D.P.C.", "NPIID": "", "OrganizationZipCode": "" @@ -2915,6 +2909,84 @@ "OrganizationName": "Sunset Optometric Center, APC", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/mhurst/R4", + "OrganizationName": "Dr Mark C Hurst Optometrist LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/endlessmountains/R4", + "OrganizationName": "Endless Mountains Eye Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/carlson/R4", + "OrganizationName": "Carlson Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/smalltowneyecare/R4", + "OrganizationName": "Small Town Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/amadoreyecare/R4", + "OrganizationName": "Amador Eye Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/proeye/R4", + "OrganizationName": "Professional Eyecare, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "api/brevardvisioncare/R4", + "OrganizationName": "BREVARD VISION CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "api/nce/R4", + "OrganizationName": "Northcross Eye Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/hendersoneyectr/R4", + "OrganizationName": "Henderson Eye Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/drluu/R4", + "OrganizationName": "Dr. Luu Little Eyes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/eyestructure/R4", + "OrganizationName": "EYESTRUCTURE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/ronaneyeclinic/R4", + "OrganizationName": "Mission Valley Eye Center, Inc DBA Ronan Eye Clini", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.maximeyes.com/api/siteforsoreeyesoakland/R4", + "OrganizationName": "Site For Sore Eyes Oakland", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/MEDHOST_EndpointSources.json b/resources/prod_resources/MEDHOST_EndpointSources.json index 1db985c17..0057adcef 100644 --- a/resources/prod_resources/MEDHOST_EndpointSources.json +++ b/resources/prod_resources/MEDHOST_EndpointSources.json @@ -363,7 +363,7 @@ { "URL": "https://fhir.yourcareuniverse.net/tenant/fa0b0788-745b-4dc9-acbf-26a954662190", "OrganizationName": "Lake Granbury Medical Center", - "NPIID": "", + "NPIID": "1114998911", "OrganizationZipCode": "" }, { @@ -596,7 +596,7 @@ }, { "URL": "https://fhir.yourcareuniverse.net/tenant/e108d9e2-8802-451c-b874-d1f2187c552f", - "OrganizationName": "Northwest Health- Physicians\u0026#39; Speciality Hospital", + "OrganizationName": "Northwest Health- Physicians\u0026#39; Specialty Hospital", "NPIID": "1407215916", "OrganizationZipCode": "" }, diff --git a/resources/prod_resources/Medical_Information_Technology_Inc_MEDITECH_1_EndpointSources.json b/resources/prod_resources/Medical_Information_Technology_Inc_MEDITECH_1_EndpointSources.json index fdad56ee3..e7860b7a9 100644 --- a/resources/prod_resources/Medical_Information_Technology_Inc_MEDITECH_1_EndpointSources.json +++ b/resources/prod_resources/Medical_Information_Technology_Inc_MEDITECH_1_EndpointSources.json @@ -222,6 +222,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://binghamhealthcareapi.meditech.cloud:443/v2/argonaut/v1", + "OrganizationName": "Bingham Memorial Hosp MaaS Pod 005 05", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live01.blythedale.org:443/v2/argonaut/v1", "OrganizationName": "Blythedale Childrens Hosp Expanse", @@ -2166,6 +2172,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://seviercountymedicalapi.meditech.cloud:443/v2/argonaut/v1", + "OrganizationName": "Sevier County Medical Center MaaS Pod 007 11", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live01.shinepartners.ca:443/v2/argonaut/v1", "OrganizationName": "Shared Health Inform Network Exche - Exp(Hosted by Teknicor)", @@ -2610,6 +2622,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mtrestapis-explive01.wgh.org:443/v2/argonaut/v1", + "OrganizationName": "Warren General Hosp Expanse READY", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live.wgh.org:443/v2/argonaut/v1", "OrganizationName": "Warren General Hospital - C/S", @@ -2946,6 +2964,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://binghamhealthcareapi.meditech.cloud:443/v1/uscore/R4", + "OrganizationName": "Bingham Memorial Hosp MaaS Pod 005 05", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live01.blythedale.org:443/v1/uscore/R4", "OrganizationName": "Blythedale Childrens Hosp Expanse", @@ -4890,6 +4914,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://seviercountymedicalapi.meditech.cloud:443/v1/uscore/R4", + "OrganizationName": "Sevier County Medical Center MaaS Pod 007 11", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live01.shinepartners.ca:443/v1/uscore/R4", "OrganizationName": "Shared Health Inform Network Exche - Exp(Hosted by Teknicor)", @@ -5334,6 +5364,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://mtrestapis-explive01.wgh.org:443/v1/uscore/R4", + "OrganizationName": "Warren General Hosp Expanse READY", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://mtrestapis-live.wgh.org:443/v1/uscore/R4", "OrganizationName": "Warren General Hospital - C/S", diff --git a/resources/prod_resources/NextGen_Healthcare_EndpointSources.json b/resources/prod_resources/NextGen_Healthcare_EndpointSources.json index 540bd0761..49f031382 100644 --- a/resources/prod_resources/NextGen_Healthcare_EndpointSources.json +++ b/resources/prod_resources/NextGen_Healthcare_EndpointSources.json @@ -2,23709 +2,15 @@ "Endpoints": [ { "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Alabama", + "OrganizationName": "", "NPIID": "", - "OrganizationZipCode": "402432404" + "OrganizationZipCode": "" }, { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Delaware", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Georgia", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Indiana", - "NPIID": "", - "OrganizationZipCode": "436979614" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Kansas", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Kentucky", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Maryland", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Massachusetts", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360Care Of Michigan", - "NPIID": "", - "OrganizationZipCode": "436979360" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Mississippi", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Missouri", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Nebraska", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of New York", - "NPIID": "", - "OrganizationZipCode": "436979453" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of North Carolina", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Ohio", - "NPIID": "", - "OrganizationZipCode": "486979478" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Pennsylvania", - "NPIID": "", - "OrganizationZipCode": "436979455" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of South Carolina", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Tennessee", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of Virginia", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "360care Of West Virginia", - "NPIID": "", - "OrganizationZipCode": "402432404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "7 Springs Orthopedics PC", - "NPIID": "", - "OrganizationZipCode": "370273270" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "9th Street Clinic", - "NPIID": "", - "OrganizationZipCode": "60936" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "A New Leaf Inc", - "NPIID": "", - "OrganizationZipCode": "852038033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "A Step Ahead Foot And Ankle Center", - "NPIID": "", - "OrganizationZipCode": "80526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AAA Comprehensive Healthcare Inc", - "NPIID": "", - "OrganizationZipCode": "916052803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AAA Comprehensive Healthcare Inc", - "NPIID": "", - "OrganizationZipCode": "916052803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AAC Queens", - "NPIID": "", - "OrganizationZipCode": "113661531" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AAC Suffolk", - "NPIID": "", - "OrganizationZipCode": "117884734" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AACI Health Center", - "NPIID": "", - "OrganizationZipCode": "951282680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AACI Mental Health", - "NPIID": "", - "OrganizationZipCode": "951282680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ABC Urgent Care", - "NPIID": "", - "OrganizationZipCode": "925444832" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Abdur Rauf MD", - "NPIID": "", - "OrganizationZipCode": "455041842" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Abid Hussain MD PC", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Abilene Bone And Joint", - "NPIID": "", - "OrganizationZipCode": "796013033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Abilene Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Abrams Eye Institute", - "NPIID": "", - "OrganizationZipCode": "891482405" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Abrams EyeCare Associates", - "NPIID": "", - "OrganizationZipCode": "460321679" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Access Care Physicians Of Union", - "NPIID": "", - "OrganizationZipCode": "070837980" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Access Care Physicians of Westchester", - "NPIID": "", - "OrganizationZipCode": "106013602" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Access Center Of Indiana", - "NPIID": "", - "OrganizationZipCode": "60302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Access Esperanza Clinics", - "NPIID": "", - "OrganizationZipCode": "785015737" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Access Medical Center", - "NPIID": "", - "OrganizationZipCode": "534039486" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Access Medical Center OK", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AccessHealth", - "NPIID": "", - "OrganizationZipCode": "77469" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Accordia Health", - "NPIID": "", - "OrganizationZipCode": "365092515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Accurate Eye Care LLC", - "NPIID": "", - "OrganizationZipCode": "703602461" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Accuvision Eye MD Caregroup PC", - "NPIID": "", - "OrganizationZipCode": "190032316" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ACDP", - "NPIID": "", - "OrganizationZipCode": "100321543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Achieve Concierge", - "NPIID": "", - "OrganizationZipCode": "921601422" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Action Orthopedics And Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "838142783" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Activate Healthcare", - "NPIID": "", - "OrganizationZipCode": "46260" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Adagio Health Directly Administered Site", - "NPIID": "", - "OrganizationZipCode": "152223812" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Adams County Health Center Inc", - "NPIID": "", - "OrganizationZipCode": "836120428" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Adelante Healthcare", - "NPIID": "", - "OrganizationZipCode": "850122808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Adult And Child Mental Health", - "NPIID": "", - "OrganizationZipCode": "462042193" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Adult And Pediatric Urology", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Access Medical Care PLLC", - "NPIID": "", - "OrganizationZipCode": "104612315" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Addiction Services LTD", - "NPIID": "", - "OrganizationZipCode": "43076" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Ambulatory Anesthesiologist", - "NPIID": "", - "OrganizationZipCode": "071925275" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Anesthesia Associates LLC", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Care Podiatry LLC", - "NPIID": "", - "OrganizationZipCode": "190202815" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Dermasurgery Associates", - "NPIID": "", - "OrganizationZipCode": "752512302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Dermatology Care", - "NPIID": "", - "OrganizationZipCode": "551273674" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Endoscopy \u0026 Surgical Center LLC", - "NPIID": "", - "OrganizationZipCode": "077241864" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Endoscopy Center LLC", - "NPIID": "", - "OrganizationZipCode": "631417146" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Eye Care Of South Florida LLC", - "NPIID": "", - "OrganizationZipCode": "33442" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Eye Surgeon LLC", - "NPIID": "", - "OrganizationZipCode": "334281703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "95926" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "668019804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Family Practice PLLC", - "NPIID": "", - "OrganizationZipCode": "79106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Gastroenterology And Nutrition", - "NPIID": "", - "OrganizationZipCode": "088224600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Heart Vascular Ins Of Hunterdon", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Imaging At Bridgewater", - "NPIID": "", - "OrganizationZipCode": "08807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Obstetrics And Gynecology LLC", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Pain Diagnostic \u0026 SolutionS Inc", - "NPIID": "", - "OrganizationZipCode": "956614542" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Pain Management", - "NPIID": "", - "OrganizationZipCode": "532212059" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Pain Management Specialists", - "NPIID": "", - "OrganizationZipCode": "339195119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Pulmonary Critical Care", - "NPIID": "", - "OrganizationZipCode": "22311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Rheumatology PC", - "NPIID": "", - "OrganizationZipCode": "48910" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Specialty Care P.C.", - "NPIID": "", - "OrganizationZipCode": "068104151" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Spine Care", - "NPIID": "", - "OrganizationZipCode": "752515056" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advanced Vascular And Vein Associates", - "NPIID": "", - "OrganizationZipCode": "392322113" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Advantage Plus Medical Center Inc.", - "NPIID": "", - "OrganizationZipCode": "926146523" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Adventist Health Mendocino Coast", - "NPIID": "", - "OrganizationZipCode": "954375403" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Affiliated Endoscopy Centers LLC", - "NPIID": "", - "OrganizationZipCode": "554140883" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Affiliated Endoscopy Services Of Clifton", - "NPIID": "", - "OrganizationZipCode": "070132724" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Affiliates In Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "08844" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Affinia Healthcare", - "NPIID": "", - "OrganizationZipCode": "631880551" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AICA Clinics Macon", - "NPIID": "", - "OrganizationZipCode": "300670076" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AICA Orthopedics P.C.", - "NPIID": "", - "OrganizationZipCode": "30067" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aijaz Hashmi MD Inc", - "NPIID": "", - "OrganizationZipCode": "922625743" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Airport Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "900453119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Akron OH GI - Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ALA E IMAM MD", - "NPIID": "", - "OrganizationZipCode": "483462090" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alamo City Eye Physicians", - "NPIID": "", - "OrganizationZipCode": "78233" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alamo Ophthalmology", - "NPIID": "", - "OrganizationZipCode": "78215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alan Nili DO Inc.", - "NPIID": "", - "OrganizationZipCode": "926183177" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alan W Lyne MD", - "NPIID": "", - "OrganizationZipCode": "930602804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Albany ENT and Allergy Services", - "NPIID": "", - "OrganizationZipCode": "122051407" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Albany Ketamine Medical Infusions", - "NPIID": "", - "OrganizationZipCode": "122031617" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Albert Manlapit MD", - "NPIID": "", - "OrganizationZipCode": "486049284" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Albuquerque Center for Rheumatology", - "NPIID": "", - "OrganizationZipCode": "871021710" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alcona Health Center", - "NPIID": "", - "OrganizationZipCode": "487409607" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alecsandra Roberts MD Inc", - "NPIID": "", - "OrganizationZipCode": "90266" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alex Denes MD", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alex Deyan MD", - "NPIID": "", - "OrganizationZipCode": "92660" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alexander L Cheng MD", - "NPIID": "", - "OrganizationZipCode": "906403622" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alexandra Chrysanthis MD Inc", - "NPIID": "", - "OrganizationZipCode": "907202442" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alfred C. Burris M.D. P.C.", - "NPIID": "", - "OrganizationZipCode": "200324689" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Algos Inc", - "NPIID": "", - "OrganizationZipCode": "900740475" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Algos Pasadena Dermatology Medical Group", - "NPIID": "", - "OrganizationZipCode": "900515802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alicia P Cuento MD", - "NPIID": "", - "OrganizationZipCode": "910101780" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alicia Surgery Center", - "NPIID": "", - "OrganizationZipCode": "92653" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aliso Viejo Family Medicine", - "NPIID": "", - "OrganizationZipCode": "926534654" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "All Care Health Center", - "NPIID": "", - "OrganizationZipCode": "515016441" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "All Ear Doctors A Professional Medical C", - "NPIID": "", - "OrganizationZipCode": "926476809" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "All For Health Health For All", - "NPIID": "", - "OrganizationZipCode": "912051110" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "All Saints Family Care Center", - "NPIID": "", - "OrganizationZipCode": "53209" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "All Your Family Needs Primary Care", - "NPIID": "", - "OrganizationZipCode": "088013512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allegheny Clinic Pediatrics", - "NPIID": "", - "OrganizationZipCode": "150908344" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allen D Brandon PHD", - "NPIID": "", - "OrganizationZipCode": "805253155" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allen L. Fein Family Medicine", - "NPIID": "", - "OrganizationZipCode": "119684881" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergy \u0026 Asthma Specialists PC", - "NPIID": "", - "OrganizationZipCode": "194222332" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergy And Asthma", - "NPIID": "", - "OrganizationZipCode": "45011" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergy and Immunology", - "NPIID": "", - "OrganizationZipCode": "333290250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergy Associates Of La Crosse LTD", - "NPIID": "", - "OrganizationZipCode": "546506758" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergy Asthma And Sinus Center Of NJ", - "NPIID": "", - "OrganizationZipCode": "088444257" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergy Asthma \u0026 Sinus Care Centers", - "NPIID": "", - "OrganizationZipCode": "631271665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergycare Of Chattanooga PLLC", - "NPIID": "", - "OrganizationZipCode": "54601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergycare Of Cool Springs PLLC", - "NPIID": "", - "OrganizationZipCode": "54601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allergycare Of Fairfield County LLC", - "NPIID": "", - "OrganizationZipCode": "54601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AllerVie Health Alabama", - "NPIID": "", - "OrganizationZipCode": "352096802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AllerVie Health Alabama", - "NPIID": "", - "OrganizationZipCode": "352096802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AllerVie Health Virginia", - "NPIID": "", - "OrganizationZipCode": "232944375" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alliance Family Health Center", - "NPIID": "", - "OrganizationZipCode": "44601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allied NDS", - "NPIID": "", - "OrganizationZipCode": "763015003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allina/TCSC", - "NPIID": "", - "OrganizationZipCode": "554809125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Allina/TCSC", - "NPIID": "", - "OrganizationZipCode": "554809125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ALM Hopewell Center", - "NPIID": "", - "OrganizationZipCode": "63106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alonso Medical Group", - "NPIID": "", - "OrganizationZipCode": "914053601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Alta California Medical Group", - "NPIID": "", - "OrganizationZipCode": "93065" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Altura Centers For Health", - "NPIID": "", - "OrganizationZipCode": "932742233" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amalia Armenta MD APC", - "NPIID": "", - "OrganizationZipCode": "912081219" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amalia Armenta MD APC", - "NPIID": "", - "OrganizationZipCode": "912081219" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amarillo Area Healthcare Specialists", - "NPIID": "", - "OrganizationZipCode": "79159" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amarillo Bone \u0026 Joint Clinic LLP", - "NPIID": "", - "OrganizationZipCode": "791593057" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amarillo Cataract And Eye Surg Ctr", - "NPIID": "", - "OrganizationZipCode": "791061807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amarillo Pain Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "791062108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amarillo Pediatric Clinic PLLC", - "NPIID": "", - "OrganizationZipCode": "791062105" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ambulatory Behavioral Health", - "NPIID": "", - "OrganizationZipCode": "027206009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ambulatory Care Specialists Of Cranberry", - "NPIID": "", - "OrganizationZipCode": "160664148" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ambulatory Surgery Centers", - "NPIID": "", - "OrganizationZipCode": "760181119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ambulatory Surgery Department", - "NPIID": "", - "OrganizationZipCode": "47304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Of Atlanta", - "NPIID": "", - "OrganizationZipCode": "300303406" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Of Baltimore", - "NPIID": "", - "OrganizationZipCode": "212366901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Of Cary Nc", - "NPIID": "", - "OrganizationZipCode": "275135598" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Of Florida LLC", - "NPIID": "", - "OrganizationZipCode": "333136072" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care of Jacksonville LLC", - "NPIID": "", - "OrganizationZipCode": "332184604" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Of Miami", - "NPIID": "", - "OrganizationZipCode": "331562703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Of Richmond LLC", - "NPIID": "", - "OrganizationZipCode": "232302492" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Physicians Bk", - "NPIID": "", - "OrganizationZipCode": "112156065" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Physicians BL", - "NPIID": "", - "OrganizationZipCode": "117103657" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Physicians Bx", - "NPIID": "", - "OrganizationZipCode": "104610367" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Access Care Physicians Ny", - "NPIID": "", - "OrganizationZipCode": "101286900" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Indian Health And Services", - "NPIID": "", - "OrganizationZipCode": "931102829" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Pain And Wellness", - "NPIID": "", - "OrganizationZipCode": "750134926" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "American Vision Partners", - "NPIID": "", - "OrganizationZipCode": "850164701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMG", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMITA Heart \u0026 Vascular", - "NPIID": "", - "OrganizationZipCode": "60007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amjad A Rass MD Inc", - "NPIID": "", - "OrganizationZipCode": "437256607" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMM Healthcare", - "NPIID": "", - "OrganizationZipCode": "27513" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMOREM", - "NPIID": "", - "OrganizationZipCode": "28645" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Abilene Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Altamonte Springs FL Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Arcadia Anesthesia LP", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Chattanooga Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Cincinnati Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Citrus Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Columbia Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Durham Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Fresno CA GI Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Greensboro Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Greenville Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Hermitage Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Indianapolis Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Lewes Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Marin Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG MDSine Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Melbourne Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "329013179" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg New Orleans Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amsurg New Port Richey Anesthesiology", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg North Valley Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Oak Lawn IL Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Oakland Anesthesia LP", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Port Orange Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Rockledge Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amsurg Salt Lake City Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Amsurg San Luis Obispo Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Santa Fe Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg South Bay Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg St George Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Stamford Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AMSURG Tampa Bay Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Toledo Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Toms River Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Westminster Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AmSurg Willoughby Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anaheim Family Medical", - "NPIID": "", - "OrganizationZipCode": "928011825" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anatomic Pathology Lab", - "NPIID": "", - "OrganizationZipCode": "462801099" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ANAYS SANTANA IZQUIERDO MD PA", - "NPIID": "", - "OrganizationZipCode": "331445129" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ancillary Dept", - "NPIID": "", - "OrganizationZipCode": "432317665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Andersen Eye Associates PLC", - "NPIID": "", - "OrganizationZipCode": "48603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Express Care Clinic", - "NPIID": "", - "OrganizationZipCode": "393014111" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Express Care Clinic", - "NPIID": "", - "OrganizationZipCode": "393014111" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Infectious Disease Center", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Infectious Disease Center", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Physician Alliance", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Physician Alliance", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Professional Services", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Professional Services", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Regional Medical Center - South", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Regional Medical Center - South", - "NPIID": "", - "OrganizationZipCode": "393014040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anderson Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "731141431" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Andrea Roberson DO Inc", - "NPIID": "", - "OrganizationZipCode": "926915327" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Andrew Liao MD", - "NPIID": "", - "OrganizationZipCode": "910071531" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Andrew R Nolan MD LLC", - "NPIID": "", - "OrganizationZipCode": "33062" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Andrew R Weymer MD A Professional Corp", - "NPIID": "", - "OrganizationZipCode": "930307645" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia", - "NPIID": "", - "OrganizationZipCode": "19355" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia Associates Of Bryan LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia Associates Of Columbia TN", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia Associates Of Joplin LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia Associates Of Ocala LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia Associates Of OK PLLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia Professional Services Inc", - "NPIID": "", - "OrganizationZipCode": "452636653" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesia Service Gas Gas LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anesthesiology Affiliates LLC", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aneta Stirling MD", - "NPIID": "", - "OrganizationZipCode": "922703945" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Angela W Liao MD", - "NPIID": "", - "OrganizationZipCode": "910071531" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anita C Jackson MD Inc", - "NPIID": "", - "OrganizationZipCode": "92592" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Annandale Family Practice", - "NPIID": "", - "OrganizationZipCode": "088333262" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anne Arundel Orthopedic Surgeons", - "NPIID": "", - "OrganizationZipCode": "214013088" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anthony Branz MD", - "NPIID": "", - "OrganizationZipCode": "838490707" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anthony San Diego MD", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Antietam Oncology And Hematology Group", - "NPIID": "", - "OrganizationZipCode": "217405940" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Anwar Gerges MD PLLC", - "NPIID": "", - "OrganizationZipCode": "782583477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AOC Surgery Center Inc", - "NPIID": "", - "OrganizationZipCode": "722056203" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "A-One Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "917483693" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Apex Cardiology", - "NPIID": "", - "OrganizationZipCode": "383013930" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Apex Healthcare Medical Center - PT", - "NPIID": "", - "OrganizationZipCode": "925444754" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Apex Healthcare Medical Cntr - Oncology", - "NPIID": "", - "OrganizationZipCode": "925433814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Apex Hospitalist Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "925433083" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Apple Medical Group", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Apple Medical Group- Haun", - "NPIID": "", - "OrganizationZipCode": "925866547" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AR Neurosurgery Brain \u0026 Spine Clinic", - "NPIID": "", - "OrganizationZipCode": "705053985" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aran Eye Associates", - "NPIID": "", - "OrganizationZipCode": "331342616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arcadia Primary Care Physicians", - "NPIID": "", - "OrganizationZipCode": "910077925" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arch Health Partners", - "NPIID": "", - "OrganizationZipCode": "92064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Brooks Primary Care", - "NPIID": "", - "OrganizationZipCode": "316431407" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Center For Wound Management", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Gastroenterology Group", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Integrative Medicine", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Nephrology Group", - "NPIID": "", - "OrganizationZipCode": "317926616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Neurology Associates", - "NPIID": "", - "OrganizationZipCode": "317926679" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Neurosurgery Services", - "NPIID": "", - "OrganizationZipCode": "317926107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Orthopedic Group", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Pelham Primary Care", - "NPIID": "", - "OrganizationZipCode": "31779" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Phy Med \u0026 Rehab Of S. GA", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Primary Care Clinic", - "NPIID": "", - "OrganizationZipCode": "317924840" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Pulmonary And Critical Care Svc", - "NPIID": "", - "OrganizationZipCode": "317924875" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Archbold Specialty Clinic", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aria Community Health Center", - "NPIID": "", - "OrganizationZipCode": "93245" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aria Community Health Center KC", - "NPIID": "", - "OrganizationZipCode": "93239" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aria Community Health Center Stratford", - "NPIID": "", - "OrganizationZipCode": "93266" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Arthritis And Rheumatology", - "NPIID": "", - "OrganizationZipCode": "850329385" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Community Surgeons PC", - "NPIID": "", - "OrganizationZipCode": "857323627" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Digestive Institute LLC", - "NPIID": "", - "OrganizationZipCode": "85741" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "850062937" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Endoscopy Center Sedation PLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Gastroenterology Ltd", - "NPIID": "", - "OrganizationZipCode": "85741" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Institute Of Eye Surgery LLC", - "NPIID": "", - "OrganizationZipCode": "850164701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Ophthalmic Outpatient Surgery", - "NPIID": "", - "OrganizationZipCode": "850122383" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Pediatric Cardiology Consultants", - "NPIID": "", - "OrganizationZipCode": "85006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Pediatric Cardiology Consultants", - "NPIID": "", - "OrganizationZipCode": "85006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Priority Care", - "NPIID": "", - "OrganizationZipCode": "852262559" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizona Priority Care", - "NPIID": "", - "OrganizationZipCode": "852262559" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arizonas Children Association", - "NPIID": "", - "OrganizationZipCode": "857143414" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arkansas Otolaryngology Center", - "NPIID": "", - "OrganizationZipCode": "722056203" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arkansas Valley Surgery Center", - "NPIID": "", - "OrganizationZipCode": "812124900" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arklamiss Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "71201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arrowhead Pediatric Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis \u0026 Osteoporosis Consultants", - "NPIID": "", - "OrganizationZipCode": "282071198" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis \u0026 Rheumatic Diseases PC", - "NPIID": "", - "OrganizationZipCode": "231856337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis \u0026 Rheumatology Associates PC", - "NPIID": "", - "OrganizationZipCode": "183013012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis \u0026 Sports Orthopaedics \u0026 PT", - "NPIID": "", - "OrganizationZipCode": "201650501" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Osteo Clinic Brazos Valley", - "NPIID": "", - "OrganizationZipCode": "778454064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Osteoporosis Associates", - "NPIID": "", - "OrganizationZipCode": "077288307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Osteoporosis Center", - "NPIID": "", - "OrganizationZipCode": "496863042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Osteoporosis Center LLC", - "NPIID": "", - "OrganizationZipCode": "199733664" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Rheum Assoc Of Palm Beach", - "NPIID": "", - "OrganizationZipCode": "33437" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Rheum Clinics of KS", - "NPIID": "", - "OrganizationZipCode": "672063405" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Rheumatic Disease Spec", - "NPIID": "", - "OrganizationZipCode": "331801264" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Rheumatism Associates", - "NPIID": "", - "OrganizationZipCode": "337563912" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Rheumatism Associates PC", - "NPIID": "", - "OrganizationZipCode": "209021990" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis and Rheumatology Consultants", - "NPIID": "", - "OrganizationZipCode": "55435" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis And Rheumatology Of GA PC", - "NPIID": "", - "OrganizationZipCode": "303421623" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Assoc Of Kingsport PLLC", - "NPIID": "", - "OrganizationZipCode": "376607390" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Associates Of South Florida", - "NPIID": "", - "OrganizationZipCode": "334846595" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "373437908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Associates Inc.", - "NPIID": "", - "OrganizationZipCode": "019601628" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Care And Research Center", - "NPIID": "", - "OrganizationZipCode": "92064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Care Center Oklahoma PLLC", - "NPIID": "", - "OrganizationZipCode": "734012560" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Care Specialists of MD", - "NPIID": "", - "OrganizationZipCode": "210463240" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Center Of Connecticut", - "NPIID": "", - "OrganizationZipCode": "067083104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Center Of Lexington P.S.C.", - "NPIID": "", - "OrganizationZipCode": "405042930" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Center Of North Georgia", - "NPIID": "", - "OrganizationZipCode": "305012418" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Consultants North County APC", - "NPIID": "", - "OrganizationZipCode": "920836030" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Consultants Of EastTennesee", - "NPIID": "", - "OrganizationZipCode": "377725668" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Health Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "132141845" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Management LLC.", - "NPIID": "", - "OrganizationZipCode": "07058" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Northwest PLLC", - "NPIID": "", - "OrganizationZipCode": "992042313" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Treatment Center", - "NPIID": "", - "OrganizationZipCode": "905054759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthritis Autoimmune And Allergy LLC", - "NPIID": "", - "OrganizationZipCode": "321175536" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthur An MD", - "NPIID": "", - "OrganizationZipCode": "910067401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthur Center Community Health", - "NPIID": "", - "OrganizationZipCode": "652653811" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arthur M Morris", - "NPIID": "", - "OrganizationZipCode": "60302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Health Group Inc AACGA", - "NPIID": "", - "OrganizationZipCode": "309012771" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Health Group Inc AACGA", - "NPIID": "", - "OrganizationZipCode": "309012771" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Health Group Inc AACGA", - "NPIID": "", - "OrganizationZipCode": "309012771" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Healthcare", - "NPIID": "", - "OrganizationZipCode": "29486" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Healthcare Group Inc. PRAAL", - "NPIID": "", - "OrganizationZipCode": "368325906" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Healthcare Group Inc. PRAAL", - "NPIID": "", - "OrganizationZipCode": "368325906" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Healthcare Group Inc. PRAAL", - "NPIID": "", - "OrganizationZipCode": "368325906" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Articularis Healthcare SCR", - "NPIID": "", - "OrganizationZipCode": "282776806" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arturo Quintanilla MD FAAP", - "NPIID": "", - "OrganizationZipCode": "922701766" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Arturo Velazquez Jr MD", - "NPIID": "", - "OrganizationZipCode": "917444014" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Asad Bakir", - "NPIID": "", - "OrganizationZipCode": "60305" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ASC Payer Default Practice", - "NPIID": "", - "OrganizationZipCode": "029062853" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ascendant Orthopedic Alliance LLC", - "NPIID": "", - "OrganizationZipCode": "46514" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ascension Borgess Allegan", - "NPIID": "", - "OrganizationZipCode": "49010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ascension Borgess Allegan Outpatient", - "NPIID": "", - "OrganizationZipCode": "490101524" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ascension Borgess Psychological Medicine", - "NPIID": "", - "OrganizationZipCode": "490101595" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Asclepion Family Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "911062401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Asclepion Family Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "911062401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Asheville Pain Relief Center", - "NPIID": "", - "OrganizationZipCode": "452638926" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ashley Ridge Medicine LLC", - "NPIID": "", - "OrganizationZipCode": "711355313" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Asian Human Services Family Health Ctr", - "NPIID": "", - "OrganizationZipCode": "606594100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Asian Pacific Health Care Venture Inc", - "NPIID": "", - "OrganizationZipCode": "900292256" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aspen Family Care PLLC", - "NPIID": "", - "OrganizationZipCode": "801267466" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aspen Sleep Centers", - "NPIID": "", - "OrganizationZipCode": "992162280" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aspen Speech Therapy", - "NPIID": "", - "OrganizationZipCode": "80525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aspire Allergy \u0026 Sinus", - "NPIID": "", - "OrganizationZipCode": "787314280" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Assessment Center", - "NPIID": "", - "OrganizationZipCode": "925914679" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associated Endoscopy", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associated Eye Care", - "NPIID": "", - "OrganizationZipCode": "550827512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associated Eye Care ASC", - "NPIID": "", - "OrganizationZipCode": "550827512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associated Eye Care Optical", - "NPIID": "", - "OrganizationZipCode": "550827512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates Anesthesia Services LLC", - "NPIID": "", - "OrganizationZipCode": "151222476" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates For Womens Medicine", - "NPIID": "", - "OrganizationZipCode": "132121661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates In Central Ohio Ob Gyn Inc", - "NPIID": "", - "OrganizationZipCode": "432140464" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates In Ophthalmology Ltd", - "NPIID": "", - "OrganizationZipCode": "152644214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates In Womens Health PA", - "NPIID": "", - "OrganizationZipCode": "672011522" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates Of Medicine", - "NPIID": "", - "OrganizationZipCode": "740744516" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates Surgery Centers", - "NPIID": "", - "OrganizationZipCode": "152644220" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Associates-Dermatology Cosmetic Surgery", - "NPIID": "", - "OrganizationZipCode": "076701741" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Assure OB", - "NPIID": "", - "OrganizationZipCode": "66061" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atascosa Health Center Inc.", - "NPIID": "", - "OrganizationZipCode": "780644033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ATC Of The Low Country", - "NPIID": "", - "OrganizationZipCode": "299106072" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athena Womens Health", - "NPIID": "", - "OrganizationZipCode": "980278969" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athens Retina Center", - "NPIID": "", - "OrganizationZipCode": "306071208" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico ARC ILINOH", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Arizona", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Excel Nebraska", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Iowa", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico LTD", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Michigan", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Missouri", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Northeast", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico South Central", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Southeast", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Texas", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Athletico Wisconsin", - "NPIID": "", - "OrganizationZipCode": "605595548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlanta ASC", - "NPIID": "", - "OrganizationZipCode": "300303406" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlanta Maternal-Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "30047" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlanta Maternal-Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "30047" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlantic Center For Aesth And Recon Surg", - "NPIID": "", - "OrganizationZipCode": "333013985" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlantic Center For Aesth And Recon Surg", - "NPIID": "", - "OrganizationZipCode": "333013985" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlantic Coast Rheumatology P C", - "NPIID": "", - "OrganizationZipCode": "087556429" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlantic Pulmonary Associates PA", - "NPIID": "", - "OrganizationZipCode": "279093465" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlantic Skin \u0026 Cosmetic Surgery Group", - "NPIID": "", - "OrganizationZipCode": "198104812" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atlas Surgery Center Of Buckhead Inc", - "NPIID": "", - "OrganizationZipCode": "30067" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Atrium OB GYN INC", - "NPIID": "", - "OrganizationZipCode": "447182531" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Auburn Federal Way Surgeons", - "NPIID": "", - "OrganizationZipCode": "980373202" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Audiology", - "NPIID": "", - "OrganizationZipCode": "333282709" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aurora Eye Clinic Ltd", - "NPIID": "", - "OrganizationZipCode": "605061464" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aurora OBH", - "NPIID": "", - "OrganizationZipCode": "800125411" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Aurora OBH", - "NPIID": "", - "OrganizationZipCode": "800125411" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Austin Access Care ASC", - "NPIID": "", - "OrganizationZipCode": "787577034" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Austin J Ma MD A Professional Corp", - "NPIID": "", - "OrganizationZipCode": "900332480" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Austin J Ma MD", - "NPIID": "", - "OrganizationZipCode": "935342839" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Austin J Ma MD", - "NPIID": "", - "OrganizationZipCode": "935342839" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Austin Vascular Care", - "NPIID": "", - "OrganizationZipCode": "787577034" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Austins First Steps", - "NPIID": "", - "OrganizationZipCode": "78705" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Austins First Steps", - "NPIID": "", - "OrganizationZipCode": "78705" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Avenal Community Health Center", - "NPIID": "", - "OrganizationZipCode": "932041850" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Avista Womens Care", - "NPIID": "", - "OrganizationZipCode": "800279586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Avon", - "NPIID": "", - "OrganizationZipCode": "461237960" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Axis Medical Group", - "NPIID": "", - "OrganizationZipCode": "900331815" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AZPCP Case Management", - "NPIID": "", - "OrganizationZipCode": "852262559" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "AZPCP Case Management", - "NPIID": "", - "OrganizationZipCode": "852262559" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Babak Shabatian MD", - "NPIID": "", - "OrganizationZipCode": "905054756" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baker Ambulatory Surgery Center", - "NPIID": "", - "OrganizationZipCode": "720324436" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baker Eye Institute", - "NPIID": "", - "OrganizationZipCode": "720324436" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bakersfield Family Medical Center", - "NPIID": "", - "OrganizationZipCode": "935397002" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baldwin Family Health Care", - "NPIID": "", - "OrganizationZipCode": "49304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baltimore ASC", - "NPIID": "", - "OrganizationZipCode": "211175444" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baltimore Medical System Inc", - "NPIID": "", - "OrganizationZipCode": "21213" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baltimore Vascular Care", - "NPIID": "", - "OrganizationZipCode": "211175444" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baptist After Hours Pediatric Clinic", - "NPIID": "", - "OrganizationZipCode": "39232" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baptist GI Specialists Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baptist Health Medical Group", - "NPIID": "", - "OrganizationZipCode": "406013348" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Barbara Lebron MD", - "NPIID": "", - "OrganizationZipCode": "905051930" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Barnet Dulaney Surgery Centers", - "NPIID": "", - "OrganizationZipCode": "850164701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Barnett Neurosurgery PC", - "NPIID": "", - "OrganizationZipCode": "300054626" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BARRY L. GELLISOD", - "NPIID": "", - "OrganizationZipCode": "16502" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bart Barrett MD", - "NPIID": "", - "OrganizationZipCode": "926598661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BASICS", - "NPIID": "", - "OrganizationZipCode": "104577293" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bastian Voice Institute", - "NPIID": "", - "OrganizationZipCode": "605155500" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baton Rouge ASC", - "NPIID": "", - "OrganizationZipCode": "708066515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Baton Rouge Vascular", - "NPIID": "", - "OrganizationZipCode": "708066515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bay Area Family Physicians P.C.", - "NPIID": "", - "OrganizationZipCode": "480474432" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bay Area Vascular", - "NPIID": "", - "OrganizationZipCode": "770175103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bay Area Vascular ASC", - "NPIID": "", - "OrganizationZipCode": "770175103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bay Eye Care Center", - "NPIID": "", - "OrganizationZipCode": "487086961" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bay Microsurgical Unit INC", - "NPIID": "", - "OrganizationZipCode": "294422900" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bayou Imaging And Interv LLC", - "NPIID": "", - "OrganizationZipCode": "711355313" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bayview Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BBP Report", - "NPIID": "", - "OrganizationZipCode": "39202" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BCHC Family Practice", - "NPIID": "", - "OrganizationZipCode": "506443155" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beach Family Doctors", - "NPIID": "", - "OrganizationZipCode": "926595775" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beach OB \u0026 Gyn Medical Group", - "NPIID": "", - "OrganizationZipCode": "926482996" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beach Physicians Medical Group", - "NPIID": "", - "OrganizationZipCode": "926476800" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beacon Hand Surgical Center", - "NPIID": "", - "OrganizationZipCode": "452412365" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beacon Orthopaedics Surgery Centers LLC", - "NPIID": "", - "OrganizationZipCode": "452412365" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BEAT AIDS Coalition Trust", - "NPIID": "", - "OrganizationZipCode": "782124721" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beech Arces Parenting Center", - "NPIID": "", - "OrganizationZipCode": "452302907" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Behavioral Health", - "NPIID": "", - "OrganizationZipCode": "217014593" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Behavioral Wellness Center", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Behzad Ourmazdi MD Inc.", - "NPIID": "", - "OrganizationZipCode": "930125284" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bellaflor V Trompeta MD A Medical Corp", - "NPIID": "", - "OrganizationZipCode": "913254127" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bellevue Ear Nose And Throat", - "NPIID": "", - "OrganizationZipCode": "980044627" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beloved Community Family Wellness Center", - "NPIID": "", - "OrganizationZipCode": "604722002" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Benefis Hospital Physician Services", - "NPIID": "", - "OrganizationZipCode": "594044304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bergen Kidney Center", - "NPIID": "", - "OrganizationZipCode": "076316300" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Berkeley Cardiovascular Medical", - "NPIID": "", - "OrganizationZipCode": "946093122" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bernardine A Celoni MD", - "NPIID": "", - "OrganizationZipCode": "910063226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BERRY MILNER AND UHR LLP", - "NPIID": "", - "OrganizationZipCode": "752461806" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beth C McDougall M.D.", - "NPIID": "", - "OrganizationZipCode": "94941" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bethel Family Clinic", - "NPIID": "", - "OrganizationZipCode": "995591908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bethel Internal Medicine And Pediatrics", - "NPIID": "", - "OrganizationZipCode": "452645222" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bethlehem Health Bureau", - "NPIID": "", - "OrganizationZipCode": "180186025" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Beverly Pediatric Medical Group", - "NPIID": "", - "OrganizationZipCode": "906404146" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Big Apple Physicians", - "NPIID": "", - "OrganizationZipCode": "92546" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Big Island Substance Abuse Council", - "NPIID": "", - "OrganizationZipCode": "967490000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Big Island Substance Abuse Council", - "NPIID": "", - "OrganizationZipCode": "967490000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BioSpine LLC", - "NPIID": "", - "OrganizationZipCode": "336071416" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BioSpine Orlando", - "NPIID": "", - "OrganizationZipCode": "32839" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Birmingham ASC", - "NPIID": "", - "OrganizationZipCode": "352161642" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Birmingham Heart Clinic PC", - "NPIID": "", - "OrganizationZipCode": "352353412" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Birmingham Vascular", - "NPIID": "", - "OrganizationZipCode": "352161642" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BJK People's Health Centers", - "NPIID": "", - "OrganizationZipCode": "631123112" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Blackstone Community Health Care Team", - "NPIID": "", - "OrganizationZipCode": "02860" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Blakely Medical Group", - "NPIID": "", - "OrganizationZipCode": "398233474" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Blount Memorial Physician Group", - "NPIID": "", - "OrganizationZipCode": "378014703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Blue Mountain Health System", - "NPIID": "", - "OrganizationZipCode": "182351195" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Blue Ridge Surgery Center", - "NPIID": "", - "OrganizationZipCode": "296784545" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Blue Sky Vision Eye Care P.C.", - "NPIID": "", - "OrganizationZipCode": "495256047" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bluegrass Ear Nose And Throat Clinic", - "NPIID": "", - "OrganizationZipCode": "40391" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BLUEMONT NEPHROLOGY ASSOC", - "NPIID": "", - "OrganizationZipCode": "201863026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bluestem Health", - "NPIID": "", - "OrganizationZipCode": "685031803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BMH Management Services Organization", - "NPIID": "", - "OrganizationZipCode": "378014703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BMS At Absolute Care", - "NPIID": "", - "OrganizationZipCode": "21213" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bond Clinic PA", - "NPIID": "", - "OrganizationZipCode": "338803053" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boonslick Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "633763091" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Borland Groover", - "NPIID": "", - "OrganizationZipCode": "322566004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boston Children's Health Physicians", - "NPIID": "", - "OrganizationZipCode": "10595" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boston Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "024815514" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boston Laser Eye Institute", - "NPIID": "", - "OrganizationZipCode": "024467937" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boston PainCare Center", - "NPIID": "", - "OrganizationZipCode": "024511105" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boulder Bone And Joint", - "NPIID": "", - "OrganizationZipCode": "80301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boulder Medical Center", - "NPIID": "", - "OrganizationZipCode": "803043586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boulder Medical Center", - "NPIID": "", - "OrganizationZipCode": "80304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boulder Valley Womens Health Center", - "NPIID": "", - "OrganizationZipCode": "803011309" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boundary Community Clinics", - "NPIID": "", - "OrganizationZipCode": "838057532" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boundary Regional Community Dental Ctr", - "NPIID": "", - "OrganizationZipCode": "838640908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boundary Regional Community Health Ctr", - "NPIID": "", - "OrganizationZipCode": "838640908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bowman Family Medical Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "711352364" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boyd Healthcare Services", - "NPIID": "", - "OrganizationZipCode": "62016" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Boys Town National Research Hospital", - "NPIID": "", - "OrganizationZipCode": "68010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bradenton Anesthesia Services LLC", - "NPIID": "", - "OrganizationZipCode": "452636660" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bradley Wilson DO", - "NPIID": "", - "OrganizationZipCode": "437649512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brandywine Family Foot Care", - "NPIID": "", - "OrganizationZipCode": "193201539" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Braverman Eye Center", - "NPIID": "", - "OrganizationZipCode": "33134" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Braverman Terry Oei Eye Associates", - "NPIID": "", - "OrganizationZipCode": "782124701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brazos GI Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brazos GI Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "767127919" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Breast Surgery", - "NPIID": "", - "OrganizationZipCode": "217038479" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Breath Of Life Health Care LLC", - "NPIID": "", - "OrganizationZipCode": "838142556" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brent C. Norman MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926633510" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brent Millet MD LLC", - "NPIID": "", - "OrganizationZipCode": "181043129" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brent Street Family Practice", - "NPIID": "", - "OrganizationZipCode": "930032840" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brent W Sherwood MD PA", - "NPIID": "", - "OrganizationZipCode": "795121111" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brett R. Hutton M.D. P.A.", - "NPIID": "", - "OrganizationZipCode": "33437" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brian P O'Connor MD", - "NPIID": "", - "OrganizationZipCode": "911053264" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BRIDGE", - "NPIID": "", - "OrganizationZipCode": "551141312" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bridget Briggs MD", - "NPIID": "", - "OrganizationZipCode": "92562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brief Therapy Institute", - "NPIID": "", - "OrganizationZipCode": "333147796" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Broadway Medical Clinic LLP", - "NPIID": "", - "OrganizationZipCode": "972131422" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brockton Neighborhood Health Center", - "NPIID": "", - "OrganizationZipCode": "023014042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brooks Medical Associates", - "NPIID": "", - "OrganizationZipCode": "316431315" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Broomfield Family Practice", - "NPIID": "", - "OrganizationZipCode": "800202090" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Broward Health", - "NPIID": "", - "OrganizationZipCode": "333162564" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Broward Ophthalmology Group LLC", - "NPIID": "", - "OrganizationZipCode": "333212952" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brown Road Family Medicine PLLC", - "NPIID": "", - "OrganizationZipCode": "852135226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Brownsville Community Health Clinic", - "NPIID": "", - "OrganizationZipCode": "785213527" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bruce E Snyder MD PLLC", - "NPIID": "", - "OrganizationZipCode": "890524186" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bruce E Snyder MD PLLC", - "NPIID": "", - "OrganizationZipCode": "890524186" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bruce H Van Vranken MD Inc", - "NPIID": "", - "OrganizationZipCode": "926303946" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bucks Mont Eye Associates", - "NPIID": "", - "OrganizationZipCode": "189601575" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Bundled Payments Cardiovascular", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Burnsville Surgery Center", - "NPIID": "", - "OrganizationZipCode": "553374735" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Burnsville Surgery Center", - "NPIID": "", - "OrganizationZipCode": "553374735" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Butler Cnty Comm Health Care Consortium", - "NPIID": "", - "OrganizationZipCode": "45011" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "BVCHC Inc.", - "NPIID": "", - "OrganizationZipCode": "028604010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Byrd And Wyandotte Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "481925134" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "C B Patel MD PA", - "NPIID": "", - "OrganizationZipCode": "217045217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "C K Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "900475252" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "C. Philip OCarroll MD", - "NPIID": "", - "OrganizationZipCode": "926634093" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "C.P. Sammarone Jr. D.O. Inc.", - "NPIID": "", - "OrganizationZipCode": "444251126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "C.P. Sammarone Jr. D.O. Inc.", - "NPIID": "", - "OrganizationZipCode": "444251126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CAA Of Columbiana County", - "NPIID": "", - "OrganizationZipCode": "444328322" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cairo Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "398283139" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "California Eye Institute Medical Group", - "NPIID": "", - "OrganizationZipCode": "937203326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "California Eye Professionals", - "NPIID": "", - "OrganizationZipCode": "92544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "California Imaging and Diagnostics", - "NPIID": "", - "OrganizationZipCode": "92544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "California Primary Health Care Corp", - "NPIID": "", - "OrganizationZipCode": "912044647" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Callen-Lorde Community Health Center", - "NPIID": "", - "OrganizationZipCode": "100114401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Calvert County Health Dept", - "NPIID": "", - "OrganizationZipCode": "20678" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Calvert Family Practice Associates", - "NPIID": "", - "OrganizationZipCode": "206784039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Calvert Internal Medicine Group", - "NPIID": "", - "OrganizationZipCode": "206784041" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Calvert OBGYN Associates Of So MD LLC", - "NPIID": "", - "OrganizationZipCode": "206784040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CalvertHealth Medical Group", - "NPIID": "", - "OrganizationZipCode": "071014759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Camelback Dermatology \u0026 Skin Surgery Inc", - "NPIID": "", - "OrganizationZipCode": "850183604" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Campus Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Candace Howe MD", - "NPIID": "", - "OrganizationZipCode": "92663" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Canyon View Medical Group", - "NPIID": "", - "OrganizationZipCode": "846602060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Canyonlands Community Health Care", - "NPIID": "", - "OrganizationZipCode": "860401625" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cape Fear Arthritis Care PLLC", - "NPIID": "", - "OrganizationZipCode": "284514168" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cape Fear Eye Associates PA", - "NPIID": "", - "OrganizationZipCode": "283043861" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capital Family Physicians PSC", - "NPIID": "", - "OrganizationZipCode": "406013348" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capital Health OBH", - "NPIID": "", - "OrganizationZipCode": "085342520" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capital Health OBH", - "NPIID": "", - "OrganizationZipCode": "085342520" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capital Health Plan", - "NPIID": "", - "OrganizationZipCode": "32308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capital Neurosurgery Specialists LLC", - "NPIID": "", - "OrganizationZipCode": "973013987" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capital Womens Care", - "NPIID": "", - "OrganizationZipCode": "207592693" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capitol City ASC", - "NPIID": "", - "OrganizationZipCode": "361061539" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Capitol City Vascular", - "NPIID": "", - "OrganizationZipCode": "361061539" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiac EP Consultants SC", - "NPIID": "", - "OrganizationZipCode": "600481350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiac Institute Of Central California", - "NPIID": "", - "OrganizationZipCode": "937201547" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardinal Medical Center", - "NPIID": "", - "OrganizationZipCode": "920846002" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Assoc And Diag Ctr", - "NPIID": "", - "OrganizationZipCode": "182352401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "72401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Associates Of Corpus Christi", - "NPIID": "", - "OrganizationZipCode": "784043160" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Associates of Fredericksburg", - "NPIID": "", - "OrganizationZipCode": "224087760" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Associates Of Michigan PC", - "NPIID": "", - "OrganizationZipCode": "483153141" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Associates Of Port Huron PC", - "NPIID": "", - "OrganizationZipCode": "480603563" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Center Of Amarillo LLP", - "NPIID": "", - "OrganizationZipCode": "791062512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Consultants Of Toms River PA", - "NPIID": "", - "OrganizationZipCode": "087557339" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Inc.", - "NPIID": "", - "OrganizationZipCode": "452634376" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiology Partners LLP", - "NPIID": "", - "OrganizationZipCode": "760632634" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Associates", - "NPIID": "", - "OrganizationZipCode": "37660" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Associates Of Lake County", - "NPIID": "", - "OrganizationZipCode": "327784363" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Care PA", - "NPIID": "", - "OrganizationZipCode": "67214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Consultants LTD", - "NPIID": "", - "OrganizationZipCode": "850322136" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Consultants Of LI", - "NPIID": "", - "OrganizationZipCode": "110421214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Health LLC", - "NPIID": "", - "OrganizationZipCode": "065191717" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Medicine PC", - "NPIID": "", - "OrganizationZipCode": "52803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cardiovascular Specialists of Frederick", - "NPIID": "", - "OrganizationZipCode": "217024550" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Care Coordination", - "NPIID": "", - "OrganizationZipCode": "925433817" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Care Optical", - "NPIID": "", - "OrganizationZipCode": "33174" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Care Optical And IPAs", - "NPIID": "", - "OrganizationZipCode": "33174" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Care Resource", - "NPIID": "", - "OrganizationZipCode": "33137" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Caremax Medical Centers", - "NPIID": "", - "OrganizationZipCode": "331742418" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore", - "NPIID": "", - "OrganizationZipCode": "907020275" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Arizona", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Aspire", - "NPIID": "", - "OrganizationZipCode": "372011850" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Illinois-Wisconsin", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Medical Associates - DC", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Medical Associates - Texas", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Medical Group Of Iowa", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Medical Group Of Nevada", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Medical Group Of Tennessee", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore Nevada", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMore North Carolina", - "NPIID": "", - "OrganizationZipCode": "907033929" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CareMount Medical P.C.", - "NPIID": "", - "OrganizationZipCode": "105493412" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CAREOS", - "NPIID": "", - "OrganizationZipCode": "787051022" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CARING HANDS HEALTHCARE CENTERS INC.", - "NPIID": "", - "OrganizationZipCode": "745021992" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carl V Nicholson OD Inc", - "NPIID": "", - "OrganizationZipCode": "911012125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Arthritis Associates PA", - "NPIID": "", - "OrganizationZipCode": "284016442" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Arthritis Center PA", - "NPIID": "", - "OrganizationZipCode": "278343776" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Asthma And Allergy Center PA", - "NPIID": "", - "OrganizationZipCode": "282044319" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "29732" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Caring", - "NPIID": "", - "OrganizationZipCode": "286589715" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Caring House Calls", - "NPIID": "", - "OrganizationZipCode": "286589715" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Ctr Specialty Surg", - "NPIID": "", - "OrganizationZipCode": "28207" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Eye Associates", - "NPIID": "", - "OrganizationZipCode": "283872927" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Neurosurgery \u0026 Spine Associates", - "NPIID": "", - "OrganizationZipCode": "282043109" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Orthopedics \u0026 Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "285625238" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Sedation Services LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Specialty Care PA", - "NPIID": "", - "OrganizationZipCode": "286251930" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Upstate Rheumatology", - "NPIID": "", - "OrganizationZipCode": "293034210" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Urology Partners", - "NPIID": "", - "OrganizationZipCode": "280789120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolina Urology Partners", - "NPIID": "", - "OrganizationZipCode": "280789120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolinas Centers for Sight", - "NPIID": "", - "OrganizationZipCode": "29501" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carolyn Kassabian MD Inc", - "NPIID": "", - "OrganizationZipCode": "913451255" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carondelet Rheumatology", - "NPIID": "", - "OrganizationZipCode": "64114" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carroll Arthritis LLC", - "NPIID": "", - "OrganizationZipCode": "211576167" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Carroll County Digestive Disease Center", - "NPIID": "", - "OrganizationZipCode": "211575665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cascade Cardiology LLC", - "NPIID": "", - "OrganizationZipCode": "973010060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cascade Ear Nose And Throat", - "NPIID": "", - "OrganizationZipCode": "98274" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cascade Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "974777125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cascade ID and Infusion", - "NPIID": "", - "OrganizationZipCode": "973024586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Casey County Family Practice", - "NPIID": "", - "OrganizationZipCode": "42539" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Casey County Primary Care", - "NPIID": "", - "OrganizationZipCode": "42539" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cass County Health Clinic", - "NPIID": "", - "OrganizationZipCode": "626911571" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Castellanos Family Practice", - "NPIID": "", - "OrganizationZipCode": "917232115" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Castle Family Health Centers Inc", - "NPIID": "", - "OrganizationZipCode": "953015173" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Catahoula Parish Hospital District No 2", - "NPIID": "", - "OrganizationZipCode": "71368" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CCAP", - "NPIID": "", - "OrganizationZipCode": "029102903" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CCHMC School Based Health Center", - "NPIID": "", - "OrganizationZipCode": "452293026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CCHS Behavioral Medicine", - "NPIID": "", - "OrganizationZipCode": "354017457" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CCI-LEGACY-Medical Records ONLY", - "NPIID": "", - "OrganizationZipCode": "681142191" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CCPN", - "NPIID": "", - "OrganizationZipCode": "935397002" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CCSG Inc.", - "NPIID": "", - "OrganizationZipCode": "317926616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cedar River Clinics", - "NPIID": "", - "OrganizationZipCode": "989012312" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cedar Surgical", - "NPIID": "", - "OrganizationZipCode": "984052481" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cedars Sinai Medical Care Foundation", - "NPIID": "", - "OrganizationZipCode": "926590853" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Advance Eye Care", - "NPIID": "", - "OrganizationZipCode": "19808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Advanced Eye Care", - "NPIID": "", - "OrganizationZipCode": "897033803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Advanced Eye Care", - "NPIID": "", - "OrganizationZipCode": "198089998" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Advanced Eye Surgery", - "NPIID": "", - "OrganizationZipCode": "342331263" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Advanced Eye Surgery", - "NPIID": "", - "OrganizationZipCode": "445143541" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Advanced Pain Management", - "NPIID": "", - "OrganizationZipCode": "088224603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Arthritis \u0026 Rheumatic Disease", - "NPIID": "", - "OrganizationZipCode": "331732512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Breast Care", - "NPIID": "", - "OrganizationZipCode": "20678" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Dermatology Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "852603696" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Digestive Care", - "NPIID": "", - "OrganizationZipCode": "481978632" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Endocrine Health", - "NPIID": "", - "OrganizationZipCode": "088092005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Excellence In Eye Care", - "NPIID": "", - "OrganizationZipCode": "331762175" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Eye Surgery", - "NPIID": "", - "OrganizationZipCode": "33183" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Gastrointestinal Endoscopy", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Healthy Weight", - "NPIID": "", - "OrganizationZipCode": "088092014" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Hope", - "NPIID": "", - "OrganizationZipCode": "852044272" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Maternal-Fetal Care", - "NPIID": "", - "OrganizationZipCode": "782293326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Maternal-Fetal Care", - "NPIID": "", - "OrganizationZipCode": "782293326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Nutrition And Diabetes Mgmt", - "NPIID": "", - "OrganizationZipCode": "088224677" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Sight PC", - "NPIID": "", - "OrganizationZipCode": "378493511" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Vein Restoration MD LLC", - "NPIID": "", - "OrganizationZipCode": "207703504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Center For Visual Independence", - "NPIID": "", - "OrganizationZipCode": "381480232" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Centers For Adv Ortho Calvert Div 41", - "NPIID": "", - "OrganizationZipCode": "206784045" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Arizona Medical Associates", - "NPIID": "", - "OrganizationZipCode": "852062563" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central California Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "937202957" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Delaware Family Medicine", - "NPIID": "", - "OrganizationZipCode": "199014965" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Florida Pulmonary Group P.A.", - "NPIID": "", - "OrganizationZipCode": "328035734" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Florida Surgical Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Indiana Orthopedics", - "NPIID": "", - "OrganizationZipCode": "473045407" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Jersey Rheumatology Osteoporosis", - "NPIID": "", - "OrganizationZipCode": "088224661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Mass Ambulatory Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Medical Group", - "NPIID": "", - "OrganizationZipCode": "913044103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Mississippi Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "392042841" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central NE Orthopedics \u0026 Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "688034985" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Central Valley Health Care", - "NPIID": "", - "OrganizationZipCode": "96019" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CentraState Specialists", - "NPIID": "", - "OrganizationZipCode": "07728" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Centro De Salud Familiar La Fe Inc", - "NPIID": "", - "OrganizationZipCode": "79902" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CentroMed", - "NPIID": "", - "OrganizationZipCode": "782213117" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cerner Gibson Area Hospital", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cerner Gibson City Clinic", - "NPIID": "", - "OrganizationZipCode": "609361345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cerner Gregory Delost", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cesar Vega MD", - "NPIID": "", - "OrganizationZipCode": "913254126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CFTSS", - "NPIID": "", - "OrganizationZipCode": "11201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CGH Medical Center - Clinics", - "NPIID": "", - "OrganizationZipCode": "61081" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chaffee Family Physicians", - "NPIID": "", - "OrganizationZipCode": "804710448" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chandler Office", - "NPIID": "", - "OrganizationZipCode": "85224" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chandler Office Agave Surgical Assoc.", - "NPIID": "", - "OrganizationZipCode": "85224" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chandras Clinic PC", - "NPIID": "", - "OrganizationZipCode": "973084060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles Bennett MD", - "NPIID": "", - "OrganizationZipCode": "206572855" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles D Goodman MD Inc", - "NPIID": "", - "OrganizationZipCode": "913255602" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles Drew Health Center", - "NPIID": "", - "OrganizationZipCode": "681113863" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles E Imbus MD", - "NPIID": "", - "OrganizationZipCode": "910077563" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles J Scagliotti MD", - "NPIID": "", - "OrganizationZipCode": "181039663" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CHARLES KAHN AND WAYNE RISKIN M D S PA", - "NPIID": "", - "OrganizationZipCode": "330213416" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles Lee Ginsburgh", - "NPIID": "", - "OrganizationZipCode": "236064544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles M Maples DO", - "NPIID": "", - "OrganizationZipCode": "907203111" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles River Community Health", - "NPIID": "", - "OrganizationZipCode": "021351007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charles W Moniak MD FACOG", - "NPIID": "", - "OrganizationZipCode": "926632779" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charleston Ear Nose Throat And Allergy", - "NPIID": "", - "OrganizationZipCode": "294147801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Charlestown Road", - "NPIID": "", - "OrganizationZipCode": "471508548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chattanooga Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CHC of Snohomish County", - "NPIID": "", - "OrganizationZipCode": "982082619" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cherokee Health Systems", - "NPIID": "", - "OrganizationZipCode": "378773608" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cherokee Outreach", - "NPIID": "", - "OrganizationZipCode": "37921" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cherry Health", - "NPIID": "", - "OrganizationZipCode": "49503" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cherry Hill ASC", - "NPIID": "", - "OrganizationZipCode": "080342508" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cherry Hill Vascular", - "NPIID": "", - "OrganizationZipCode": "080342508" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chesapeake Ear Nose And Throat PA", - "NPIID": "", - "OrganizationZipCode": "211175490" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chesapeake Women's Care P.A.", - "NPIID": "", - "OrganizationZipCode": "21401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chesley L Gregory Md LLC", - "NPIID": "", - "OrganizationZipCode": "711352311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chest Medicine Associates", - "NPIID": "", - "OrganizationZipCode": "041062351" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chest Surgery", - "NPIID": "", - "OrganizationZipCode": "217024337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cheyenne Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "82001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cheyenne Eye Surgery", - "NPIID": "", - "OrganizationZipCode": "82001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chhokar Clinic", - "NPIID": "", - "OrganizationZipCode": "319046877" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chi Arthritis And Rheum Associates", - "NPIID": "", - "OrganizationZipCode": "722112858" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chicago Cardiology Institute SC", - "NPIID": "", - "OrganizationZipCode": "601734776" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chicago Vascular ASC", - "NPIID": "", - "OrganizationZipCode": "605591382" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chicago Vascular Clinic", - "NPIID": "", - "OrganizationZipCode": "60173" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chicagoland Eye Consultants", - "NPIID": "", - "OrganizationZipCode": "606313175" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chicagoland Retinal Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "606011910" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chickahominy Family Practice", - "NPIID": "", - "OrganizationZipCode": "231403400" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chico Eye Center", - "NPIID": "", - "OrganizationZipCode": "95926" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Child Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "220315216" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Child Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "220315216" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Child Mind Medical Practice PLLC", - "NPIID": "", - "OrganizationZipCode": "10022" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Child Neurology Consultants Of Austin", - "NPIID": "", - "OrganizationZipCode": "787577589" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Child Neurology Consultants Of Austin", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "770242413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "770242413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens ENT And Allergy", - "NPIID": "", - "OrganizationZipCode": "328355706" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens ENT And Allergy", - "NPIID": "", - "OrganizationZipCode": "328355706" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens ENT Of Houston", - "NPIID": "", - "OrganizationZipCode": "770302709" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Eye Care", - "NPIID": "", - "OrganizationZipCode": "980347299" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Eye Care", - "NPIID": "", - "OrganizationZipCode": "980347299" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Eye Care and Surgery of GA", - "NPIID": "", - "OrganizationZipCode": "300926545" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Eye Care Of North Texas", - "NPIID": "", - "OrganizationZipCode": "750935862" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Eye Care Of North Texas", - "NPIID": "", - "OrganizationZipCode": "750935862" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Children's Healthcare Associates LLP", - "NPIID": "", - "OrganizationZipCode": "791062108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Heart Center Of El Paso", - "NPIID": "", - "OrganizationZipCode": "799151810" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Heart Center Of El Paso", - "NPIID": "", - "OrganizationZipCode": "799151810" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Hearts PC", - "NPIID": "", - "OrganizationZipCode": "372032245" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Hearts PC", - "NPIID": "", - "OrganizationZipCode": "372032245" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Childrens Lung Asthma And Sleep Spc", - "NPIID": "", - "OrganizationZipCode": "327893385" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Children's Medical Group", - "NPIID": "", - "OrganizationZipCode": "48708" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chinatown Service Center", - "NPIID": "", - "OrganizationZipCode": "900122381" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chiricahua Community Health Centers Inc", - "NPIID": "", - "OrganizationZipCode": "856071920" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CHMC Anderson Primary Care", - "NPIID": "", - "OrganizationZipCode": "452643947" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CHMC Business Department", - "NPIID": "", - "OrganizationZipCode": "20678" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CHMC Community Health Services Network", - "NPIID": "", - "OrganizationZipCode": "452640823" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CHMC Community Health Services Network", - "NPIID": "", - "OrganizationZipCode": "450449168" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CHMC SML", - "NPIID": "", - "OrganizationZipCode": "45044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chong Ping C Lu MD", - "NPIID": "", - "OrganizationZipCode": "925434409" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Chris Makoto Tsuneishi MD", - "NPIID": "", - "OrganizationZipCode": "905034507" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Christopher Evan Lee MD Inc", - "NPIID": "", - "OrganizationZipCode": "926595786" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Christopher J Rankin LLC", - "NPIID": "", - "OrganizationZipCode": "711353282" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Christus Highland Physicians Group", - "NPIID": "", - "OrganizationZipCode": "752843577" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Church Health", - "NPIID": "", - "OrganizationZipCode": "38104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Churn Creek Health Care", - "NPIID": "", - "OrganizationZipCode": "960022122" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CICRS", - "NPIID": "", - "OrganizationZipCode": "93308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CICRS", - "NPIID": "", - "OrganizationZipCode": "93308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cimarron Urology", - "NPIID": "", - "OrganizationZipCode": "740744226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cincinnati ASC", - "NPIID": "", - "OrganizationZipCode": "452122793" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cincinnati Vascular Care", - "NPIID": "", - "OrganizationZipCode": "452122793" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CIO Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "473045407" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Circe Healthcare Solutions Inc", - "NPIID": "", - "OrganizationZipCode": "922603909" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cisco Medical Group", - "NPIID": "", - "OrganizationZipCode": "913354212" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cissna Park Therapy", - "NPIID": "", - "OrganizationZipCode": "609249704" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Citizens Of Lake County Health Care Inc", - "NPIID": "", - "OrganizationZipCode": "38079" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CitizensDX", - "NPIID": "", - "OrganizationZipCode": "40245" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Citrus Ambulatory Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Citrus Endoscopy and Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Citrus Valley Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "91722" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "City Employee Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "80918" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "City Of Bethlehem Health Bureau", - "NPIID": "", - "OrganizationZipCode": "180152016" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Claims Practice 1 (Gateway)", - "NPIID": "", - "OrganizationZipCode": "911011505" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Claims Practice 2 (Office Ally)", - "NPIID": "", - "OrganizationZipCode": "91101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clarksville Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "370405243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clarksville Ophthalmology", - "NPIID": "", - "OrganizationZipCode": "370405243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clay Eye Physicians", - "NPIID": "", - "OrganizationZipCode": "32073" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CLECO Primary Care Network", - "NPIID": "", - "OrganizationZipCode": "281503934" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clemson Eye PA", - "NPIID": "", - "OrganizationZipCode": "296421533" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clifton Cole MD Inc", - "NPIID": "", - "OrganizationZipCode": "922626910" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinic For Rheumatic Diseases", - "NPIID": "", - "OrganizationZipCode": "354735163" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinic Sofia OBGYN PA", - "NPIID": "", - "OrganizationZipCode": "554352123" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinica Campesina", - "NPIID": "", - "OrganizationZipCode": "800267093" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinica Coachella", - "NPIID": "", - "OrganizationZipCode": "922361504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinica De Salud Del Valle", - "NPIID": "", - "OrganizationZipCode": "939053302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinica De Salud Del Valle", - "NPIID": "", - "OrganizationZipCode": "939053302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinica Medica Mi Familia De Palmdale", - "NPIID": "", - "OrganizationZipCode": "935504914" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinica Medica Mi Familia De Palmdale", - "NPIID": "", - "OrganizationZipCode": "935504914" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinical \u0026 Family Services", - "NPIID": "", - "OrganizationZipCode": "10017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinical Associates", - "NPIID": "", - "OrganizationZipCode": "212865466" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinical Care Medical Centers", - "NPIID": "", - "OrganizationZipCode": "331393810" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinical Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "191071511" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinical Nephrology Associates ASC", - "NPIID": "", - "OrganizationZipCode": "191071511" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinical Support Providers", - "NPIID": "", - "OrganizationZipCode": "973015157" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinicas Del Camino Real Incorporated", - "NPIID": "", - "OrganizationZipCode": "930070566" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Clinics for Speech Language and Communic", - "NPIID": "", - "OrganizationZipCode": "333144416" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CMGI", - "NPIID": "", - "OrganizationZipCode": "907039329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CMS Medical Care Corporation", - "NPIID": "", - "OrganizationZipCode": "182351138" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coal Creek Family Medicine", - "NPIID": "", - "OrganizationZipCode": "800279445" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coast Pulmonary \u0026 Internal Medicine Asso", - "NPIID": "", - "OrganizationZipCode": "927085153" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Eye Group PC", - "NPIID": "", - "OrganizationZipCode": "294422900" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Family Health Center", - "NPIID": "", - "OrganizationZipCode": "395330475" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Health \u0026 Wellness", - "NPIID": "", - "OrganizationZipCode": "775680939" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Health \u0026 Wellness", - "NPIID": "", - "OrganizationZipCode": "775680939" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "905012401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Orthopedics And Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "336220047" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Orthopedics PA", - "NPIID": "", - "OrganizationZipCode": "784144103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Rheumatology", - "NPIID": "", - "OrganizationZipCode": "314046234" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Surgeons Medical Group", - "NPIID": "", - "OrganizationZipCode": "920564519" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coastal Vision Center", - "NPIID": "", - "OrganizationZipCode": "320343212" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cocaine and Alcohol Awareness Program", - "NPIID": "", - "OrganizationZipCode": "381180000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cockerell McIntosh Pediatrics", - "NPIID": "", - "OrganizationZipCode": "64014" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CODAC Behavioral Health", - "NPIID": "", - "OrganizationZipCode": "857192378" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CODAC Medical Practice", - "NPIID": "", - "OrganizationZipCode": "857192378" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colavasc", - "NPIID": "", - "OrganizationZipCode": "292036476" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colavasc ASC", - "NPIID": "", - "OrganizationZipCode": "292036476" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Collaborative Arthritis Care Inc", - "NPIID": "", - "OrganizationZipCode": "238349261" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "College Of Dental Medicine", - "NPIID": "", - "OrganizationZipCode": "333282108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "College of Osteopathic Medicine", - "NPIID": "", - "OrganizationZipCode": "333290250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Collier Anesthesia Pain PA", - "NPIID": "", - "OrganizationZipCode": "339019308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Collom and Carney Clinic", - "NPIID": "", - "OrganizationZipCode": "755039766" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colon And Rectal Surgery Associates", - "NPIID": "", - "OrganizationZipCode": "554131759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colon and Rectal Surgery Inc.", - "NPIID": "", - "OrganizationZipCode": "681142191" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colorado", - "NPIID": "", - "OrganizationZipCode": "907033929" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colorado Coalition For The Homeless", - "NPIID": "", - "OrganizationZipCode": "802052529" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colorado Eye Center", - "NPIID": "", - "OrganizationZipCode": "800207090" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colorado Heart And Vascular PC", - "NPIID": "", - "OrganizationZipCode": "802281710" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colorado Springs Cardiologists PC", - "NPIID": "", - "OrganizationZipCode": "809076863" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Colorado Urgent Care LLC", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbia Arthritis Center PA", - "NPIID": "", - "OrganizationZipCode": "292042409" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbia Eye Clinic PA", - "NPIID": "", - "OrganizationZipCode": "29201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbia Eye Surgery Center Inc", - "NPIID": "", - "OrganizationZipCode": "292012632" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbia Gastrointestinal Endoscopy Ctr", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbus Arthritis Center Inc", - "NPIID": "", - "OrganizationZipCode": "432151077" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbus Bone Joint \u0026 Hand Surgeons Inc", - "NPIID": "", - "OrganizationZipCode": "432221478" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbus Health Department", - "NPIID": "", - "OrganizationZipCode": "432155331" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbus Hernia Institute", - "NPIID": "", - "OrganizationZipCode": "452710001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbus Metropolitan OB/GYN Inc", - "NPIID": "", - "OrganizationZipCode": "432308700" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbus Nephrology Inc", - "NPIID": "", - "OrganizationZipCode": "431238604" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Columbus Womens Care", - "NPIID": "", - "OrganizationZipCode": "432131562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Commonwealth Eye Care Associates", - "NPIID": "", - "OrganizationZipCode": "232331441" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Communicare Health Centers", - "NPIID": "", - "OrganizationZipCode": "782201013" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Anesthesia Professionals PLLC", - "NPIID": "", - "OrganizationZipCode": "554140780" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Bridges Inc", - "NPIID": "", - "OrganizationZipCode": "852029098" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health And Dental Care", - "NPIID": "", - "OrganizationZipCode": "19465" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Care", - "NPIID": "", - "OrganizationZipCode": "984023518" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Care Inc", - "NPIID": "", - "OrganizationZipCode": "528011014" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Center Of Central Mis", - "NPIID": "", - "OrganizationZipCode": "651012854" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Centers Of Burlington", - "NPIID": "", - "OrganizationZipCode": "054011601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Centers Of SE Iowa", - "NPIID": "", - "OrganizationZipCode": "526325657" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Clinic", - "NPIID": "", - "OrganizationZipCode": "15068" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Cntrs Of Ctl Coast", - "NPIID": "", - "OrganizationZipCode": "934449123" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Connections", - "NPIID": "", - "OrganizationZipCode": "014201914" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Ctrs Of Greater Dayton", - "NPIID": "", - "OrganizationZipCode": "45432" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Development Inc.", - "NPIID": "", - "OrganizationZipCode": "788016034" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Imaging Centers", - "NPIID": "", - "OrganizationZipCode": "921051608" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Net", - "NPIID": "", - "OrganizationZipCode": "165011914" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Of East Tennessee", - "NPIID": "", - "OrganizationZipCode": "377663031" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Programs Inc", - "NPIID": "", - "OrganizationZipCode": "012301295" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Service Agency", - "NPIID": "", - "OrganizationZipCode": "75401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Services", - "NPIID": "", - "OrganizationZipCode": "06120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Health Systems Inc", - "NPIID": "", - "OrganizationZipCode": "92553" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Medical Centers Inc", - "NPIID": "", - "OrganizationZipCode": "952103339" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Medicine Inc", - "NPIID": "", - "OrganizationZipCode": "907235200" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Orthopedic Medical Grp", - "NPIID": "", - "OrganizationZipCode": "926916350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Practice Services", - "NPIID": "", - "OrganizationZipCode": "45229" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Community Psychiatry", - "NPIID": "", - "OrganizationZipCode": "95834" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Compass Community Health", - "NPIID": "", - "OrganizationZipCode": "456624526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Compass Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "973382025" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Compassionate Care Western NC", - "NPIID": "", - "OrganizationZipCode": "28714" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Complete Care Community Health Center", - "NPIID": "", - "OrganizationZipCode": "900333110" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Complete Family Care", - "NPIID": "", - "OrganizationZipCode": "802343046" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CompleteCare Health Network", - "NPIID": "", - "OrganizationZipCode": "08302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Comprehensive Cardiovascular", - "NPIID": "", - "OrganizationZipCode": "933090610" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Comprehensive Care Center of Irvine", - "NPIID": "", - "OrganizationZipCode": "92604" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Comprehensive Care Clinic", - "NPIID": "", - "OrganizationZipCode": "933012819" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Comprehensive Care Clinic", - "NPIID": "", - "OrganizationZipCode": "933012819" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Comprehensive Orthopaedics S.C.", - "NPIID": "", - "OrganizationZipCode": "531427845" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Concept Occupational and Hand Therapy", - "NPIID": "", - "OrganizationZipCode": "980364731" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Confidential Services", - "NPIID": "", - "OrganizationZipCode": "809175152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Confidential Visits WCCHC", - "NPIID": "", - "OrganizationZipCode": "967923199" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Connecticut", - "NPIID": "", - "OrganizationZipCode": "06513" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Connecticut Eye Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Connecticut Eye Consultants", - "NPIID": "", - "OrganizationZipCode": "068104005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Connecticut Eye Surgery Center South", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CONNECTICUT IMAGE GUIDED SURGERY", - "NPIID": "", - "OrganizationZipCode": "068254867" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Connecticut Kidney Center", - "NPIID": "", - "OrganizationZipCode": "064773649" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Connecticut Vascular Thoracic Surgical", - "NPIID": "", - "OrganizationZipCode": "06825" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CONTEMPORARY OPHTHALMOLOGY", - "NPIID": "", - "OrganizationZipCode": "165063151" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cooper Green Mercy Health Services Auth", - "NPIID": "", - "OrganizationZipCode": "352331601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cooper Road", - "NPIID": "", - "OrganizationZipCode": "430818516" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coordinated Care Department", - "NPIID": "", - "OrganizationZipCode": "925433817" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Core Physician Services of MA", - "NPIID": "", - "OrganizationZipCode": "03833" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Core Physicians LLC", - "NPIID": "", - "OrganizationZipCode": "038332937" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cornea Consultants Of Texas", - "NPIID": "", - "OrganizationZipCode": "76012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Corneal Associates", - "NPIID": "", - "OrganizationZipCode": "191075117" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cornerstone Care", - "NPIID": "", - "OrganizationZipCode": "153389507" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cornerstone Family Care", - "NPIID": "", - "OrganizationZipCode": "088202073" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cornerstone Orthopedics \u0026 Sports Med", - "NPIID": "", - "OrganizationZipCode": "80027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Corona Family Care Inc", - "NPIID": "", - "OrganizationZipCode": "92882" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CorrectVision Laser Institute LLC", - "NPIID": "", - "OrganizationZipCode": "33027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coulis Cardiology", - "NPIID": "", - "OrganizationZipCode": "530811988" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Country Hills Eye Center", - "NPIID": "", - "OrganizationZipCode": "844032200" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "COUNTRYSIDE FAMILY PRACTICE", - "NPIID": "", - "OrganizationZipCode": "201150337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "County Of Ingham", - "NPIID": "", - "OrganizationZipCode": "48911" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Courthouse Family Medicine PLLC", - "NPIID": "", - "OrganizationZipCode": "230610857" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Coushatta ER Physicians", - "NPIID": "", - "OrganizationZipCode": "711352311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "COVID Vaccine Clinic", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Covina Valley Urologic Medical Group", - "NPIID": "", - "OrganizationZipCode": "917905023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CPS Psychology Services Center", - "NPIID": "", - "OrganizationZipCode": "333147796" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Craig A. Skolnick M.D. P.A.", - "NPIID": "", - "OrganizationZipCode": "334582792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Craig R Johnson MD Inc", - "NPIID": "", - "OrganizationZipCode": "911062401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Creek Nation Employee Health", - "NPIID": "", - "OrganizationZipCode": "744476303" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Creek Nation Hospital \u0026 Clinics", - "NPIID": "", - "OrganizationZipCode": "744476303" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Crenshaw Medical Center", - "NPIID": "", - "OrganizationZipCode": "900431853" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Crestview ASC", - "NPIID": "", - "OrganizationZipCode": "325390000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Crestview Hills Surgery Center", - "NPIID": "", - "OrganizationZipCode": "41017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Critical Care Pulmonary \u0026 Sleep Assoc.", - "NPIID": "", - "OrganizationZipCode": "802281813" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cross Road Health Ministries", - "NPIID": "", - "OrganizationZipCode": "995880005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Cross Timbers Health Clinics Inc", - "NPIID": "", - "OrganizationZipCode": "764441630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Crossing Healthcare", - "NPIID": "", - "OrganizationZipCode": "625214665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Crossroads Health", - "NPIID": "", - "OrganizationZipCode": "440602410" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Crystal Run Healthcare Physicians LLP", - "NPIID": "", - "OrganizationZipCode": "109414028" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CS Rayhrer MD", - "NPIID": "", - "OrganizationZipCode": "930031548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CSE Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "91361" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CSO Indiana", - "NPIID": "", - "OrganizationZipCode": "46280" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CSO Ohio", - "NPIID": "", - "OrganizationZipCode": "43231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CT Derm PC", - "NPIID": "", - "OrganizationZipCode": "836192218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CVP Physicians", - "NPIID": "", - "OrganizationZipCode": "45242" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "CVP Surgery Centers", - "NPIID": "", - "OrganizationZipCode": "45242" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Daalon B Echols M.D.", - "NPIID": "", - "OrganizationZipCode": "763015003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DAC Corpus Christi", - "NPIID": "", - "OrganizationZipCode": "784144252" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dallas Associated Dermatologists", - "NPIID": "", - "OrganizationZipCode": "75251" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dallas Renal Group", - "NPIID": "", - "OrganizationZipCode": "752373461" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dan I Giurgiu MD", - "NPIID": "", - "OrganizationZipCode": "921032166" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Danbury Eye Physicians", - "NPIID": "", - "OrganizationZipCode": "068104004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Daniel G Orr MD", - "NPIID": "", - "OrganizationZipCode": "194259516" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Daniel Ghiyam MD Inc", - "NPIID": "", - "OrganizationZipCode": "930653937" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Danny R. Bartel M.D. P.A.", - "NPIID": "", - "OrganizationZipCode": "763015003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David B Stanton MD And Assoc Inc", - "NPIID": "", - "OrganizationZipCode": "92868" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David Campisi MD", - "NPIID": "", - "OrganizationZipCode": "907323581" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David D Oh MD", - "NPIID": "", - "OrganizationZipCode": "905034406" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David Hampton MD PA", - "NPIID": "", - "OrganizationZipCode": "790652823" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David N Rios MD", - "NPIID": "", - "OrganizationZipCode": "92653" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David R. Jensen MD Inc.", - "NPIID": "", - "OrganizationZipCode": "935513889" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David R. Jensen MD Inc.", - "NPIID": "", - "OrganizationZipCode": "935513889" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David Raines Community Health Center Inc", - "NPIID": "", - "OrganizationZipCode": "711074705" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David Scot Zimmerman MD", - "NPIID": "", - "OrganizationZipCode": "926534342" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "David W. Ray DO LLC", - "NPIID": "", - "OrganizationZipCode": "437256607" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Davis Medical Center", - "NPIID": "", - "OrganizationZipCode": "26241" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Davis Podiatry LLC", - "NPIID": "", - "OrganizationZipCode": "392033048" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Davita Complex Care Solutions", - "NPIID": "", - "OrganizationZipCode": "19460" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Daymark Recovery Services", - "NPIID": "", - "OrganizationZipCode": "280251833" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dayton Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "454403237" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dayton Interventional", - "NPIID": "", - "OrganizationZipCode": "454095409" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dayton Nephrology", - "NPIID": "", - "OrganizationZipCode": "454391648" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dayton Renal Physicians Inc", - "NPIID": "", - "OrganizationZipCode": "454391648" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dayton Skin Care", - "NPIID": "", - "OrganizationZipCode": "454091330" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Deanna Y Khan MD", - "NPIID": "", - "OrganizationZipCode": "906404317" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Deanza Obstetrics And Gynecology Med Grp", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Deen Gross Eye Centers", - "NPIID": "", - "OrganizationZipCode": "464106295" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Default Practice 2", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DeGuzman Medical Corp", - "NPIID": "", - "OrganizationZipCode": "926633639" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DeKalb Eye Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "601783103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DeKalb Hearing Services LLC", - "NPIID": "", - "OrganizationZipCode": "601783103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaire Chiropractic Clinic Inc", - "NPIID": "", - "OrganizationZipCode": "922345540" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaware Eye Care Center", - "NPIID": "", - "OrganizationZipCode": "199044158" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaware Family Medicine", - "NPIID": "", - "OrganizationZipCode": "43015" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaware Valley Community Health Inc", - "NPIID": "", - "OrganizationZipCode": "191302908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaware Valley Dermatology Group LLC", - "NPIID": "", - "OrganizationZipCode": "198104806" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaware Valley Nephrology Assc ASC", - "NPIID": "", - "OrganizationZipCode": "191183541" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaware Valley Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "191183541" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delaware Vision Associates Group Practic", - "NPIID": "", - "OrganizationZipCode": "19808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delray Eye Associates PA", - "NPIID": "", - "OrganizationZipCode": "334846503" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Delta Health Center", - "NPIID": "", - "OrganizationZipCode": "387629314" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DelVal Vision Associates Group Practice", - "NPIID": "", - "OrganizationZipCode": "194062902" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Denver Eye Surgeons", - "NPIID": "", - "OrganizationZipCode": "80401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Denver Nephrologists PC", - "NPIID": "", - "OrganizationZipCode": "802306454" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Denver Pain Relief Center PC", - "NPIID": "", - "OrganizationZipCode": "452637588" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dept Of Lab Services Ohio", - "NPIID": "", - "OrganizationZipCode": "432317665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology \u0026 Skin Cancer Center PC", - "NPIID": "", - "OrganizationZipCode": "181049119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology And Skin Cancer Center", - "NPIID": "", - "OrganizationZipCode": "300767490" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology And Surgery Associates", - "NPIID": "", - "OrganizationZipCode": "10465" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology Associates", - "NPIID": "", - "OrganizationZipCode": "300768218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology Associates LLC", - "NPIID": "", - "OrganizationZipCode": "392020606" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology Associates Of Georgia", - "NPIID": "", - "OrganizationZipCode": "30033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology Associates Of San Antonio", - "NPIID": "", - "OrganizationZipCode": "782332601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology Associates Of Uptown", - "NPIID": "", - "OrganizationZipCode": "751043528" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology Center Of Lake Orion", - "NPIID": "", - "OrganizationZipCode": "483601419" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dermatology Consultants Of Frisco", - "NPIID": "", - "OrganizationZipCode": "750330289" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Derrick Smith MD", - "NPIID": "", - "OrganizationZipCode": "925433814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Heart Physicians Medical Group", - "NPIID": "", - "OrganizationZipCode": "922624809" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Hospitalist Group", - "NPIID": "", - "OrganizationZipCode": "921987556" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Hospitalist Medical Group", - "NPIID": "", - "OrganizationZipCode": "921987556" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Institute For Spine Care", - "NPIID": "", - "OrganizationZipCode": "850205514" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Oasis Healthcare", - "NPIID": "", - "OrganizationZipCode": "922626972" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Peaks Surgery Center", - "NPIID": "", - "OrganizationZipCode": "880118191" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Podiatric Medical Specialists", - "NPIID": "", - "OrganizationZipCode": "857413118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Senita CHC", - "NPIID": "", - "OrganizationZipCode": "853212254" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Senita CHC", - "NPIID": "", - "OrganizationZipCode": "853212254" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Desert Valley Medical Group", - "NPIID": "", - "OrganizationZipCode": "923955794" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Developmental Pediatric Associates", - "NPIID": "", - "OrganizationZipCode": "088225773" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Developmental Pediatric Services", - "NPIID": "", - "OrganizationZipCode": "75243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Developmental Pediatric Services", - "NPIID": "", - "OrganizationZipCode": "75243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Devon Dermatology Services PC", - "NPIID": "", - "OrganizationZipCode": "19333" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DFW Physicians Medical Associates", - "NPIID": "", - "OrganizationZipCode": "750927399" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DFWPMA Psychiatry", - "NPIID": "", - "OrganizationZipCode": "750927399" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DG Eye Institute", - "NPIID": "", - "OrganizationZipCode": "605155430" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DG Multispecialty Clinic", - "NPIID": "", - "OrganizationZipCode": "605155430" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Diabetes \u0026 Thyroid Center Of Ft. Worth", - "NPIID": "", - "OrganizationZipCode": "761324204" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Diabetes And Endocrine Assoc Hunterdon", - "NPIID": "", - "OrganizationZipCode": "088224677" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Diabetes And Endocrine Center Of MS", - "NPIID": "", - "OrganizationZipCode": "392050449" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Diabetes Thyroid Endocrine Adv Care", - "NPIID": "", - "OrganizationZipCode": "327923532" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dialysis Access Center Of Cincinnati ASC", - "NPIID": "", - "OrganizationZipCode": "452122281" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dialysis Access Center Of Cincinnati Pro", - "NPIID": "", - "OrganizationZipCode": "452122281" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Diana E Hampton MD PC", - "NPIID": "", - "OrganizationZipCode": "731141407" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dickson Medical Associates PC", - "NPIID": "", - "OrganizationZipCode": "37055" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Disease Consultants", - "NPIID": "", - "OrganizationZipCode": "483415035" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Associates", - "NPIID": "", - "OrganizationZipCode": "496847306" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Center Of Bedford", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Center Of Dallas", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Center Of Plano", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "837048731" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Ctr At Redbird Square", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Digestive Health Ctr Of N Richland Hills", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dignity Health Med Grp - Ventura Cnty", - "NPIID": "", - "OrganizationZipCode": "930128681" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Discover Vision Centers", - "NPIID": "", - "OrganizationZipCode": "641804904" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Discover Vision Surgery \u0026 Laser Center", - "NPIID": "", - "OrganizationZipCode": "641802724" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DNU E. Ed Conaway Jr. MD", - "NPIID": "", - "OrganizationZipCode": "437251636" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DNU Healthcare Associates of Zanesville", - "NPIID": "", - "OrganizationZipCode": "437011880" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Doctor And Associates PC", - "NPIID": "", - "OrganizationZipCode": "068802438" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Doctors Urgent Care NextCare", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DOHC Case Management", - "NPIID": "", - "OrganizationZipCode": "92262" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DOHC Home Health", - "NPIID": "", - "OrganizationZipCode": "92262" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DOHC Palliative Care", - "NPIID": "", - "OrganizationZipCode": "922626972" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Don F Mills MD", - "NPIID": "", - "OrganizationZipCode": "92618" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Don J Schmitt MD", - "NPIID": "", - "OrganizationZipCode": "838142475" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Donald Cassaday MD", - "NPIID": "", - "OrganizationZipCode": "925444711" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Donald R. Abrahm MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926633639" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Donna L Miller DO PC", - "NPIID": "", - "OrganizationZipCode": "180151000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Douglas County Health Department", - "NPIID": "", - "OrganizationZipCode": "61953" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Douglas E Lewis DO PA", - "NPIID": "", - "OrganizationZipCode": "791591379" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Douglas F. Carrasco MD", - "NPIID": "", - "OrganizationZipCode": "92592" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dove Creek Community Health Clinic", - "NPIID": "", - "OrganizationZipCode": "813240576" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Downers Grove Eye Center PC", - "NPIID": "", - "OrganizationZipCode": "605153508" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Bruce Becker Group", - "NPIID": "", - "OrganizationZipCode": "913162828" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Bremer Dr Gass", - "NPIID": "", - "OrganizationZipCode": "376432883" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Douglas C Shoenberger PC", - "NPIID": "", - "OrganizationZipCode": "180361966" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Gerald K Fleer", - "NPIID": "", - "OrganizationZipCode": "60901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Hisey Dr Horton", - "NPIID": "", - "OrganizationZipCode": "731346104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr J Express Care", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Jesse Haggerty", - "NPIID": "", - "OrganizationZipCode": "36027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Kelly Coon", - "NPIID": "", - "OrganizationZipCode": "452643509" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DR MYERS DR BELL", - "NPIID": "", - "OrganizationZipCode": "201863026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Nilesh Desai", - "NPIID": "", - "OrganizationZipCode": "915021825" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Paresh N Varu", - "NPIID": "", - "OrganizationZipCode": "915021803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dr Vivian Clark MD", - "NPIID": "", - "OrganizationZipCode": "37643" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Drs Girgis \u0026 Associates", - "NPIID": "", - "OrganizationZipCode": "605213625" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Drs Uyemura \u0026 Jeng LLC", - "NPIID": "", - "OrganizationZipCode": "806314571" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DSA Dermatology", - "NPIID": "", - "OrganizationZipCode": "750934474" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dublin Physical Medicine", - "NPIID": "", - "OrganizationZipCode": "452636365" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Duc Nguyen MD", - "NPIID": "", - "OrganizationZipCode": "930653159" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dulaney Anesthesia Associates", - "NPIID": "", - "OrganizationZipCode": "21204" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dulaney Eye Institute LLC", - "NPIID": "", - "OrganizationZipCode": "212040621" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Duncan Eye PLLC", - "NPIID": "", - "OrganizationZipCode": "381194801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dunkirk Family Practice", - "NPIID": "", - "OrganizationZipCode": "20736" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dupage Eye Associates", - "NPIID": "", - "OrganizationZipCode": "605151552" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "DuPage Eye Center", - "NPIID": "", - "OrganizationZipCode": "605152865" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Dupont Anesthesia PSC", - "NPIID": "", - "OrganizationZipCode": "402074831" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Durfee Family Care Medical Group", - "NPIID": "", - "OrganizationZipCode": "917333713" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "E Tx Heart Vascular Imag Of Lufkin PA", - "NPIID": "", - "OrganizationZipCode": "759043133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eagle View Community Health System", - "NPIID": "", - "OrganizationZipCode": "614690198" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EANW ASC", - "NPIID": "", - "OrganizationZipCode": "98107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ear Nose Throat And Allergy Associates", - "NPIID": "", - "OrganizationZipCode": "983741145" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ear Nose Throat and Allergy Center", - "NPIID": "", - "OrganizationZipCode": "317926616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Adams Rural Healthcare", - "NPIID": "", - "OrganizationZipCode": "991692227" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Bay CAP", - "NPIID": "", - "OrganizationZipCode": "028402937" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Bay Endosurgery Center", - "NPIID": "", - "OrganizationZipCode": "946122070" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Coast Retina PA", - "NPIID": "", - "OrganizationZipCode": "295884504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Columbus Surgery Center", - "NPIID": "", - "OrganizationZipCode": "432132128" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Cooper Rheumatology PA", - "NPIID": "", - "OrganizationZipCode": "294646129" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Jordan Family Health Center", - "NPIID": "", - "OrganizationZipCode": "497279383" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Paris Surgical Center LLC", - "NPIID": "", - "OrganizationZipCode": "495463680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Stroudsburg University", - "NPIID": "", - "OrganizationZipCode": "18301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Tennessee Eye Surgeons PC", - "NPIID": "", - "OrganizationZipCode": "37849" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Valley Community Health Center", - "NPIID": "", - "OrganizationZipCode": "917903001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "East Valley Endoscopy", - "NPIID": "", - "OrganizationZipCode": "852066102" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastern Connecticut Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "063602173" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastern Massachusetts Surgery Center", - "NPIID": "", - "OrganizationZipCode": "020624679" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastern Medical Associates PA", - "NPIID": "", - "OrganizationZipCode": "275349428" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastern Ohio Pulmonary Consultants Inc", - "NPIID": "", - "OrganizationZipCode": "445125087" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastern Shore Endoscopy", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Easton Anesthesia Associates LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Easton Cardiovascular Associates PC", - "NPIID": "", - "OrganizationZipCode": "180423835" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Easton Family Practice P C", - "NPIID": "", - "OrganizationZipCode": "180424650" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastside Maternal-Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "98004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastside Maternal-Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "98004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastside OBH", - "NPIID": "", - "OrganizationZipCode": "300782195" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastside OBH", - "NPIID": "", - "OrganizationZipCode": "300782195" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eastwind Womens Health Inc", - "NPIID": "", - "OrganizationZipCode": "430813329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edgar J Stanley MD Inc A Medical Corp", - "NPIID": "", - "OrganizationZipCode": "922624426" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edicine Internal Medicine And Urgent Car", - "NPIID": "", - "OrganizationZipCode": "85266" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edie Windsor Healthcare Center", - "NPIID": "", - "OrganizationZipCode": "11946" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edmonds Orthopedic Center", - "NPIID": "", - "OrganizationZipCode": "980268006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edmonds Orthopedic Therapy", - "NPIID": "", - "OrganizationZipCode": "980268006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edmund J Lewis \u0026 Associates", - "NPIID": "", - "OrganizationZipCode": "606071821" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edmund J MacLaughlin MD LLC", - "NPIID": "", - "OrganizationZipCode": "216131902" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edward L. Colby DO Inc.", - "NPIID": "", - "OrganizationZipCode": "437259114" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edward M Kennedy Community Health Center", - "NPIID": "", - "OrganizationZipCode": "016061256" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Edward Tai Chiang DO INC", - "NPIID": "", - "OrganizationZipCode": "911063955" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Effingham Vascular Center", - "NPIID": "", - "OrganizationZipCode": "313265183" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Efraim Duzman MD Inc", - "NPIID": "", - "OrganizationZipCode": "926041726" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eisner Health", - "NPIID": "", - "OrganizationZipCode": "900153023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "El Paso Anesthesia Associates LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "El Paso Del Coro", - "NPIID": "", - "OrganizationZipCode": "799024724" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "El Paso Diaz Luna", - "NPIID": "", - "OrganizationZipCode": "799024724" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "El Rio Health Center", - "NPIID": "", - "OrganizationZipCode": "85702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eleanor J. Figuerres", - "NPIID": "", - "OrganizationZipCode": "53142" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Elise Leonard MD LLC", - "NPIID": "", - "OrganizationZipCode": "33351" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Elite Eyecare Medical Group", - "NPIID": "", - "OrganizationZipCode": "934547001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Elite Pain \u0026 Health PC", - "NPIID": "", - "OrganizationZipCode": "731141430" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ellen M Field MD", - "NPIID": "", - "OrganizationZipCode": "180172356" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Elliot Lederman", - "NPIID": "", - "OrganizationZipCode": "11230" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Emanuel Dozier MD MPH", - "NPIID": "", - "OrganizationZipCode": "933013704" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Emanuel Dozier MD MPH", - "NPIID": "", - "OrganizationZipCode": "933013704" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Emergency Department", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Emergency Surgical Associates APC", - "NPIID": "", - "OrganizationZipCode": "926634729" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Emergency Surgical Services Of Arizona", - "NPIID": "", - "OrganizationZipCode": "857156488" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Emkey Arthritis And Osteoporosis Clinic", - "NPIID": "", - "OrganizationZipCode": "196103206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Employee Health", - "NPIID": "", - "OrganizationZipCode": "851470130" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Employee Health", - "NPIID": "", - "OrganizationZipCode": "80026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Employer Health", - "NPIID": "", - "OrganizationZipCode": "46290" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Empower Rheumatology LLC", - "NPIID": "", - "OrganizationZipCode": "662232987" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endocrine and Thyroid", - "NPIID": "", - "OrganizationZipCode": "217032807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopic Anesthesia Group PA", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Associates Of Valley Forge LLC", - "NPIID": "", - "OrganizationZipCode": "194684278" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center At Meridian Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center Of El Paso", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center Of Red Bank", - "NPIID": "", - "OrganizationZipCode": "077012151" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center Of SE GA Inc", - "NPIID": "", - "OrganizationZipCode": "304751367" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center Of South Bay Anesthesia", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center Of Southeast Texas", - "NPIID": "", - "OrganizationZipCode": "777021112" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center of the Central Coast", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Endoscopy Center Of The Upstate", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ENPS", - "NPIID": "", - "OrganizationZipCode": "191827446" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ENT And Allergy Associates LLP", - "NPIID": "", - "OrganizationZipCode": "106025001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Enterprise Admin", - "NPIID": "", - "OrganizationZipCode": "93060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Enterprise Medical", - "NPIID": "", - "OrganizationZipCode": "62933" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Enterprise Practice", - "NPIID": "", - "OrganizationZipCode": "85745" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EPIC Surgery Center", - "NPIID": "", - "OrganizationZipCode": "64196" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Equinox Health \u0026 Healing", - "NPIID": "", - "OrganizationZipCode": "03801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Erdey Searcy Eye Group", - "NPIID": "", - "OrganizationZipCode": "432132129" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ERgent Care", - "NPIID": "", - "OrganizationZipCode": "322184897" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eric Cwynar DPM", - "NPIID": "", - "OrganizationZipCode": "430818039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eric Edward Holt MD", - "NPIID": "", - "OrganizationZipCode": "711352244" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eric Enriquez MD Family Practice", - "NPIID": "", - "OrganizationZipCode": "902601589" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eric Gross MD", - "NPIID": "", - "OrganizationZipCode": "92544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Erie County General Health District", - "NPIID": "", - "OrganizationZipCode": "448701849" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Erika Lahav MD", - "NPIID": "", - "OrganizationZipCode": "180177475" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Escondido Anesthesia Associates LP", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Espiritu And Espiritu MD PA", - "NPIID": "", - "OrganizationZipCode": "349721911" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Esse Health", - "NPIID": "", - "OrganizationZipCode": "631563340" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Esse Health", - "NPIID": "", - "OrganizationZipCode": "631563340" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Essential Healthcare Group CA", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Essential Healthcare Group CT", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Essential Healthcare Group DE", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Essential Healthcare Group OR", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Essential Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "900173904" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Essex Endoscopy Center LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Essex Specialized Surgical Institute", - "NPIID": "", - "OrganizationZipCode": "07052" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eugene Pak M.D. P.A.", - "NPIID": "", - "OrganizationZipCode": "763015003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Everett Bone And Joint", - "NPIID": "", - "OrganizationZipCode": "982014261" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Everett Bone And Joint Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "982014261" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Evergreen Eye Center", - "NPIID": "", - "OrganizationZipCode": "980038714" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Evergreen Surgical Clinic", - "NPIID": "", - "OrganizationZipCode": "981041172" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Excel Eye Center", - "NPIID": "", - "OrganizationZipCode": "846041010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Excel Physicians Med Corp", - "NPIID": "", - "OrganizationZipCode": "92688" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Express Care In New Albany", - "NPIID": "", - "OrganizationZipCode": "601974728" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Extended Arm Physicians Inc", - "NPIID": "", - "OrganizationZipCode": "361061509" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Extended Care Clinical Services LLC", - "NPIID": "", - "OrganizationZipCode": "396012460" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates", - "NPIID": "", - "OrganizationZipCode": "18914" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates Northwest", - "NPIID": "", - "OrganizationZipCode": "981041340" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates Of Colorado Springs PC", - "NPIID": "", - "OrganizationZipCode": "809091193" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates Of New Mexico", - "NPIID": "", - "OrganizationZipCode": "871990550" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates Of New Mexico Optical", - "NPIID": "", - "OrganizationZipCode": "871990550" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates Of Southern Indiana", - "NPIID": "", - "OrganizationZipCode": "47130" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates Of Tallahassee", - "NPIID": "", - "OrganizationZipCode": "323084599" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates Surgery Center", - "NPIID": "", - "OrganizationZipCode": "982748752" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "255269701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Associates Inc", - "NPIID": "", - "OrganizationZipCode": "445021818" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Associates PC", - "NPIID": "", - "OrganizationZipCode": "05753" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Center Of Lake County Ltd", - "NPIID": "", - "OrganizationZipCode": "600315708" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Centers", - "NPIID": "", - "OrganizationZipCode": "302604106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Physicians and Surgeons", - "NPIID": "", - "OrganizationZipCode": "973024245" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Surgery Center Of Memphis LLC", - "NPIID": "", - "OrganizationZipCode": "381193699" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Surgery Center Of Olive Branch", - "NPIID": "", - "OrganizationZipCode": "386541922" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Care Surgery Center Of Southaven LLC", - "NPIID": "", - "OrganizationZipCode": "386715138" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Center Of Northern Colorado PC", - "NPIID": "", - "OrganizationZipCode": "80525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Consultants Of PA PC", - "NPIID": "", - "OrganizationZipCode": "196101992" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Guys Carolina LLC", - "NPIID": "", - "OrganizationZipCode": "298036055" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Health Center", - "NPIID": "", - "OrganizationZipCode": "121831280" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Institute At Boswell", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Medical Center of Fresno", - "NPIID": "", - "OrganizationZipCode": "901894935" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Partners P.C.", - "NPIID": "", - "OrganizationZipCode": "363012039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Physicians And Surgeons Of Augusta", - "NPIID": "", - "OrganizationZipCode": "30909" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Physicians And Surgeons LLP", - "NPIID": "", - "OrganizationZipCode": "522459565" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Physicians Of Florida", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Physicians of Orange County PC", - "NPIID": "", - "OrganizationZipCode": "109246753" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Physicians Of Sussex County", - "NPIID": "", - "OrganizationZipCode": "078609601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Specialists", - "NPIID": "", - "OrganizationZipCode": "473043988" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EYE SPECIALISTS OF ILLINOIS S C", - "NPIID": "", - "OrganizationZipCode": "600680577" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Specialists Surgery Centers LLC", - "NPIID": "", - "OrganizationZipCode": "473043988" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgeons Associates", - "NPIID": "", - "OrganizationZipCode": "527221650" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery and Laser Center", - "NPIID": "", - "OrganizationZipCode": "338804126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center At The Biltmore", - "NPIID": "", - "OrganizationZipCode": "850164874" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of Albany", - "NPIID": "", - "OrganizationZipCode": "31701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of Augusta", - "NPIID": "", - "OrganizationZipCode": "30909" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of Colorado", - "NPIID": "", - "OrganizationZipCode": "800313809" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of East Tennessee", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of Hinsdale", - "NPIID": "", - "OrganizationZipCode": "605218609" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of Maryville", - "NPIID": "", - "OrganizationZipCode": "620625672" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of Northern CA", - "NPIID": "", - "OrganizationZipCode": "956214700" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center Of The Desert LTD", - "NPIID": "", - "OrganizationZipCode": "922707118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center- The Cliffs", - "NPIID": "", - "OrganizationZipCode": "641802719" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eye Surgery Center-Northland", - "NPIID": "", - "OrganizationZipCode": "641843301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EyeCare \u0026 SurgeryCenterFtLauderdale", - "NPIID": "", - "OrganizationZipCode": "331342616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EyeCare 20 20", - "NPIID": "", - "OrganizationZipCode": "079363104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EyeCare Associates Of Texas P.A.", - "NPIID": "", - "OrganizationZipCode": "751043529" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EyeHealth Eastside Surgery Center", - "NPIID": "", - "OrganizationZipCode": "970867667" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EyeHealth Northwest", - "NPIID": "", - "OrganizationZipCode": "97222" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "EyeOne And RetinaCare Of Virginia", - "NPIID": "", - "OrganizationZipCode": "22939" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Eyesthetica", - "NPIID": "", - "OrganizationZipCode": "900132271" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ezra Medical Center", - "NPIID": "", - "OrganizationZipCode": "112183612" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fairbanks Memorial Cardiology Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "997015998" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fairfield Community Health Center", - "NPIID": "", - "OrganizationZipCode": "431304056" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fallon Health Weinberg-PACE", - "NPIID": "", - "OrganizationZipCode": "142289999" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family And Childrens Clinic", - "NPIID": "", - "OrganizationZipCode": "786266814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Assoc Med Group Inc", - "NPIID": "", - "OrganizationZipCode": "917903456" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Care Center Quitman", - "NPIID": "", - "OrganizationZipCode": "757832541" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Care Centers", - "NPIID": "", - "OrganizationZipCode": "926598699" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Care Partners", - "NPIID": "", - "OrganizationZipCode": "322772042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care Center", - "NPIID": "", - "OrganizationZipCode": "304610845" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care Centers Of Greater LA", - "NPIID": "", - "OrganizationZipCode": "902011805" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care Of Cissna Park", - "NPIID": "", - "OrganizationZipCode": "609249710" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care Of Fairbury", - "NPIID": "", - "OrganizationZipCode": "617398998" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care of Hoopeston", - "NPIID": "", - "OrganizationZipCode": "609421904" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care Of Mahomet", - "NPIID": "", - "OrganizationZipCode": "618538126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care Of Post Falls PLLC", - "NPIID": "", - "OrganizationZipCode": "838546728" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Care Of Watseka", - "NPIID": "", - "OrganizationZipCode": "609701584" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Center", - "NPIID": "", - "OrganizationZipCode": "10701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Center Of Worcester", - "NPIID": "", - "OrganizationZipCode": "016102473" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Center Sandpoint", - "NPIID": "", - "OrganizationZipCode": "838641594" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Clinic Of Barnes Kasson Ho", - "NPIID": "", - "OrganizationZipCode": "188471615" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Clinic Of Farmer City", - "NPIID": "", - "OrganizationZipCode": "618429488" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Health Services", - "NPIID": "", - "OrganizationZipCode": "833016856" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Healthcare Of Fisher", - "NPIID": "", - "OrganizationZipCode": "61843" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Healthcare Of Gibson City", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Healthcare Of Hagerstown", - "NPIID": "", - "OrganizationZipCode": "21740" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Healthcare Of Potomac", - "NPIID": "", - "OrganizationZipCode": "618650167" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Healthcare Partners", - "NPIID": "", - "OrganizationZipCode": "437014650" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family HealthCenter", - "NPIID": "", - "OrganizationZipCode": "027206009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Med Assoc Of Northridge Inc", - "NPIID": "", - "OrganizationZipCode": "913254187" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Medicine", - "NPIID": "", - "OrganizationZipCode": "683550399" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Medicine Specialists PC", - "NPIID": "", - "OrganizationZipCode": "524012134" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Planning", - "NPIID": "", - "OrganizationZipCode": "851470130" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Planning Associates Medical Group", - "NPIID": "", - "OrganizationZipCode": "92423" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Practice Associates", - "NPIID": "", - "OrganizationZipCode": "92345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Practice Associates", - "NPIID": "", - "OrganizationZipCode": "92345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Practice Associates", - "NPIID": "", - "OrganizationZipCode": "92345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Practice Associates", - "NPIID": "", - "OrganizationZipCode": "800218299" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Practice Of Centrastate", - "NPIID": "", - "OrganizationZipCode": "07728" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Family Tree Clinic", - "NPIID": "", - "OrganizationZipCode": "554033747" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fariborz David Satey MD Inc", - "NPIID": "", - "OrganizationZipCode": "935513891" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fariborz David Satey MD Inc", - "NPIID": "", - "OrganizationZipCode": "935513891" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FAUQUIER ENT CONSULTANTS", - "NPIID": "", - "OrganizationZipCode": "201863027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FAUQUIER MEDICAL ASSOCIATES", - "NPIID": "", - "OrganizationZipCode": "227129374" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fauquier Physician's Network", - "NPIID": "", - "OrganizationZipCode": "201863026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fauzia Khan MD Inc", - "NPIID": "", - "OrganizationZipCode": "910078513" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Feather River Tribal Health", - "NPIID": "", - "OrganizationZipCode": "959655870" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Feminist Womens Health Center", - "NPIID": "", - "OrganizationZipCode": "30329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Firehouse Diabetes and Endocrine Center", - "NPIID": "", - "OrganizationZipCode": "973024345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "First Care Clinic", - "NPIID": "", - "OrganizationZipCode": "67601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "First Coast Nephrology", - "NPIID": "", - "OrganizationZipCode": "322772042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "First State Orthopaedics PA", - "NPIID": "", - "OrganizationZipCode": "197131387" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fisher Pediatric Clinic", - "NPIID": "", - "OrganizationZipCode": "700723154" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fishers Specialty Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "460370087" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Flatiron Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "800279742" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Flex Physical Therapy LLC", - "NPIID": "", - "OrganizationZipCode": "515035288" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Flora Physicians PLLC", - "NPIID": "", - "OrganizationZipCode": "390719515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Florida Lung Asthma Sleep Specialists PA", - "NPIID": "", - "OrganizationZipCode": "347460000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Florida Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "33613" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Florida Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "33613" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Florida Retina And Vitreous Center P A", - "NPIID": "", - "OrganizationZipCode": "328146435" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Florida Spine Specialists", - "NPIID": "", - "OrganizationZipCode": "333082226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Florida Spine Specialists Boca", - "NPIID": "", - "OrganizationZipCode": "334316461" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Florida Vision Institute Inc", - "NPIID": "", - "OrganizationZipCode": "349944512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FMH Pain Clinic", - "NPIID": "", - "OrganizationZipCode": "62837" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FMH Surgery Clinic", - "NPIID": "", - "OrganizationZipCode": "62837" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fogg Remington EyeCare", - "NPIID": "", - "OrganizationZipCode": "937203326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Folsom Anesthesia LP", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Folsom Sierra Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fond du Lac HSD Purchased Referred Care", - "NPIID": "", - "OrganizationZipCode": "557201345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fond du Lac Human Services Division", - "NPIID": "", - "OrganizationZipCode": "557201345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foot \u0026 Ankle Surgeons Of Oklahoma", - "NPIID": "", - "OrganizationZipCode": "731141430" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foot And Ankle", - "NPIID": "", - "OrganizationZipCode": "462801099" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Cardiology Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "91107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "841216924" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Eye Medical Group", - "NPIID": "", - "OrganizationZipCode": "917404726" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Pediatric \u0026 Adolescent Clinic", - "NPIID": "", - "OrganizationZipCode": "917733200" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Primary Care Inc", - "NPIID": "", - "OrganizationZipCode": "910101713" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Pulmonary And Critical Care", - "NPIID": "", - "OrganizationZipCode": "91106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Urology Associates", - "NPIID": "", - "OrganizationZipCode": "911053283" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothill Vascular Center", - "NPIID": "", - "OrganizationZipCode": "911061934" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foothills Health And Wellness Center", - "NPIID": "", - "OrganizationZipCode": "403128981" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Forefront Dermatology S.C.", - "NPIID": "", - "OrganizationZipCode": "542204630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Forefront Dermatology-West P.C.", - "NPIID": "", - "OrganizationZipCode": "542204630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Forensics", - "NPIID": "", - "OrganizationZipCode": "37877" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Forest Hills Pediatrics", - "NPIID": "", - "OrganizationZipCode": "452640809" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fort Bend Rheumatology Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "774793794" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fort Lauderdale Eye Institute LLC", - "NPIID": "", - "OrganizationZipCode": "333243118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fort Smith Rheumatology PC", - "NPIID": "", - "OrganizationZipCode": "729032574" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fort Wayne Orthopaedics LLC", - "NPIID": "", - "OrganizationZipCode": "468044133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fort Wayne Vascular Care", - "NPIID": "", - "OrganizationZipCode": "468044159" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fort Worth OBH", - "NPIID": "", - "OrganizationZipCode": "761044110" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fort Worth OBH", - "NPIID": "", - "OrganizationZipCode": "761044110" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Forty Fort Anesthesia Associates LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Foundation For Advanced Eye Care", - "NPIID": "", - "OrganizationZipCode": "33351" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Four Seasons Compassion For Life", - "NPIID": "", - "OrganizationZipCode": "28731" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fox Cities Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "54911" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FPS Medical Center Ltd", - "NPIID": "", - "OrganizationZipCode": "864036526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FQHC of Lane County", - "NPIID": "", - "OrganizationZipCode": "974773413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Franck Juste MD", - "NPIID": "", - "OrganizationZipCode": "917802160" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frank DiLeo MD Practice Of Ophthalmology", - "NPIID": "", - "OrganizationZipCode": "119693059" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Franklin Primary Health Center Inc", - "NPIID": "", - "OrganizationZipCode": "366522048" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fred Galluccio MD \u0026 Assoc Inc", - "NPIID": "", - "OrganizationZipCode": "926605514" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "217045236" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "217014546" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Health Care Management", - "NPIID": "", - "OrganizationZipCode": "217014586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Health Dental Clinic", - "NPIID": "", - "OrganizationZipCode": "217014942" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Ho MD A Prof. Corp.", - "NPIID": "", - "OrganizationZipCode": "91101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Int Med \u0026 Endo Services", - "NPIID": "", - "OrganizationZipCode": "217024371" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Lee MD", - "NPIID": "", - "OrganizationZipCode": "911071448" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick OB GYN Ambulatory", - "NPIID": "", - "OrganizationZipCode": "212791208" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frederick Pediatric Associates", - "NPIID": "", - "OrganizationZipCode": "217024427" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fredericktown", - "NPIID": "", - "OrganizationZipCode": "430191266" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Freeway Surgery Center", - "NPIID": "", - "OrganizationZipCode": "705053916" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fresenius Vascular Care Augusta LLC", - "NPIID": "", - "OrganizationZipCode": "309011017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fresenius Vascular Care Lansing MSO LLC", - "NPIID": "", - "OrganizationZipCode": "489173101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fresno American Indian Health Project", - "NPIID": "", - "OrganizationZipCode": "937108025" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frid Family Practice AF", - "NPIID": "", - "OrganizationZipCode": "922624418" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frid Family Practice GF", - "NPIID": "", - "OrganizationZipCode": "922624418" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frisco Cardio And Vascular Care", - "NPIID": "", - "OrganizationZipCode": "750927399" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Front Range Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "802294318" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Frontera Healthcare Network", - "NPIID": "", - "OrganizationZipCode": "768379998" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FSS KEYS", - "NPIID": "", - "OrganizationZipCode": "330404084" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ft Bend Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "774792648" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Furlong Vision Correction", - "NPIID": "", - "OrganizationZipCode": "95131" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Furman Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "911053283" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fusion MedSpa LLC", - "NPIID": "", - "OrganizationZipCode": "76132" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Fusion Women's Health And Wellness PLLC", - "NPIID": "", - "OrganizationZipCode": "76132" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC Beverly", - "NPIID": "", - "OrganizationZipCode": "019156115" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC Dayton Vascular", - "NPIID": "", - "OrganizationZipCode": "454391648" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC Greenville", - "NPIID": "", - "OrganizationZipCode": "278347826" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC Lenoir", - "NPIID": "", - "OrganizationZipCode": "286455463" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC Petersburg LLC", - "NPIID": "", - "OrganizationZipCode": "238342970" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC Raleigh", - "NPIID": "", - "OrganizationZipCode": "276102989" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC South Florida LLC", - "NPIID": "", - "OrganizationZipCode": "331767217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "FVC Tampa LLC", - "NPIID": "", - "OrganizationZipCode": "336370935" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gabrielle Schoeppner MD", - "NPIID": "", - "OrganizationZipCode": "18045" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GAH Cosmedics", - "NPIID": "", - "OrganizationZipCode": "609361054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GAH ENT And Urology", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GAH Neurology", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GAH Pulmonology", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gahanna Pediatrics", - "NPIID": "", - "OrganizationZipCode": "432304575" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GAHHS Outpatient Clinic", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GAHHS Urology", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gailey Eye Clinic LTD", - "NPIID": "", - "OrganizationZipCode": "617011784" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gailey Eye Surgery - Decatur LLC", - "NPIID": "", - "OrganizationZipCode": "625261633" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Galloway Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gamini Hethumuni MD", - "NPIID": "", - "OrganizationZipCode": "917761236" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GAPHO", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Garbis Kassabian MD Inc", - "NPIID": "", - "OrganizationZipCode": "913451255" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gardner Family Care Corp", - "NPIID": "", - "OrganizationZipCode": "951125807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gardner Family Health Network", - "NPIID": "", - "OrganizationZipCode": "95002" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Garfield Health Center", - "NPIID": "", - "OrganizationZipCode": "917541746" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Garner Dermatology", - "NPIID": "", - "OrganizationZipCode": "750431571" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Garrison Family Physicians PC", - "NPIID": "", - "OrganizationZipCode": "802262843" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gary D Wikholm MD A PC", - "NPIID": "", - "OrganizationZipCode": "930603223" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gary Sugarman MD Inc", - "NPIID": "", - "OrganizationZipCode": "926535517" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastro Diag Ctr Of MPLS Inc", - "NPIID": "", - "OrganizationZipCode": "55486" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastro Diagnostics Of Northern NJ", - "NPIID": "", - "OrganizationZipCode": "074242610" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastrodiagnostics A Medical Group", - "NPIID": "", - "OrganizationZipCode": "92868" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastroenterology And Hepatology Special", - "NPIID": "", - "OrganizationZipCode": "447182878" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "296156321" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "911053283" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastroenterology Center Of Connecticut", - "NPIID": "", - "OrganizationZipCode": "065183694" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gastrointestinal Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "480845435" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gateway Cardiology P.C.", - "NPIID": "", - "OrganizationZipCode": "631600001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gayle P Harrell LLC", - "NPIID": "", - "OrganizationZipCode": "392020001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GELA Aesthetics", - "NPIID": "", - "OrganizationZipCode": "08809" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Geminus", - "NPIID": "", - "OrganizationZipCode": "464106385" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Genesee Community Health Center", - "NPIID": "", - "OrganizationZipCode": "485032404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gentry Haughton LLC", - "NPIID": "", - "OrganizationZipCode": "711355237" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "George C Yu MD Inc", - "NPIID": "", - "OrganizationZipCode": "930101430" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "George C Yu MD Inc", - "NPIID": "", - "OrganizationZipCode": "930101430" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Georgia Clinic PC", - "NPIID": "", - "OrganizationZipCode": "300768224" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Georgia Eye Institute Of The Southeast", - "NPIID": "", - "OrganizationZipCode": "314046292" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Georgia Eye Institute Surgery Center", - "NPIID": "", - "OrganizationZipCode": "314046292" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Georgia Urology ASC", - "NPIID": "", - "OrganizationZipCode": "30253" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Georgia Urology PA", - "NPIID": "", - "OrganizationZipCode": "302533924" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gerald J Alexander MD", - "NPIID": "", - "OrganizationZipCode": "92603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gerardo B Martin Inc", - "NPIID": "", - "OrganizationZipCode": "919142655" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gerry Medical Center", - "NPIID": "", - "OrganizationZipCode": "323442060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gerstein Eye Institute", - "NPIID": "", - "OrganizationZipCode": "606593729" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Get Fit Get Healthy", - "NPIID": "", - "OrganizationZipCode": "46526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Getwell Family Medicine", - "NPIID": "", - "OrganizationZipCode": "38133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GI Healthcare LLC", - "NPIID": "", - "OrganizationZipCode": "334013520" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibbon", - "NPIID": "", - "OrganizationZipCode": "838544979" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Family Medicine", - "NPIID": "", - "OrganizationZipCode": "609361422" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Hospital Cardiology", - "NPIID": "", - "OrganizationZipCode": "609362004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Hospital General Surgery", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Hospital Orthopaedics", - "NPIID": "", - "OrganizationZipCode": "609362009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Hospital Pain Clinic", - "NPIID": "", - "OrganizationZipCode": "609362009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Hospital Therapy", - "NPIID": "", - "OrganizationZipCode": "609362004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "609361463" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Medical Clinic 8", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson Area Primary Care", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson City Clinic", - "NPIID": "", - "OrganizationZipCode": "609361345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gibson City Weekend Clinic", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gila Eyecare Inc", - "NPIID": "", - "OrganizationZipCode": "880614847" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Glaucoma Associates Of Texas", - "NPIID": "", - "OrganizationZipCode": "752312161" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Glaucoma Center Of Texas", - "NPIID": "", - "OrganizationZipCode": "752315025" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GLAUCOMA INSTITUTE OF AUSTIN PA", - "NPIID": "", - "OrganizationZipCode": "787598961" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Glendora Anesthesia Associates LP", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Glendora Digestive Disease Institute", - "NPIID": "", - "OrganizationZipCode": "917405421" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Glendora Pediatric Medical Group", - "NPIID": "", - "OrganizationZipCode": "917414269" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Glennville Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "304272206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Glenview Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "853015481" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GNP Home Visit", - "NPIID": "", - "OrganizationZipCode": "926607706" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Golden Plains Specialty Clinics", - "NPIID": "", - "OrganizationZipCode": "79007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Golden Spring Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "917894817" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Golden State Orthopedics And Spine", - "NPIID": "", - "OrganizationZipCode": "945985906" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Golden State Orthopedics and Spine", - "NPIID": "", - "OrganizationZipCode": "950321418" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gonzales Healthcare Systems", - "NPIID": "", - "OrganizationZipCode": "786293311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gonzales Medical Group", - "NPIID": "", - "OrganizationZipCode": "92586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Good Shepherd Rehabilitation Network", - "NPIID": "", - "OrganizationZipCode": "181033308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Goodman Campbell Brain And Spine", - "NPIID": "", - "OrganizationZipCode": "46032" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gopal Govindarajan MD", - "NPIID": "", - "OrganizationZipCode": "900171102" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Goshen Center For Cancer Care", - "NPIID": "", - "OrganizationZipCode": "46527" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Goshen Hospital", - "NPIID": "", - "OrganizationZipCode": "46527" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Goshen Physicians", - "NPIID": "", - "OrganizationZipCode": "46527" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Governors Place Ambulatory Surgery Ctr", - "NPIID": "", - "OrganizationZipCode": "454091330" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Govindarajan MDs Inc", - "NPIID": "", - "OrganizationZipCode": "906404316" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GR Health And Wellness Center", - "NPIID": "", - "OrganizationZipCode": "973479712" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grace Community Health Center", - "NPIID": "", - "OrganizationZipCode": "40734" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grace Family Health Inc.", - "NPIID": "", - "OrganizationZipCode": "925624010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grace Health", - "NPIID": "", - "OrganizationZipCode": "490372963" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grand Health Partners", - "NPIID": "", - "OrganizationZipCode": "495466113" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grand Traverse Ophthalmology Clinic", - "NPIID": "", - "OrganizationZipCode": "496868683" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Granite Peaks Endoscopy", - "NPIID": "", - "OrganizationZipCode": "840924328" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Granite Peaks Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "840924328" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grant Bexley Family Practice", - "NPIID": "", - "OrganizationZipCode": "43209" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grantsville - Mtn Laurel", - "NPIID": "", - "OrganizationZipCode": "21536" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Graybill Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "92025" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Graystone Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "286024031" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Graystone Ophthalmology Associates PA", - "NPIID": "", - "OrganizationZipCode": "286024031" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Great Lakes Center Of Rheumatology", - "NPIID": "", - "OrganizationZipCode": "489114285" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Great Lakes Orthopaedic Center", - "NPIID": "", - "OrganizationZipCode": "496848965" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Great Neck Vascular", - "NPIID": "", - "OrganizationZipCode": "110225302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Great River Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "564411665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Family Health", - "NPIID": "", - "OrganizationZipCode": "601203759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Houston Psychiatric Associates", - "NPIID": "", - "OrganizationZipCode": "770812226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Nashville MFM", - "NPIID": "", - "OrganizationZipCode": "372031960" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Nashville MFM", - "NPIID": "", - "OrganizationZipCode": "372031960" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Nashville Perinatology", - "NPIID": "", - "OrganizationZipCode": "371676838" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Nashville Perinatology", - "NPIID": "", - "OrganizationZipCode": "371676838" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Newport Physicians Discharge CL", - "NPIID": "", - "OrganizationZipCode": "927087300" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater NY Ophthalmology Care", - "NPIID": "", - "OrganizationZipCode": "11377" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Philadelphia Health Action Inc", - "NPIID": "", - "OrganizationZipCode": "191463506" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Pittsburgh Surgery Access LLC", - "NPIID": "", - "OrganizationZipCode": "150253728" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Pittsburgh Surgery LLC", - "NPIID": "", - "OrganizationZipCode": "150253728" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greater Portland Health", - "NPIID": "", - "OrganizationZipCode": "041022957" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Green County Primary Care", - "NPIID": "", - "OrganizationZipCode": "42743" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Green Spring Station Endoscopy", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Green Surgery Center", - "NPIID": "", - "OrganizationZipCode": "370663694" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenfield", - "NPIID": "", - "OrganizationZipCode": "46140" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenport Prenatal", - "NPIID": "", - "OrganizationZipCode": "11944" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenville Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "296156321" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenville ENT And Allergy Associates PA", - "NPIID": "", - "OrganizationZipCode": "296054266" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenville Rancheria", - "NPIID": "", - "OrganizationZipCode": "959470279" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenwich Medical P.C", - "NPIID": "", - "OrganizationZipCode": "801126014" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenwood Leflore Clinic Network", - "NPIID": "", - "OrganizationZipCode": "389351410" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Greenwood Rheumatology", - "NPIID": "", - "OrganizationZipCode": "296468031" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gregory C Mays MD PLC", - "NPIID": "", - "OrganizationZipCode": "244261273" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gregory Delost MD", - "NPIID": "", - "OrganizationZipCode": "609360525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gregory Delost MD \u0026 Mark Spangler MD", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gregory Eye Associates Inc", - "NPIID": "", - "OrganizationZipCode": "711352311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gregory J Withers MD INC", - "NPIID": "", - "OrganizationZipCode": "910071504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grene Laser", - "NPIID": "", - "OrganizationZipCode": "67206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grene Vision Group", - "NPIID": "", - "OrganizationZipCode": "67206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GRHC Ambulatory", - "NPIID": "", - "OrganizationZipCode": "851470130" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GRHC Behavioral Health", - "NPIID": "", - "OrganizationZipCode": "851470130" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gronholz DO M Jill", - "NPIID": "", - "OrganizationZipCode": "838142643" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Group One", - "NPIID": "", - "OrganizationZipCode": "462781631" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Grove City Pediatrics", - "NPIID": "", - "OrganizationZipCode": "43123" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Growth Unlimited Prof LLC", - "NPIID": "", - "OrganizationZipCode": "80538" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Guilford Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Guilherme R Carvalho MD Inc", - "NPIID": "", - "OrganizationZipCode": "925434441" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Guillermo Valenzuela MD PA", - "NPIID": "", - "OrganizationZipCode": "333242736" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gulf Coast Endoscopy Center South", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gulf Coast OB Hospitalist", - "NPIID": "", - "OrganizationZipCode": "770541906" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gulf Coast OB Hospitalist", - "NPIID": "", - "OrganizationZipCode": "770541906" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gulf States Physical Med Rehab", - "NPIID": "", - "OrganizationZipCode": "392022459" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gulfcoast Spine Institute", - "NPIID": "", - "OrganizationZipCode": "336075724" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gunderson Orthopedics LLC", - "NPIID": "", - "OrganizationZipCode": "73116" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Guth MD Leonard D", - "NPIID": "", - "OrganizationZipCode": "838159143" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gwinnett Medical Group", - "NPIID": "", - "OrganizationZipCode": "303686156" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "GYN Feminist Womens Health Center", - "NPIID": "", - "OrganizationZipCode": "303292421" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gyn Oncology Specialists", - "NPIID": "", - "OrganizationZipCode": "90027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gynecologic And Reconstructive Surgery", - "NPIID": "", - "OrganizationZipCode": "63141" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Gynecologic Oncology Associates", - "NPIID": "", - "OrganizationZipCode": "92707" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "H Kolli MD Medical Corp-Wildomar", - "NPIID": "", - "OrganizationZipCode": "925959458" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hadia Ashraf MD", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hale Kealaokekoa", - "NPIID": "", - "OrganizationZipCode": "96792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hall Canter MD", - "NPIID": "", - "OrganizationZipCode": "437839555" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hallandale Out Patient Surgical Center", - "NPIID": "", - "OrganizationZipCode": "33009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hamilton County", - "NPIID": "", - "OrganizationZipCode": "460382616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hampden Medical Group", - "NPIID": "", - "OrganizationZipCode": "801132620" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hampton Care Center", - "NPIID": "", - "OrganizationZipCode": "11968" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hampton Family Practice", - "NPIID": "", - "OrganizationZipCode": "088272535" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hampton Roads Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "236666080" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hampton Roads Ortho Spine And Sports Med", - "NPIID": "", - "OrganizationZipCode": "236064562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hani I Salib MD", - "NPIID": "", - "OrganizationZipCode": "922624434" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hanson Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "910079258" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hany K Zaki M D Inc", - "NPIID": "", - "OrganizationZipCode": "911061907" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Harford Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Harman Eye Center/Dominion Eye Center", - "NPIID": "", - "OrganizationZipCode": "245411680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Harold Gillespie MD", - "NPIID": "", - "OrganizationZipCode": "437839555" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Harris And Batra Cardiology", - "NPIID": "", - "OrganizationZipCode": "90017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Harvard Eye Associates", - "NPIID": "", - "OrganizationZipCode": "926533625" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hassan A. Kobaissi DPM", - "NPIID": "", - "OrganizationZipCode": "907022053" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hawthorne Eye Associates PA", - "NPIID": "", - "OrganizationZipCode": "271032932" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hayco LLC", - "NPIID": "", - "OrganizationZipCode": "396010027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hayden Lake Family Physicians", - "NPIID": "", - "OrganizationZipCode": "838358752" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Head And Neck Assoc Of Orange County", - "NPIID": "", - "OrganizationZipCode": "92691" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Health On Tucson", - "NPIID": "", - "OrganizationZipCode": "85702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Health Solutions Medical", - "NPIID": "", - "OrganizationZipCode": "810011633" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HealthPoint", - "NPIID": "", - "OrganizationZipCode": "980572908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HealthQare ASC", - "NPIID": "", - "OrganizationZipCode": "222015792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HealthReach Community Health Centers", - "NPIID": "", - "OrganizationZipCode": "049030727" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HealthSource Of Ohio", - "NPIID": "", - "OrganizationZipCode": "451406966" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HealthWorks CC", - "NPIID": "", - "OrganizationZipCode": "93401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HealthWorks CC", - "NPIID": "", - "OrganizationZipCode": "93401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Healthy Brain Network", - "NPIID": "", - "OrganizationZipCode": "10311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Healthy Transitions", - "NPIID": "", - "OrganizationZipCode": "983639472" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heart Center Of North Texas PA", - "NPIID": "", - "OrganizationZipCode": "761043915" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heart Center Of North Texas PA", - "NPIID": "", - "OrganizationZipCode": "761043915" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heart Center Of Southern Maryland LLP", - "NPIID": "", - "OrganizationZipCode": "206023234" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heart Center PC", - "NPIID": "", - "OrganizationZipCode": "02601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heart Institute Of East Texas P.A.", - "NPIID": "", - "OrganizationZipCode": "759043133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heart Of Illinois OB GYN", - "NPIID": "", - "OrganizationZipCode": "617017910" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heartland Health Center Inc.", - "NPIID": "", - "OrganizationZipCode": "688031334" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heartland Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "635011443" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heartmasters Medical Associates PC", - "NPIID": "", - "OrganizationZipCode": "207351628" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heaton Eye Associates", - "NPIID": "", - "OrganizationZipCode": "757018355" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heaton Laser And Surgery Center", - "NPIID": "", - "OrganizationZipCode": "757018355" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HEIDI MAYER OD", - "NPIID": "", - "OrganizationZipCode": "16504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hemant Upadhyaya MD", - "NPIID": "", - "OrganizationZipCode": "910304994" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hematology Oncology Center", - "NPIID": "", - "OrganizationZipCode": "46280" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hematology Oncology Specialists", - "NPIID": "", - "OrganizationZipCode": "922704457" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hemchand Kolli MD", - "NPIID": "", - "OrganizationZipCode": "925434445" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heme Diagnostic Specialists PLLC", - "NPIID": "", - "OrganizationZipCode": "391109789" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hendrick Clinic Bone \u0026 Joint", - "NPIID": "", - "OrganizationZipCode": "752621025" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Her Health OB/GYN", - "NPIID": "", - "OrganizationZipCode": "432193676" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Herbert H. Lee MD MPH. Inc.", - "NPIID": "", - "OrganizationZipCode": "926183174" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heritage Health", - "NPIID": "", - "OrganizationZipCode": "838142785" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heritage Victor Valley Medical Group", - "NPIID": "", - "OrganizationZipCode": "92395" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Heritage Victor Valley Medical Group", - "NPIID": "", - "OrganizationZipCode": "92395" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Herr Kostic Medical Group", - "NPIID": "", - "OrganizationZipCode": "922039215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Herrera \u0026 Obeso Medical Group", - "NPIID": "", - "OrganizationZipCode": "917903999" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "High Country Family Care", - "NPIID": "", - "OrganizationZipCode": "855414972" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "High Desert Heart Vascular Institute", - "NPIID": "", - "OrganizationZipCode": "923955794" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "High Desert Medical Group", - "NPIID": "", - "OrganizationZipCode": "935397007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "High Desert Medical Group- Occ Med", - "NPIID": "", - "OrganizationZipCode": "93539" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Highland Clinic Pharmacy LLC", - "NPIID": "", - "OrganizationZipCode": "71105" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Highland Clinic APMC", - "NPIID": "", - "OrganizationZipCode": "71105" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Highland Medical PC", - "NPIID": "", - "OrganizationZipCode": "109601912" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hill Country Maternal Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "78759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hill Country Maternal Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "78759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hilliard", - "NPIID": "", - "OrganizationZipCode": "43026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hillsboro Eye Clinic PC", - "NPIID": "", - "OrganizationZipCode": "971234137" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hilltop", - "NPIID": "", - "OrganizationZipCode": "432042645" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hinsdale Eye Center LLC", - "NPIID": "", - "OrganizationZipCode": "605214013" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HM Medical Inc A Professional Medical C", - "NPIID": "", - "OrganizationZipCode": "926633658" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HMC Access", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HMG Community Clinic", - "NPIID": "", - "OrganizationZipCode": "935345505" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HMG Health Care", - "NPIID": "", - "OrganizationZipCode": "935345505" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HMG Health Care", - "NPIID": "", - "OrganizationZipCode": "935345505" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HMM Reports", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hoag Clinic GOA", - "NPIID": "", - "OrganizationZipCode": "92707" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Holland Eye Clinic PC", - "NPIID": "", - "OrganizationZipCode": "494237722" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Holston Medical Group", - "NPIID": "", - "OrganizationZipCode": "37664" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Holy Cross Health Network Practices", - "NPIID": "", - "OrganizationZipCode": "20910" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Holy Trinity Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "907101156" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Holyoke Health Center Inc.", - "NPIID": "", - "OrganizationZipCode": "010405140" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HOMETOWN Health Center", - "NPIID": "", - "OrganizationZipCode": "049534056" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Honor Community Health", - "NPIID": "", - "OrganizationZipCode": "483430150" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hope Clinic", - "NPIID": "", - "OrganizationZipCode": "751653827" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hope Family Medicine Inc", - "NPIID": "", - "OrganizationZipCode": "973811946" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hope Orthopedics Of Oregon", - "NPIID": "", - "OrganizationZipCode": "973014257" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hopen And Wolfe MDS LLC", - "NPIID": "", - "OrganizationZipCode": "33021" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Horizon Eye Care", - "NPIID": "", - "OrganizationZipCode": "082260000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Horizon Healthcare", - "NPIID": "", - "OrganizationZipCode": "62837" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hosp Based POC-Pediatrix Medical Of Tx", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hospice of Rockingham County", - "NPIID": "", - "OrganizationZipCode": "27320" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hospital Care Specialists LLC", - "NPIID": "", - "OrganizationZipCode": "19382" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hospitalists/Meeting House Lane Medical", - "NPIID": "", - "OrganizationZipCode": "118025545" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hough Pediatrics LLP", - "NPIID": "", - "OrganizationZipCode": "790653615" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houser Newman Associates", - "NPIID": "", - "OrganizationZipCode": "18252" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houston ENT Clinic", - "NPIID": "", - "OrganizationZipCode": "752650823" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houston Hearing Center", - "NPIID": "", - "OrganizationZipCode": "77074" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houston Multispecialty Surgical Practice", - "NPIID": "", - "OrganizationZipCode": "770541947" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houston NW OBH", - "NPIID": "", - "OrganizationZipCode": "773384217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houston NW OBH", - "NPIID": "", - "OrganizationZipCode": "773384217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houston Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "770542945" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Houston Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "770542945" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Howerton Eye Clinic PLLC", - "NPIID": "", - "OrganizationZipCode": "787045703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Howerton Surgical Center LLC", - "NPIID": "", - "OrganizationZipCode": "787045703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Howsden Dermatology", - "NPIID": "", - "OrganizationZipCode": "750428241" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HQA Arlington", - "NPIID": "", - "OrganizationZipCode": "222031774" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HRA3", - "NPIID": "", - "OrganizationZipCode": "37921" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HSC Health", - "NPIID": "", - "OrganizationZipCode": "761072699" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "HSVS Outpatient Mental Health", - "NPIID": "", - "OrganizationZipCode": "11201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hugh S Nasr MD FACP FACE", - "NPIID": "", - "OrganizationZipCode": "922624434" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hull Eye Center", - "NPIID": "", - "OrganizationZipCode": "935342703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Human Skills And Resources", - "NPIID": "", - "OrganizationZipCode": "74114" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Adult Hospitalists Service", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Behavioral Health", - "NPIID": "", - "OrganizationZipCode": "088224600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Breast Surgery Center", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Cancer Services", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Cardiology", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Cardiovascular Associates", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Center For Dermatology", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Center Healthy Aging", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Digestive Health Specialists", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Endosurgery Center", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Branchburg", - "NPIID": "", - "OrganizationZipCode": "088763929" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Bridgewater", - "NPIID": "", - "OrganizationZipCode": "08807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Cornerstone", - "NPIID": "", - "OrganizationZipCode": "088224677" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Delaware Valley", - "NPIID": "", - "OrganizationZipCode": "088481329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Hickory Run", - "NPIID": "", - "OrganizationZipCode": "07830" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Highlands", - "NPIID": "", - "OrganizationZipCode": "088274001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Phillips Barber", - "NPIID": "", - "OrganizationZipCode": "085302200" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med At Riverfield", - "NPIID": "", - "OrganizationZipCode": "088092005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Med Your Doctors Care", - "NPIID": "", - "OrganizationZipCode": "088444142" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Physicians", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Practice And Obstetrics", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Family Sports Med At Hopewell", - "NPIID": "", - "OrganizationZipCode": "085343605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon First Surgical", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Hematology Oncology", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Infectious Disease Specialists", - "NPIID": "", - "OrganizationZipCode": "088224600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Internal Medicine Associates", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Med Ctr Home Health Services", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Medical Assoc At Long Valley", - "NPIID": "", - "OrganizationZipCode": "078536222" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Medical Assoc Whitehouse Sta", - "NPIID": "", - "OrganizationZipCode": "088893696" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Medical Associates Flemington", - "NPIID": "", - "OrganizationZipCode": "088221154" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Neonatal Pediatrics", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Neurology", - "NPIID": "", - "OrganizationZipCode": "088010121" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Otolaryngology Associates", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Palliative Care", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Pediatric Associates", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Pelvic Health Program", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Physical Occupational Therapy", - "NPIID": "", - "OrganizationZipCode": "08807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Podiatric Medicine", - "NPIID": "", - "OrganizationZipCode": "088224600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Pulmonary And Critical Care", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Regional Cancer Center", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Sleep Pulmonary And Neurology", - "NPIID": "", - "OrganizationZipCode": "088224677" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Urgent Care PC", - "NPIID": "", - "OrganizationZipCode": "088221627" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hunterdon Urological Associates", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Huntington Family Medicine", - "NPIID": "", - "OrganizationZipCode": "911053132" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Huntington HealthCare", - "NPIID": "", - "OrganizationZipCode": "911053154" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Huntington Perinatal Medical Group", - "NPIID": "", - "OrganizationZipCode": "911053042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Huntington Plaza Pediatrics", - "NPIID": "", - "OrganizationZipCode": "911053151" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Huron County Public Health", - "NPIID": "", - "OrganizationZipCode": "448572480" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Huron Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "481978632" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hypertension Nephrology", - "NPIID": "", - "OrganizationZipCode": "190901332" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hypertension Nephrology Associates ASC", - "NPIID": "", - "OrganizationZipCode": "190901332" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Hyun Jim Cho MD", - "NPIID": "", - "OrganizationZipCode": "922116100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "I Henawi MD Inc.", - "NPIID": "", - "OrganizationZipCode": "925455279" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "I Hsiung Chen MD", - "NPIID": "", - "OrganizationZipCode": "925434530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ibrahim Hanna MD Inc", - "NPIID": "", - "OrganizationZipCode": "917412456" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "IC Laser Eye Care", - "NPIID": "", - "OrganizationZipCode": "190202815" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ICAM", - "NPIID": "", - "OrganizationZipCode": "79106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Idaho Arthritis Center", - "NPIID": "", - "OrganizationZipCode": "836425510" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Identity Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "93010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Illinois College Of Optometry", - "NPIID": "", - "OrganizationZipCode": "606163878" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Image ASC", - "NPIID": "", - "OrganizationZipCode": "070837980" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Image Guided Surgery Aesthetics", - "NPIID": "", - "OrganizationZipCode": "070837980" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Imaging Partners Of St Peters LLC", - "NPIID": "", - "OrganizationZipCode": "633761690" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "IMC Health LLC", - "NPIID": "", - "OrganizationZipCode": "330147803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Immediate Care", - "NPIID": "", - "OrganizationZipCode": "217014586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Impel Management Services L.L.C.", - "NPIID": "", - "OrganizationZipCode": "761990411" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "In Focus Ophthalmic Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "92562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "IN Specialists", - "NPIID": "", - "OrganizationZipCode": "462801099" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Independent Billing Services", - "NPIID": "", - "OrganizationZipCode": "75711" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Indian Health Council", - "NPIID": "", - "OrganizationZipCode": "920825338" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Indiana Kidney Institute", - "NPIID": "", - "OrganizationZipCode": "462022211" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Indiana Surgery And Vascular Center", - "NPIID": "", - "OrganizationZipCode": "462022211" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Indianapolis Lab", - "NPIID": "", - "OrganizationZipCode": "462801099" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Infants And Toddlers Program", - "NPIID": "", - "OrganizationZipCode": "208521428" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Infectious Disease Specialists SC", - "NPIID": "", - "OrganizationZipCode": "530054858" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Infinity Health", - "NPIID": "", - "OrganizationZipCode": "501441206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Infinity Primary Care", - "NPIID": "", - "OrganizationZipCode": "482673135" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Infusion For Health", - "NPIID": "", - "OrganizationZipCode": "913611019" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Inland Empire Allergy LLC", - "NPIID": "", - "OrganizationZipCode": "838144960" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Inland Eye Specialists", - "NPIID": "", - "OrganizationZipCode": "925629054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Inland Eye Specialists Surgery Centers", - "NPIID": "", - "OrganizationZipCode": "925629054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Inland Faculty Specialists A California", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Inland Northwest Foot And Ankle", - "NPIID": "", - "OrganizationZipCode": "838545218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Inland Valley Retina Medical Assoc Inc", - "NPIID": "", - "OrganizationZipCode": "925903403" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Innercare", - "NPIID": "", - "OrganizationZipCode": "922438511" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Innovative Dermatology", - "NPIID": "", - "OrganizationZipCode": "750244236" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Innovative Infusions", - "NPIID": "", - "OrganizationZipCode": "753793658" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Innovative Vein", - "NPIID": "", - "OrganizationZipCode": "67206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Inpatient Services", - "NPIID": "", - "OrganizationZipCode": "027206009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "InSight Vision Center Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "937203326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Institute For Womens Health", - "NPIID": "", - "OrganizationZipCode": "782325055" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Integra Health Services", - "NPIID": "", - "OrganizationZipCode": "711353032" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Integrated Anesthesia Services", - "NPIID": "", - "OrganizationZipCode": "850164701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Integrated Behavioral Health Specialists", - "NPIID": "", - "OrganizationZipCode": "21701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Integrated Family Services", - "NPIID": "", - "OrganizationZipCode": "278342841" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Integrative Arthritis Pain Consultants", - "NPIID": "", - "OrganizationZipCode": "275344536" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Integrative Health", - "NPIID": "", - "OrganizationZipCode": "31792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Integrative Sports Medicine LLC", - "NPIID": "", - "OrganizationZipCode": "80525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Intensive Treatment Systems", - "NPIID": "", - "OrganizationZipCode": "850241825" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Intensivist Group", - "NPIID": "", - "OrganizationZipCode": "711352244" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Intermountain Medical Center", - "NPIID": "", - "OrganizationZipCode": "84118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Internal Medicine Associates Of Raleigh", - "NPIID": "", - "OrganizationZipCode": "27612" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Internal Medicine Physicians of Newport", - "NPIID": "", - "OrganizationZipCode": "926595277" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "International Healing Ministries", - "NPIID": "", - "OrganizationZipCode": "189513266" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Interventional Cardiology Consultants", - "NPIID": "", - "OrganizationZipCode": "317926616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "INTERVENTIONAL NEPHROLOGY OF KC LLC", - "NPIID": "", - "OrganizationZipCode": "661031393" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Interventional Nephrology Specialists", - "NPIID": "", - "OrganizationZipCode": "381044205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Interventional Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "41017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Iowa Arthritis And Osteoporosis Center", - "NPIID": "", - "OrganizationZipCode": "503227356" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Iowa Eye Center", - "NPIID": "", - "OrganizationZipCode": "52402" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Iowa Ortho", - "NPIID": "", - "OrganizationZipCode": "503143045" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "IPN EHR Read Only Denver Heart", - "NPIID": "", - "OrganizationZipCode": "80027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ira Liebross MD", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Irina Jasper M D", - "NPIID": "", - "OrganizationZipCode": "91106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Irma Y Gonzalez MD", - "NPIID": "", - "OrganizationZipCode": "91106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Irvine Family Care", - "NPIID": "", - "OrganizationZipCode": "926041741" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Irvine Internal Medical Group", - "NPIID": "", - "OrganizationZipCode": "926590120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Isaac Beshay MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926272501" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Isabella Citizens For Health Inc", - "NPIID": "", - "OrganizationZipCode": "488586934" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Isabella Citizens For Health Inc", - "NPIID": "", - "OrganizationZipCode": "488586934" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Island Eye Surgicenter (Business Office)", - "NPIID": "", - "OrganizationZipCode": "115302124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Island OBGYN", - "NPIID": "", - "OrganizationZipCode": "92660" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Islands Community Medical Services", - "NPIID": "", - "OrganizationZipCode": "048634119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Issac Haddad MD Inc", - "NPIID": "", - "OrganizationZipCode": "911074444" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ivy Springs Medical Care Inc", - "NPIID": "", - "OrganizationZipCode": "92562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Iyad A. Kashow MD LTD", - "NPIID": "", - "OrganizationZipCode": "60061" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "J A L Santos MD Inc", - "NPIID": "", - "OrganizationZipCode": "928055821" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "J Dean Cole MD LLC", - "NPIID": "", - "OrganizationZipCode": "328044601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "J E Hartley Turpin MD", - "NPIID": "", - "OrganizationZipCode": "926282982" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "J F McGuckin MD Of MD PA Waldorf", - "NPIID": "", - "OrganizationZipCode": "206023250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "J Raymond Li MD", - "NPIID": "", - "OrganizationZipCode": "905051908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "J. Walter Sledge MD PLLC", - "NPIID": "", - "OrganizationZipCode": "374043208" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jackson Bone And Joint", - "NPIID": "", - "OrganizationZipCode": "392020001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jackson Neurosurgery Clinic", - "NPIID": "", - "OrganizationZipCode": "392329779" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jackson Pain Center P A", - "NPIID": "", - "OrganizationZipCode": "392022053" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jacksonville ASC", - "NPIID": "", - "OrganizationZipCode": "322184604" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jacksonville Center For Endoscopy", - "NPIID": "", - "OrganizationZipCode": "328917249" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jacksonville OBH", - "NPIID": "", - "OrganizationZipCode": "322078202" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jacksonville OBH Practice", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jai Hyon Rho M D PH D", - "NPIID": "", - "OrganizationZipCode": "911053206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jail", - "NPIID": "", - "OrganizationZipCode": "37757" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jaime C. Lim M.D. PLLC", - "NPIID": "", - "OrganizationZipCode": "763015003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jaime L Vivas MD", - "NPIID": "", - "OrganizationZipCode": "319048837" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "James K Hester MD PA", - "NPIID": "", - "OrganizationZipCode": "398283139" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "James Song MD Inc", - "NPIID": "", - "OrganizationZipCode": "917485502" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "James W Sikes Jr DMD MD LLC", - "NPIID": "", - "OrganizationZipCode": "711055634" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "James Wasson MD PC", - "NPIID": "", - "OrganizationZipCode": "180642715" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jasmeet Gill MD Inc", - "NPIID": "", - "OrganizationZipCode": "910077602" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jasmine L Ramos MD FAAP", - "NPIID": "", - "OrganizationZipCode": "922603549" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jatinder Chopra MD", - "NPIID": "", - "OrganizationZipCode": "932742243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jatinder Chopra MD", - "NPIID": "", - "OrganizationZipCode": "932742243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Javed Ahmad A Professional Medical Corp", - "NPIID": "", - "OrganizationZipCode": "922015590" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jax Anesthesia Providers LLC", - "NPIID": "", - "OrganizationZipCode": "322566004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jay J Lin MD", - "NPIID": "", - "OrganizationZipCode": "913031885" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "JayKumar Shah MD", - "NPIID": "", - "OrganizationZipCode": "910077387" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "JCMC", - "NPIID": "", - "OrganizationZipCode": "285466328" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "JD Health and Wellness Center LLC", - "NPIID": "", - "OrganizationZipCode": "973175643" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jean W Bardenheier M D", - "NPIID": "", - "OrganizationZipCode": "917024747" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jeff Carls MD Family Medicine", - "NPIID": "", - "OrganizationZipCode": "864035602" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jefferson County Orthopaedics", - "NPIID": "", - "OrganizationZipCode": "63028" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jeffrey S Stephens M.D. P.A.", - "NPIID": "", - "OrganizationZipCode": "750326308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jeffrey VanMeter MD", - "NPIID": "", - "OrganizationZipCode": "437839570" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jeffries Eye Clinic PA", - "NPIID": "", - "OrganizationZipCode": "727588013" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jennifer T. McGaughy DO PA", - "NPIID": "", - "OrganizationZipCode": "79070" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jennifer Wang MD", - "NPIID": "", - "OrganizationZipCode": "925433814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jilin Bai MD Professional Corporation", - "NPIID": "", - "OrganizationZipCode": "91350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jilin Bai MD Professional Corporation", - "NPIID": "", - "OrganizationZipCode": "91350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jim C Kim MD Inc", - "NPIID": "", - "OrganizationZipCode": "933013634" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "JMD Family Practice", - "NPIID": "", - "OrganizationZipCode": "088224600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jo Lynn Polk MD", - "NPIID": "", - "OrganizationZipCode": "39206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joe Chung MD", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joel M Corwin MD AMC", - "NPIID": "", - "OrganizationZipCode": "93003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joey Brett MD APMC", - "NPIID": "", - "OrganizationZipCode": "91423" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "John A Sturges MD PA", - "NPIID": "", - "OrganizationZipCode": "838142606" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "John G Miller MD", - "NPIID": "", - "OrganizationZipCode": "926633301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "John J Kaminski MD", - "NPIID": "", - "OrganizationZipCode": "03842" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "John Kenyon American Eye Institute LLC", - "NPIID": "", - "OrganizationZipCode": "471503620" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Johns Creek Gastroenterology PC", - "NPIID": "", - "OrganizationZipCode": "300103133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Johnson County", - "NPIID": "", - "OrganizationZipCode": "461319199" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joint And Muscle Medical Care PC", - "NPIID": "", - "OrganizationZipCode": "282043130" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jon L Schrock MD", - "NPIID": "", - "OrganizationZipCode": "930601343" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jonas And Ziskind", - "NPIID": "", - "OrganizationZipCode": "193011755" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jonathan H Wheeler MD", - "NPIID": "", - "OrganizationZipCode": "92663" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jonathan P Gale DO Inc", - "NPIID": "", - "OrganizationZipCode": "92546" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joon Y Kim MD PC", - "NPIID": "", - "OrganizationZipCode": "302604106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jordan Valley Community Health Center", - "NPIID": "", - "OrganizationZipCode": "658061131" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jordi X Kellogg MD PC", - "NPIID": "", - "OrganizationZipCode": "970863756" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jorge Martinez MD", - "NPIID": "", - "OrganizationZipCode": "92563" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Jorge R Lopez MD", - "NPIID": "", - "OrganizationZipCode": "917704236" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joseph Ford MD Inc", - "NPIID": "", - "OrganizationZipCode": "905035800" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joseph J Pachorek MD FACP", - "NPIID": "", - "OrganizationZipCode": "911053283" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joseph Li MD", - "NPIID": "", - "OrganizationZipCode": "911053023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joseph M Lavi MD", - "NPIID": "", - "OrganizationZipCode": "91355" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joshua R Cason Limited APMC", - "NPIID": "", - "OrganizationZipCode": "711353032" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Joslin Clinic", - "NPIID": "", - "OrganizationZipCode": "022155306" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Juan Mocega MD", - "NPIID": "", - "OrganizationZipCode": "902473583" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Judith E. Hogg MD PA", - "NPIID": "", - "OrganizationZipCode": "791592022" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Judy Huynh DO", - "NPIID": "", - "OrganizationZipCode": "92653" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Julie Copon DO", - "NPIID": "", - "OrganizationZipCode": "924677517" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "JWCH Institute Inc", - "NPIID": "", - "OrganizationZipCode": "900401482" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "K Greg Tomassian M D", - "NPIID": "", - "OrganizationZipCode": "917404335" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "K William Seeto MD", - "NPIID": "", - "OrganizationZipCode": "973024165" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kalamazoo Gastroenterology Hepatology", - "NPIID": "", - "OrganizationZipCode": "490481639" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kalamazoo Ophthalmology PC", - "NPIID": "", - "OrganizationZipCode": "490244624" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kalyani Eye Care LLC", - "NPIID": "", - "OrganizationZipCode": "210761213" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kalyani Randeria M D", - "NPIID": "", - "OrganizationZipCode": "906404317" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kandula Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "180177326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kane Hall Barry Neurology", - "NPIID": "", - "OrganizationZipCode": "760216066" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kansas City Physician Partners Inc", - "NPIID": "", - "OrganizationZipCode": "641113315" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kansas Urgent Care", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kanwaljit Gill MD Inc.", - "NPIID": "", - "OrganizationZipCode": "935514695" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kanwaljit Gill MD Inc.", - "NPIID": "", - "OrganizationZipCode": "935514695" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Karim HealthCare", - "NPIID": "", - "OrganizationZipCode": "49242" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Karing Hearts Cardiology", - "NPIID": "", - "OrganizationZipCode": "376043645" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kassamali And Associates", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kathleen Scarpulla MD", - "NPIID": "", - "OrganizationZipCode": "606344485" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Katzen Medical Associates", - "NPIID": "", - "OrganizationZipCode": "21093" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kay Lowney MD", - "NPIID": "", - "OrganizationZipCode": "471508548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "KCS Health Center", - "NPIID": "", - "OrganizationZipCode": "906214667" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kendall Endoscopy and Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kenneth G Lawlor DO PLLC", - "NPIID": "", - "OrganizationZipCode": "863057170" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kenneth J. Rosenthal MD PC", - "NPIID": "", - "OrganizationZipCode": "110232432" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kenneth K Wogensen MD INC", - "NPIID": "", - "OrganizationZipCode": "910067401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kenneth P. Zuckerman MD FACS", - "NPIID": "", - "OrganizationZipCode": "926634246" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kentuckiana Rheumatology", - "NPIID": "", - "OrganizationZipCode": "40202" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kentucky OBH Practice", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Key Clinics LLC", - "NPIID": "", - "OrganizationZipCode": "441242048" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Keystone College", - "NPIID": "", - "OrganizationZipCode": "184401000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Khalid B Khan MD", - "NPIID": "", - "OrganizationZipCode": "902505608" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kidney and Hypertension Center", - "NPIID": "", - "OrganizationZipCode": "452203027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kinston Community Health Center", - "NPIID": "", - "OrganizationZipCode": "285014932" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kirby Eye Center", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kiritkumar S Shah MD", - "NPIID": "", - "OrganizationZipCode": "91006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kishor Vachhani MD Inc", - "NPIID": "", - "OrganizationZipCode": "922015590" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kissimmee Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Klallam Counseling Services", - "NPIID": "", - "OrganizationZipCode": "983639472" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Klamath Tribal Health \u0026 Family Services", - "NPIID": "", - "OrganizationZipCode": "976246747" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kleiman Evangelista Eye Centers Of Texas", - "NPIID": "", - "OrganizationZipCode": "760181119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "KLM Ophthalmology", - "NPIID": "", - "OrganizationZipCode": "11230" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Knoxville Eye Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kokomo", - "NPIID": "", - "OrganizationZipCode": "469026400" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kokomo OB GYN", - "NPIID": "", - "OrganizationZipCode": "46901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kolli MD Inc.", - "NPIID": "", - "OrganizationZipCode": "92544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kolli Medical Corporation-Redlands", - "NPIID": "", - "OrganizationZipCode": "923744963" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kootenai Health", - "NPIID": "", - "OrganizationZipCode": "838146051" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kootenai Outpatient Surgery", - "NPIID": "", - "OrganizationZipCode": "838142772" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Krupa Shah MD", - "NPIID": "", - "OrganizationZipCode": "907322987" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kunesh Eye Center Inc", - "NPIID": "", - "OrganizationZipCode": "45419" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kunesh Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "454191604" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Kutztown University", - "NPIID": "", - "OrganizationZipCode": "19530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "L Gregory Tenn M D", - "NPIID": "", - "OrganizationZipCode": "913255603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Casa", - "NPIID": "", - "OrganizationZipCode": "881305703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Casa", - "NPIID": "", - "OrganizationZipCode": "881305703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Frontera EMPACT-SPC", - "NPIID": "", - "OrganizationZipCode": "852817248" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Jolla Anesthesia Associates LP", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Jolla Endoscopy Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Jolla Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Maestra Community Health Centers", - "NPIID": "", - "OrganizationZipCode": "921051608" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "La Maestra Social Determinants Of Health", - "NPIID": "", - "OrganizationZipCode": "921051608" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LA Orthopaedic Surgery Specialists", - "NPIID": "", - "OrganizationZipCode": "900332476" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lacy Coker Kessler MD PA", - "NPIID": "", - "OrganizationZipCode": "76712" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lafayette", - "NPIID": "", - "OrganizationZipCode": "479056656" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Country Orthopedics", - "NPIID": "", - "OrganizationZipCode": "838641702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Country Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "838641702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake County Health Department/CHC", - "NPIID": "", - "OrganizationZipCode": "60085" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Cumberland Rheumatology", - "NPIID": "", - "OrganizationZipCode": "425032813" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Forest Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "92630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Murray Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Park RBA", - "NPIID": "", - "OrganizationZipCode": "46405" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Pointe OBH", - "NPIID": "", - "OrganizationZipCode": "750884552" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lake Pointe OBH", - "NPIID": "", - "OrganizationZipCode": "750884552" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakeland ASC", - "NPIID": "", - "OrganizationZipCode": "392327607" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakeland Ophthalmology", - "NPIID": "", - "OrganizationZipCode": "07054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakeland Vascular Care", - "NPIID": "", - "OrganizationZipCode": "392327607" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakeshore Family Clinic", - "NPIID": "", - "OrganizationZipCode": "352461173" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakeside Community Healthcare", - "NPIID": "", - "OrganizationZipCode": "900748072" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakeside Community Healthcare", - "NPIID": "", - "OrganizationZipCode": "900748072" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakeside Surgery P.A.", - "NPIID": "", - "OrganizationZipCode": "750326308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lakewood Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "838142334" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lane County Medication Assisted Tx", - "NPIID": "", - "OrganizationZipCode": "974013451" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lara Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "913523951" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Laredo Endovascular", - "NPIID": "", - "OrganizationZipCode": "780416208" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Larry C Hughes MD", - "NPIID": "", - "OrganizationZipCode": "92545" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Las Vegas ASC", - "NPIID": "", - "OrganizationZipCode": "891289001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Laser \u0026 Skin Surgery Center Of New York", - "NPIID": "", - "OrganizationZipCode": "100164936" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Laser Eye Institute", - "NPIID": "", - "OrganizationZipCode": "480831210" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Laurel Cosmetic \u0026 Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "158252518" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Laurel Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "15825" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Laurel Health Centers", - "NPIID": "", - "OrganizationZipCode": "16901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Laurel Laser \u0026 Surgery Center", - "NPIID": "", - "OrganizationZipCode": "15825" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LAVAC Medical Group", - "NPIID": "", - "OrganizationZipCode": "903014503" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lebanon", - "NPIID": "", - "OrganizationZipCode": "460522792" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lebanon Pain Relief Center PC", - "NPIID": "", - "OrganizationZipCode": "452637665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lee Eye Center", - "NPIID": "", - "OrganizationZipCode": "445126244" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lee I Klein MD LLC", - "NPIID": "", - "OrganizationZipCode": "33322" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lee Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "445126244" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Eye Specialists", - "NPIID": "", - "OrganizationZipCode": "181036214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley ASC", - "NPIID": "", - "OrganizationZipCode": "180172167" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley Eye Center PC", - "NPIID": "", - "OrganizationZipCode": "181045052" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley Family Practice EPIC", - "NPIID": "", - "OrganizationZipCode": "18052" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley Physician Group", - "NPIID": "", - "OrganizationZipCode": "185032001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley Vascular", - "NPIID": "", - "OrganizationZipCode": "180172167" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley Vascular Institute (ASC)", - "NPIID": "", - "OrganizationZipCode": "180177801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley Vascular Institute (OBL)", - "NPIID": "", - "OrganizationZipCode": "180177801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lehigh Valley Womens Medical Specialties", - "NPIID": "", - "OrganizationZipCode": "181036207" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Leisure World HCC IPA", - "NPIID": "", - "OrganizationZipCode": "90740" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Leonard Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "973013890" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Levin Eye Care", - "NPIID": "", - "OrganizationZipCode": "212087101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lewes Spine Center", - "NPIID": "", - "OrganizationZipCode": "19971" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LH Primary Care Shoal Creek", - "NPIID": "", - "OrganizationZipCode": "641587612" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Liberty Cardiovascular Specialists", - "NPIID": "", - "OrganizationZipCode": "640683388" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Liberty Cataract Center LLC", - "NPIID": "", - "OrganizationZipCode": "640681045" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Liberty Hospital Physicians", - "NPIID": "", - "OrganizationZipCode": "640689625" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Liberty House", - "NPIID": "", - "OrganizationZipCode": "973016548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Liberty Spine and Pain Center PC", - "NPIID": "", - "OrganizationZipCode": "973024272" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LIFE Chiropractic Centers", - "NPIID": "", - "OrganizationZipCode": "30060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LIFE University Clinics", - "NPIID": "", - "OrganizationZipCode": "30060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lifeline Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lifeline Medical Associates LLC", - "NPIID": "", - "OrganizationZipCode": "079321020" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lifeline Pensacola LLC", - "NPIID": "", - "OrganizationZipCode": "325035201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lifeline Vascular Center Albany LLC", - "NPIID": "", - "OrganizationZipCode": "317072804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lifeline Vascular Ctr Niceville LLC", - "NPIID": "", - "OrganizationZipCode": "600611450" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lifespan Health", - "NPIID": "", - "OrganizationZipCode": "38372" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lilia Zamora M D", - "NPIID": "", - "OrganizationZipCode": "906404309" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Linda Alimadadian DO", - "NPIID": "", - "OrganizationZipCode": "926183176" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lisa K Flarey DO", - "NPIID": "", - "OrganizationZipCode": "437012841" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lisandro Quinones MD APC", - "NPIID": "", - "OrganizationZipCode": "906404320" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Livingston Community Health", - "NPIID": "", - "OrganizationZipCode": "953349593" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Livingston Vitreo Retinal Associates", - "NPIID": "", - "OrganizationZipCode": "070394802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LMG Family Practice PC", - "NPIID": "", - "OrganizationZipCode": "194465338" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LMG Family Practice PC Chiro", - "NPIID": "", - "OrganizationZipCode": "19446" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LO Eye Care", - "NPIID": "", - "OrganizationZipCode": "488231378" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Logan K Bundy MD", - "NPIID": "", - "OrganizationZipCode": "930151942" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Logan Laboratories", - "NPIID": "", - "OrganizationZipCode": "452637695" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Loh Ophthalmology Associates LLC", - "NPIID": "", - "OrganizationZipCode": "33143" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lomibao Rheumatology And Wellness Care", - "NPIID": "", - "OrganizationZipCode": "750884367" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lone Star Circle Of Care", - "NPIID": "", - "OrganizationZipCode": "786266814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lonestar Vein And Vascular Specialists", - "NPIID": "", - "OrganizationZipCode": "75243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Long Beach ASC", - "NPIID": "", - "OrganizationZipCode": "907065164" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Long Beach Surgery Center", - "NPIID": "", - "OrganizationZipCode": "908061736" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Long Beach Vascular", - "NPIID": "", - "OrganizationZipCode": "907065164" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Long Island Spine Specialists PC", - "NPIID": "", - "OrganizationZipCode": "117253131" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lorain County Health \u0026 Dentistry", - "NPIID": "", - "OrganizationZipCode": "440523409" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Los Barrios Unidos Community Clinic Inc", - "NPIID": "", - "OrganizationZipCode": "75212" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Loudonville Family Health", - "NPIID": "", - "OrganizationZipCode": "44842" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Louis A Stabile MD", - "NPIID": "", - "OrganizationZipCode": "922700744" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Louis J Arno MD", - "NPIID": "", - "OrganizationZipCode": "08876" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Louisiana Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Louisiana Pain Care LLC", - "NPIID": "", - "OrganizationZipCode": "71201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Louisville Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Louisville Endoscopy Center Ancillary", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Louisville Eye Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "37230" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lowell Anesthesia Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lower Elwha Health Department", - "NPIID": "", - "OrganizationZipCode": "983639472" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lower Lights Christian Health Cnt", - "NPIID": "", - "OrganizationZipCode": "432221359" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LSCC Georgetown Womens Center", - "NPIID": "", - "OrganizationZipCode": "786266814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lubbock Childrens Health Clinic", - "NPIID": "", - "OrganizationZipCode": "794522103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ludwick Eye Center", - "NPIID": "", - "OrganizationZipCode": "172014220" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ludwick Laser \u0026 Surgery Center", - "NPIID": "", - "OrganizationZipCode": "172014213" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lunceford Family Health Center", - "NPIID": "", - "OrganizationZipCode": "381338191" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Luther Mangoba MD", - "NPIID": "", - "OrganizationZipCode": "92562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LVC Outpatient Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "LVPG MATLV", - "NPIID": "", - "OrganizationZipCode": "181042351" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Lydia Aguilera MD", - "NPIID": "", - "OrganizationZipCode": "906403622" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "M. Hugh Bailey MD FACS", - "NPIID": "", - "OrganizationZipCode": "926633508" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mackool Eye Institute", - "NPIID": "", - "OrganizationZipCode": "111033901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Macoupin County Health Center", - "NPIID": "", - "OrganizationZipCode": "620331447" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MACT Health Board Inc", - "NPIID": "", - "OrganizationZipCode": "952220939" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Madison Healthplex And Sport Perf", - "NPIID": "", - "OrganizationZipCode": "391100001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Madison Medical Dermatology LLC", - "NPIID": "", - "OrganizationZipCode": "391107345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Madison Rheumatology", - "NPIID": "", - "OrganizationZipCode": "391107345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Madison Street Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "802065429" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MAE Physicians Surgery Center", - "NPIID": "", - "OrganizationZipCode": "392022413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Magella Medical Group Inc.", - "NPIID": "", - "OrganizationZipCode": "92868" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Magella Medical Group Inc.", - "NPIID": "", - "OrganizationZipCode": "92868" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mahesh Mehta MD PLLC", - "NPIID": "", - "OrganizationZipCode": "390837190" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mahmood Tahir MD", - "NPIID": "", - "OrganizationZipCode": "181023472" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mahomet Specialty Clinic", - "NPIID": "", - "OrganizationZipCode": "618538126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mahoning Valley ASC", - "NPIID": "", - "OrganizationZipCode": "18252" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mai Ching Chien MD", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Main Line Vascular Institute (ASC)", - "NPIID": "", - "OrganizationZipCode": "194063530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Main Line Vascular Institute (OBL)", - "NPIID": "", - "OrganizationZipCode": "194063530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MakrisMD LLC", - "NPIID": "", - "OrganizationZipCode": "605591382" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Malini Chintapalli DO APMC", - "NPIID": "", - "OrganizationZipCode": "711352244" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Managed Services", - "NPIID": "", - "OrganizationZipCode": "60606" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MANASSE HOWARD M MD", - "NPIID": "", - "OrganizationZipCode": "16502" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Manikanda Raja MD", - "NPIID": "", - "OrganizationZipCode": "925444632" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mann Eye Institute", - "NPIID": "", - "OrganizationZipCode": "770029749" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Manuel Arroyo MD", - "NPIID": "", - "OrganizationZipCode": "935344090" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Manuel Arroyo MD", - "NPIID": "", - "OrganizationZipCode": "935344090" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marc Community Resources", - "NPIID": "", - "OrganizationZipCode": "852014108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marc Henson MD PA", - "NPIID": "", - "OrganizationZipCode": "79106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marc J Goldberg MD LLC", - "NPIID": "", - "OrganizationZipCode": "33351" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Margaret Zdarzyl MD", - "NPIID": "", - "OrganizationZipCode": "912081446" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maria Jamiolkowski DO Inc.", - "NPIID": "", - "OrganizationZipCode": "437011833" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maria Susan A Buhay Maglunog MD", - "NPIID": "", - "OrganizationZipCode": "917903963" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marianne Tahl MD", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marias Healthcare Services Inc", - "NPIID": "", - "OrganizationZipCode": "594740990" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marie Therese Pean MD", - "NPIID": "", - "OrganizationZipCode": "913563533" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marimn Health Medical Center", - "NPIID": "", - "OrganizationZipCode": "838510388" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marin Community Clinics", - "NPIID": "", - "OrganizationZipCode": "949454569" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marion", - "NPIID": "", - "OrganizationZipCode": "469523415" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mariposa Community Health Center", - "NPIID": "", - "OrganizationZipCode": "850389661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mariposa Community Health Center", - "NPIID": "", - "OrganizationZipCode": "850389661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mark A. Newman MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926633505" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mark Ramirez MD", - "NPIID": "", - "OrganizationZipCode": "925434403" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mark S Springer MD PC", - "NPIID": "", - "OrganizationZipCode": "181069767" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marlowe D. Ross MD FCCP Inc", - "NPIID": "", - "OrganizationZipCode": "926485924" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marta Blesa MD", - "NPIID": "", - "OrganizationZipCode": "917802113" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Martin L Bassett MD PC", - "NPIID": "", - "OrganizationZipCode": "973024173" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MARTIN SIMMONS", - "NPIID": "", - "OrganizationZipCode": "16506" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marvin E Greenberg MD LLC", - "NPIID": "", - "OrganizationZipCode": "33321" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Marwan Edris MD", - "NPIID": "", - "OrganizationZipCode": "926535510" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mary Gomez Chambers DNP CNM RN", - "NPIID": "", - "OrganizationZipCode": "80222" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mary Minar DO", - "NPIID": "", - "OrganizationZipCode": "926481936" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mary Toft M.D. A Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "935343049" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mary Toft M.D. A Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "935343049" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MaryAnne Freeman Brndjar DO PC", - "NPIID": "", - "OrganizationZipCode": "180621120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maryland Endoscopy Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maryland Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maryland Eye Associates", - "NPIID": "", - "OrganizationZipCode": "206783145" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maryland Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "20850" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maryland Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "20850" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maryville", - "NPIID": "", - "OrganizationZipCode": "495256047" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Masland Associates Inc", - "NPIID": "", - "OrganizationZipCode": "170133697" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mason Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "11416" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Massachusetts Eye And Ear", - "NPIID": "", - "OrganizationZipCode": "02114" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Master Practice", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Master Practice", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Master Practice", - "NPIID": "", - "OrganizationZipCode": "322772042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Master Practice", - "NPIID": "", - "OrganizationZipCode": "39202" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Master Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Master Practice CBO Anesthesia", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mat Su Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "996545327" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maternal \u0026 Family Health Services", - "NPIID": "", - "OrganizationZipCode": "187011704" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maternal Fetal Diagnostic Center-Atlanta", - "NPIID": "", - "OrganizationZipCode": "30106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maternal Fetal Diagnostic Center-Atlanta", - "NPIID": "", - "OrganizationZipCode": "30106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maternal Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "079321020" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maternal Fetal Medicine Of SW Florida", - "NPIID": "", - "OrganizationZipCode": "339083671" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Maternal Fetal Medicine Of SW Florida", - "NPIID": "", - "OrganizationZipCode": "339083671" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MaternOhio Clinical Associates", - "NPIID": "", - "OrganizationZipCode": "452712353" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mathias Primary Care Associates Inc.", - "NPIID": "", - "OrganizationZipCode": "925433118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mathiesen Memorial Health Clinic", - "NPIID": "", - "OrganizationZipCode": "953279737" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Matthew Walker Comprehensive Health Ctr", - "NPIID": "", - "OrganizationZipCode": "372083050" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "May Street Surgi Center", - "NPIID": "", - "OrganizationZipCode": "088373267" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MBMC Clinics", - "NPIID": "", - "OrganizationZipCode": "539481931" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MBMC Psychiatrists", - "NPIID": "", - "OrganizationZipCode": "392022064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "McCannel Eye Surgery", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "McDow Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "900453807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "McFarland Healthcare Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "711052115" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "McKnight Eye Center P.C.", - "NPIID": "", - "OrganizationZipCode": "640681045" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "McLain Medical Assoc PC", - "NPIID": "", - "OrganizationZipCode": "352422602" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "McMinnville Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "971288862" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MCR DDD", - "NPIID": "", - "OrganizationZipCode": "852014108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Meadow Lane Surgery Center", - "NPIID": "", - "OrganizationZipCode": "346524005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Meadville Medical Center Family Planning", - "NPIID": "", - "OrganizationZipCode": "16335" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medac", - "NPIID": "", - "OrganizationZipCode": "284036161" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medallus Urgent Care", - "NPIID": "", - "OrganizationZipCode": "84003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Alcon", - "NPIID": "", - "OrganizationZipCode": "76134" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Bayer", - "NPIID": "", - "OrganizationZipCode": "07981" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Bechtel", - "NPIID": "", - "OrganizationZipCode": "99354" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At City Of Salem", - "NPIID": "", - "OrganizationZipCode": "973020000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Comcast", - "NPIID": "", - "OrganizationZipCode": "91502" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Commerce Casino", - "NPIID": "", - "OrganizationZipCode": "900402501" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At DC Juvenile Community Justice", - "NPIID": "", - "OrganizationZipCode": "97701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Deschutes Onsite Clinic", - "NPIID": "", - "OrganizationZipCode": "97701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Disney Fox", - "NPIID": "", - "OrganizationZipCode": "10036" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Dole Foods", - "NPIID": "", - "OrganizationZipCode": "953019998" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Encore Wire", - "NPIID": "", - "OrganizationZipCode": "75069" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Forest Productions", - "NPIID": "", - "OrganizationZipCode": "10013" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Genesisalkali", - "NPIID": "", - "OrganizationZipCode": "82935" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Hitachi Astemo Rock Spring Inc", - "NPIID": "", - "OrganizationZipCode": "30739" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Isleta Casino", - "NPIID": "", - "OrganizationZipCode": "871057469" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At LRRI", - "NPIID": "", - "OrganizationZipCode": "871175522" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At NBC Universal", - "NPIID": "", - "OrganizationZipCode": "91608" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Novartis", - "NPIID": "", - "OrganizationZipCode": "972285990" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At PHP", - "NPIID": "", - "OrganizationZipCode": "871076832" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At QPP", - "NPIID": "", - "OrganizationZipCode": "55912" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Rivian Automotives", - "NPIID": "", - "OrganizationZipCode": "61702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Royal Caribbean", - "NPIID": "", - "OrganizationZipCode": "331322096" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Sabre", - "NPIID": "", - "OrganizationZipCode": "76009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Shields Bag And Printing", - "NPIID": "", - "OrganizationZipCode": "98902" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Synchrony", - "NPIID": "", - "OrganizationZipCode": "32714" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At ViacomCBS", - "NPIID": "", - "OrganizationZipCode": "10036" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Warner Bros", - "NPIID": "", - "OrganizationZipCode": "91522" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor At Yellowstone", - "NPIID": "", - "OrganizationZipCode": "82190" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor Corporate Clinic", - "NPIID": "", - "OrganizationZipCode": "60050" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medcor Default Clinic", - "NPIID": "", - "OrganizationZipCode": "82190" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MedEye Associates", - "NPIID": "", - "OrganizationZipCode": "331435188" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Advanced Pain Specialists PA", - "NPIID": "", - "OrganizationZipCode": "55433" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Associates Of Cambridge Inc", - "NPIID": "", - "OrganizationZipCode": "437251162" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Associates Of Cambridge Inc", - "NPIID": "", - "OrganizationZipCode": "437251162" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Care Coordination", - "NPIID": "", - "OrganizationZipCode": "112015705" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Care Of NY PC", - "NPIID": "", - "OrganizationZipCode": "11212" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Care of Tennessee PLLC", - "NPIID": "", - "OrganizationZipCode": "38104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Center Endoscopy Group", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Center Urology PA", - "NPIID": "", - "OrganizationZipCode": "27262" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Clinic Of North Texas PLLC", - "NPIID": "", - "OrganizationZipCode": "750382229" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Eye Associates PA", - "NPIID": "", - "OrganizationZipCode": "278932788" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Genetics BCHP", - "NPIID": "", - "OrganizationZipCode": "10595" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Group (RHC) Of WCH", - "NPIID": "", - "OrganizationZipCode": "62263" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Group of Mitchell County", - "NPIID": "", - "OrganizationZipCode": "317301410" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Medical Home Primary Care Center", - "NPIID": "", - "OrganizationZipCode": "437016455" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mednax Pediatric Developmental Services", - "NPIID": "", - "OrganizationZipCode": "891440515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mednax Pediatric Developmental Services", - "NPIID": "", - "OrganizationZipCode": "891440515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MedStar Medical Group-Southern MD LLC", - "NPIID": "", - "OrganizationZipCode": "206364871" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Meeting House Lane Medical Practice PC", - "NPIID": "", - "OrganizationZipCode": "118025545" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Melbourne Maternal Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "329013235" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Melbourne Maternal Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "329013235" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Melinda J Hiscock MD PA", - "NPIID": "", - "OrganizationZipCode": "790653418" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Memorial Heart Institute LLC", - "NPIID": "", - "OrganizationZipCode": "374041127" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Memphis Plan", - "NPIID": "", - "OrganizationZipCode": "38104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Memphis Primary Care Specialist", - "NPIID": "", - "OrganizationZipCode": "38133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mendocino Coast Clinics", - "NPIID": "", - "OrganizationZipCode": "954370205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Menifee Global MSG - Haun Road", - "NPIID": "", - "OrganizationZipCode": "925866547" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Menifee Global MSG - Tahl", - "NPIID": "", - "OrganizationZipCode": "925444711" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mercy Behavioral Care", - "NPIID": "", - "OrganizationZipCode": "511021836" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mercy Clinics", - "NPIID": "", - "OrganizationZipCode": "504021849" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mercy Medical Services", - "NPIID": "", - "OrganizationZipCode": "511020328" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mercy Specialty Clinic - Clinton", - "NPIID": "", - "OrganizationZipCode": "52732" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Meridian Health Services", - "NPIID": "", - "OrganizationZipCode": "473043988" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Meridian HealthCare", - "NPIID": "", - "OrganizationZipCode": "44509" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Meridian Oncology Assoc PLLC", - "NPIID": "", - "OrganizationZipCode": "39301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Merrillville Pain Relief Center PC", - "NPIID": "", - "OrganizationZipCode": "452637569" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Meskwaki Tribal Health Center", - "NPIID": "", - "OrganizationZipCode": "52339" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Methodist Sports Medicine Center", - "NPIID": "", - "OrganizationZipCode": "402322160" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metro Anesthesia \u0026 Pain Management LLP", - "NPIID": "", - "OrganizationZipCode": "50266" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MetroEast Healthcare Limited", - "NPIID": "", - "OrganizationZipCode": "620625839" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metrolina ASC", - "NPIID": "", - "OrganizationZipCode": "282080000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metrolina Vascular", - "NPIID": "", - "OrganizationZipCode": "282072027" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Access Center", - "NPIID": "", - "OrganizationZipCode": "207221948" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "191243846" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Nephrology Associates 2", - "NPIID": "", - "OrganizationZipCode": "191243846" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Nephrology Associates ASC", - "NPIID": "", - "OrganizationZipCode": "191243808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Nephrology Associates ASC 2", - "NPIID": "", - "OrganizationZipCode": "191243808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Pediatric Specialists", - "NPIID": "", - "OrganizationZipCode": "554352186" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Metropolitan Pediatrics", - "NPIID": "", - "OrganizationZipCode": "554352186" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MFHS Nurse Family Partnership", - "NPIID": "", - "OrganizationZipCode": "18701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MFI", - "NPIID": "", - "OrganizationZipCode": "92504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MGA Gastro Diag And Therap Ctr Metairie", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MGA Gastro Diag And Therapeutic Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MHP Internal Medicine Associates", - "NPIID": "", - "OrganizationZipCode": "217024337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mi Doctora Medical Clinic MD Inc", - "NPIID": "", - "OrganizationZipCode": "900573121" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Miami ASC", - "NPIID": "", - "OrganizationZipCode": "331562703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Miami County", - "NPIID": "", - "OrganizationZipCode": "46970" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Micha Abeles MD \u0026 Aryeh Abeles MD", - "NPIID": "", - "OrganizationZipCode": "064504350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michael A Randolph MD PC", - "NPIID": "", - "OrganizationZipCode": "212183384" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michael Curley MD", - "NPIID": "", - "OrganizationZipCode": "925628117" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michael E Green", - "NPIID": "", - "OrganizationZipCode": "370663694" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michael Fisher DO", - "NPIID": "", - "OrganizationZipCode": "42431" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michael J Lemmers MD", - "NPIID": "", - "OrganizationZipCode": "973811934" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michiana Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "466351557" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michigan Head And Spine Institute", - "NPIID": "", - "OrganizationZipCode": "480345744" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michigan Healthcare Professionals", - "NPIID": "", - "OrganizationZipCode": "483343292" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michigan Kidney Consultants", - "NPIID": "", - "OrganizationZipCode": "483104005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michigan Lung And Sleep Specialists PLC", - "NPIID": "", - "OrganizationZipCode": "48154" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Michigan Physicians Group PC", - "NPIID": "", - "OrganizationZipCode": "480721413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MICI of Lehigh Valley", - "NPIID": "", - "OrganizationZipCode": "180177801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MICI of Main Line", - "NPIID": "", - "OrganizationZipCode": "194063530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MICI of Philadelphia", - "NPIID": "", - "OrganizationZipCode": "191043007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid America Rheumatology Consultants PA", - "NPIID": "", - "OrganizationZipCode": "662093749" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid Atlantic Eye Physicians", - "NPIID": "", - "OrganizationZipCode": "27870" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid City Pediatrics", - "NPIID": "", - "OrganizationZipCode": "452363669" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid County Orthopaedic Surgery", - "NPIID": "", - "OrganizationZipCode": "63141" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid Iowa Fertility", - "NPIID": "", - "OrganizationZipCode": "50325" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid Tennessee Bone And Joint Clinic", - "NPIID": "", - "OrganizationZipCode": "384012754" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid-Atlantic Rheumatology LLC", - "NPIID": "", - "OrganizationZipCode": "211082659" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Middletown Eye Physicians PLC", - "NPIID": "", - "OrganizationZipCode": "402233936" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Middletown Valley Family Medicine", - "NPIID": "", - "OrganizationZipCode": "217698043" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MidJersey Orthopaedics", - "NPIID": "", - "OrganizationZipCode": "088224671" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid-South Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mid-South Heart Center PC", - "NPIID": "", - "OrganizationZipCode": "383013947" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MID-SOUTH PULMONARY AND SLEEP SPECIALIST", - "NPIID": "", - "OrganizationZipCode": "381570800" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midtown Health Center", - "NPIID": "", - "OrganizationZipCode": "687015248" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midway Clinic", - "NPIID": "", - "OrganizationZipCode": "675472329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midwest Eye Center ASC", - "NPIID": "", - "OrganizationZipCode": "604095415" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midwest Eye Centers", - "NPIID": "", - "OrganizationZipCode": "604095415" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midwest Maternal Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "631418265" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midwest Maternal Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "631418265" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midwest Retina Inc", - "NPIID": "", - "OrganizationZipCode": "430168214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midwest Spine \u0026 Brain Institute LLC", - "NPIID": "", - "OrganizationZipCode": "550827615" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Midwestern University Eye Institute", - "NPIID": "", - "OrganizationZipCode": "853085251" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mihoko M Nelsen MD", - "NPIID": "", - "OrganizationZipCode": "836695012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mikael K Hakansson MD", - "NPIID": "", - "OrganizationZipCode": "93015" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mike S McFarland MD PA", - "NPIID": "", - "OrganizationZipCode": "716034774" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mikio Tachibana MD", - "NPIID": "", - "OrganizationZipCode": "927087510" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Milauskas Eye Institute", - "NPIID": "", - "OrganizationZipCode": "922701791" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mill Creek Family Clinic Inc", - "NPIID": "", - "OrganizationZipCode": "973024372" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Millennium Physicians Association", - "NPIID": "", - "OrganizationZipCode": "773396009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Miller Heights Medical Associates", - "NPIID": "", - "OrganizationZipCode": "180205863" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Miller MD J Bayard", - "NPIID": "", - "OrganizationZipCode": "838732233" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Miller Orthopedic Specialists", - "NPIID": "", - "OrganizationZipCode": "515034619" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Milton L Kolchins MD Inc", - "NPIID": "", - "OrganizationZipCode": "913161599" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Milwaukee Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mind Body Connection", - "NPIID": "", - "OrganizationZipCode": "201865210" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mindful Health Solutions", - "NPIID": "", - "OrganizationZipCode": "957625404" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minimally Invasive Surgery NW", - "NPIID": "", - "OrganizationZipCode": "838545275" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minimally Invasive Vascular Center ASC", - "NPIID": "", - "OrganizationZipCode": "20708" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minimally Invasive Vascular Centers", - "NPIID": "", - "OrganizationZipCode": "207081906" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minneapolis Endoscopy ASC LLC", - "NPIID": "", - "OrganizationZipCode": "55486" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minneapolis Eye Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minneapolis Pain Centers LLC", - "NPIID": "", - "OrganizationZipCode": "55433" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minneapolis School Based Clinics", - "NPIID": "", - "OrganizationZipCode": "55415" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minnesota Endoscopy Center LLC", - "NPIID": "", - "OrganizationZipCode": "554140730" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minnesota Lung Center", - "NPIID": "", - "OrganizationZipCode": "554071163" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minnesota Vein Center PA", - "NPIID": "", - "OrganizationZipCode": "55082" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Minor And James Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "981042133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Miramar Lynn Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "91360" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mishock Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "195259307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mission Family Practice", - "NPIID": "", - "OrganizationZipCode": "727034797" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mission Neighborhood Health Center", - "NPIID": "", - "OrganizationZipCode": "941101323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mississippi Arthritis Clinic PLLC", - "NPIID": "", - "OrganizationZipCode": "392164609" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mississippi Pathology Associates PA", - "NPIID": "", - "OrganizationZipCode": "392022064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mississippi Rheum And Osteo Ctr PLLC", - "NPIID": "", - "OrganizationZipCode": "392329306" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Missouri Ozarks Community Health", - "NPIID": "", - "OrganizationZipCode": "656081359" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Missouri Urgent Care", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mitchell Wainwright MD", - "NPIID": "", - "OrganizationZipCode": "92691" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MNGI Digestive Health PA", - "NPIID": "", - "OrganizationZipCode": "554140829" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MNGI Endoscopy LLC", - "NPIID": "", - "OrganizationZipCode": "55486" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MNGI Endoscopy ASC Inc", - "NPIID": "", - "OrganizationZipCode": "554140845" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mobility Health LLC", - "NPIID": "", - "OrganizationZipCode": "45040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Model Practice", - "NPIID": "", - "OrganizationZipCode": "83814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Model Practice", - "NPIID": "", - "OrganizationZipCode": "926182302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Model Practice", - "NPIID": "", - "OrganizationZipCode": "98133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Model Practice", - "NPIID": "", - "OrganizationZipCode": "89128" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Modern Concepts Medical Group INC", - "NPIID": "", - "OrganizationZipCode": "906404642" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Modern Nose Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "973024546" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mohinder P. Ahluwalia MD", - "NPIID": "", - "OrganizationZipCode": "923071355" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mohinder P. Ahluwalia MD", - "NPIID": "", - "OrganizationZipCode": "923071355" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mommy \u0026 Me Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MONINGER EYE CARE", - "NPIID": "", - "OrganizationZipCode": "752444305" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Monmouth Retina Consultants", - "NPIID": "", - "OrganizationZipCode": "077391208" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Montana Arthritis Center LLC", - "NPIID": "", - "OrganizationZipCode": "591026894" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Montebello Medical Center", - "NPIID": "", - "OrganizationZipCode": "906403776" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Montezuma Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "501717739" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Montgomery Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Montgomery County Maryland", - "NPIID": "", - "OrganizationZipCode": "20850" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Montgomery Eye Care PC", - "NPIID": "", - "OrganizationZipCode": "802344124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Montgomery Vascular Care", - "NPIID": "", - "OrganizationZipCode": "209024058" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Moore County Hospital District", - "NPIID": "", - "OrganizationZipCode": "79029" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Morgan County Family Practice", - "NPIID": "", - "OrganizationZipCode": "437569145" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Morgan County Medical Center", - "NPIID": "", - "OrganizationZipCode": "37887" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Morongo Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "922843044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Morris Eye Group Comprehensive Eyecare", - "NPIID": "", - "OrganizationZipCode": "920241332" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Morristown Ophthalmology Associates PA", - "NPIID": "", - "OrganizationZipCode": "079606348" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Moses-Mouser \u0026 Associates", - "NPIID": "", - "OrganizationZipCode": "43123" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mount Carmel Medical Associates", - "NPIID": "", - "OrganizationZipCode": "065182924" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mountain Comprehensive Health Corporatio", - "NPIID": "", - "OrganizationZipCode": "41858" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mountain Comprehensive Health Corporatio", - "NPIID": "", - "OrganizationZipCode": "41858" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mountain Family Health Centers", - "NPIID": "", - "OrganizationZipCode": "81601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mountain Laurel Medical Center", - "NPIID": "", - "OrganizationZipCode": "215504343" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mountain Valley Hospice \u0026 Palliative Ca", - "NPIID": "", - "OrganizationZipCode": "27030" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mountain West Endoscopy", - "NPIID": "", - "OrganizationZipCode": "841215932" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mountainview Anesthesia PC", - "NPIID": "", - "OrganizationZipCode": "17201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Mowery Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "674015103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MS Childrens Heart", - "NPIID": "", - "OrganizationZipCode": "392022413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MSU Longest Student Health Center", - "NPIID": "", - "OrganizationZipCode": "397626338" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Multicare OBH Spokane", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Muncie", - "NPIID": "", - "OrganizationZipCode": "47304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Murphy S Martin MD PLLC", - "NPIID": "", - "OrganizationZipCode": "392022064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Murrieta Valley Family Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "92562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Murrieta Valley Surgery Associates", - "NPIID": "", - "OrganizationZipCode": "925957512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Musculoskeletal Institute Of LA", - "NPIID": "", - "OrganizationZipCode": "711014531" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Muskingum Pediatrics", - "NPIID": "", - "OrganizationZipCode": "437010965" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "MyHealth For Teens \u0026 Young Adults", - "NPIID": "", - "OrganizationZipCode": "55343" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NANI Internal Med", - "NPIID": "", - "OrganizationZipCode": "60523" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NANI Lab", - "NPIID": "", - "OrganizationZipCode": "468044178" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NANI Overpayments", - "NPIID": "", - "OrganizationZipCode": "60303" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Narbonne Multi-Specialty Medical Group", - "NPIID": "", - "OrganizationZipCode": "907171525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nashville Pediatric Cardiology", - "NPIID": "", - "OrganizationZipCode": "372031534" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nashville Pediatric Cardiology", - "NPIID": "", - "OrganizationZipCode": "372031534" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nashville Pediatric Surgery", - "NPIID": "", - "OrganizationZipCode": "372031534" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nashville Pediatric Surgery", - "NPIID": "", - "OrganizationZipCode": "372031534" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nashville Pediatric Urology", - "NPIID": "", - "OrganizationZipCode": "372031661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nashville Pediatric Urology", - "NPIID": "", - "OrganizationZipCode": "372031661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nasson Health Care", - "NPIID": "", - "OrganizationZipCode": "040831926" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "National Integrated Health Associates", - "NPIID": "", - "OrganizationZipCode": "200152055" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "National Telehealth MFM Practice", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "National Telehealth MFM Practice", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Native American Community Health Center", - "NPIID": "", - "OrganizationZipCode": "850123313" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nazanin Firooz MD Inc", - "NPIID": "", - "OrganizationZipCode": "913072003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NC Pediatric Associates", - "NPIID": "", - "OrganizationZipCode": "275365920" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCDPS IBHS", - "NPIID": "", - "OrganizationZipCode": "27603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCDPS IBHS", - "NPIID": "", - "OrganizationZipCode": "27603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Alexandria ASC", - "NPIID": "", - "OrganizationZipCode": "71303" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Alexandria Cath Lab", - "NPIID": "", - "OrganizationZipCode": "71303" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Anderson Heart Cath Lab", - "NPIID": "", - "OrganizationZipCode": "29622" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Beaumont ASC", - "NPIID": "", - "OrganizationZipCode": "77702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Beaumont Cath Lab", - "NPIID": "", - "OrganizationZipCode": "77702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP College Park ASC", - "NPIID": "", - "OrganizationZipCode": "77385" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP College Park Cath Lab", - "NPIID": "", - "OrganizationZipCode": "77385" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP College Station ASC", - "NPIID": "", - "OrganizationZipCode": "77802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP College Station Cath Lab", - "NPIID": "", - "OrganizationZipCode": "77802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Collin County ASC", - "NPIID": "", - "OrganizationZipCode": "75093" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Collin County Cath Lab", - "NPIID": "", - "OrganizationZipCode": "75093" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Dallas ASC", - "NPIID": "", - "OrganizationZipCode": "75243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Dallas Cath Lab", - "NPIID": "", - "OrganizationZipCode": "75243" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP East Mesa Cath Lab", - "NPIID": "", - "OrganizationZipCode": "85204" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP EPIC ASC", - "NPIID": "", - "OrganizationZipCode": "67226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP EPIC Heart Center", - "NPIID": "", - "OrganizationZipCode": "67226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Fort Worth Cath Lab", - "NPIID": "", - "OrganizationZipCode": "76132" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Forth Worth ASC", - "NPIID": "", - "OrganizationZipCode": "76132" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Ft Lauderdale ASC", - "NPIID": "", - "OrganizationZipCode": "33308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Ft Lauderdale Cath Lab", - "NPIID": "", - "OrganizationZipCode": "33308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP HPSC East 22nd St ASC", - "NPIID": "", - "OrganizationZipCode": "79410" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP HPSC West Quaker ASC", - "NPIID": "", - "OrganizationZipCode": "79410" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Katy ASC", - "NPIID": "", - "OrganizationZipCode": "77094" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Katy Cath Lab", - "NPIID": "", - "OrganizationZipCode": "77094" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Kingwood ASC", - "NPIID": "", - "OrganizationZipCode": "77338" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Kingwood Cath Lab", - "NPIID": "", - "OrganizationZipCode": "77338" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Lake Charles ASC", - "NPIID": "", - "OrganizationZipCode": "70601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Lake Charles Cath Lab", - "NPIID": "", - "OrganizationZipCode": "70601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Mid Cities ASC", - "NPIID": "", - "OrganizationZipCode": "76021" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Mid Cities Cath Lab", - "NPIID": "", - "OrganizationZipCode": "76021" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP North Phoenix ASC", - "NPIID": "", - "OrganizationZipCode": "850273563" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP North Phoenix Cath Lab", - "NPIID": "", - "OrganizationZipCode": "850273563" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Phoenix ASC", - "NPIID": "", - "OrganizationZipCode": "850167766" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Phoenix Cath Lab", - "NPIID": "", - "OrganizationZipCode": "850167766" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Port Arthur ASC", - "NPIID": "", - "OrganizationZipCode": "77642" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Port Arthur Cath Lab", - "NPIID": "", - "OrganizationZipCode": "77642" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP San Jose ASC", - "NPIID": "", - "OrganizationZipCode": "94040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP San Jose Cath Lab", - "NPIID": "", - "OrganizationZipCode": "94040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Sugarland Cath Lab", - "NPIID": "", - "OrganizationZipCode": "77479" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Tyler ASC", - "NPIID": "", - "OrganizationZipCode": "75701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Tyler Cath Lab", - "NPIID": "", - "OrganizationZipCode": "75701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Waco Cardiology Cath Lab", - "NPIID": "", - "OrganizationZipCode": "76712" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NCP Waco Cardiology Cath Lab ASC", - "NPIID": "", - "OrganizationZipCode": "76712" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NDTA PA", - "NPIID": "", - "OrganizationZipCode": "770541801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NE Philadelphia ASC", - "NPIID": "", - "OrganizationZipCode": "191523320" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NE Philadelphia Vascular", - "NPIID": "", - "OrganizationZipCode": "191523320" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NEFL Cardiology", - "NPIID": "", - "OrganizationZipCode": "322162548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neighborhood Health Services Corporation", - "NPIID": "", - "OrganizationZipCode": "070631000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neighborhood Health Services Corporation", - "NPIID": "", - "OrganizationZipCode": "070631000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neighborhood Medical Clinic Of Riverside", - "NPIID": "", - "OrganizationZipCode": "925042738" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neil R Nelson MD", - "NPIID": "", - "OrganizationZipCode": "609362000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NEPHROLOGY \u0026 HYPERTENSION CONSULTANTS PA", - "NPIID": "", - "OrganizationZipCode": "282621337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology and Endocrine Associates", - "NPIID": "", - "OrganizationZipCode": "891064844" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology And Endocrine Associates ASC", - "NPIID": "", - "OrganizationZipCode": "891064852" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology And Hypertension Specialist", - "NPIID": "", - "OrganizationZipCode": "63141" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "37411" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NEPHROLOGY ASSOCIATES", - "NPIID": "", - "OrganizationZipCode": "64116" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "19096" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "641163276" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates Medical Group", - "NPIID": "", - "OrganizationZipCode": "925053071" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates of Michigan", - "NPIID": "", - "OrganizationZipCode": "481971099" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates Of N Illinois", - "NPIID": "", - "OrganizationZipCode": "60523" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates Of N Indiana", - "NPIID": "", - "OrganizationZipCode": "605231557" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates of Upland", - "NPIID": "", - "OrganizationZipCode": "917863675" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Associates P A", - "NPIID": "", - "OrganizationZipCode": "722226451" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "358054104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Physicians LLC", - "NPIID": "", - "OrganizationZipCode": "465453458" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nephrology Vascular ASC", - "NPIID": "", - "OrganizationZipCode": "465453471" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NeuroCare Center", - "NPIID": "", - "OrganizationZipCode": "44718" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neurologic Associates Of Cape Girardeau", - "NPIID": "", - "OrganizationZipCode": "637035095" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neurological And Spinal Surgery LLC", - "NPIID": "", - "OrganizationZipCode": "685023762" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neurology Of Bethlehem PC", - "NPIID": "", - "OrganizationZipCode": "180151469" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neurology Specialists", - "NPIID": "", - "OrganizationZipCode": "891693211" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neurospinal Associates PA", - "NPIID": "", - "OrganizationZipCode": "342058633" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neurosurgery Of North Iowa PC", - "NPIID": "", - "OrganizationZipCode": "50401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Neurosurgical Group Of Texas LLP", - "NPIID": "", - "OrganizationZipCode": "770302761" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nevada Eye Physicians", - "NPIID": "", - "OrganizationZipCode": "890748195" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nevada VWH", - "NPIID": "", - "OrganizationZipCode": "89511" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Albany", - "NPIID": "", - "OrganizationZipCode": "471508548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New England Life Care", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New England Rheumatology LLC", - "NPIID": "", - "OrganizationZipCode": "063602222" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Eyes", - "NPIID": "", - "OrganizationZipCode": "891064145" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Foundation Medical Group", - "NPIID": "", - "OrganizationZipCode": "927804401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Jersey Vision Associates PC", - "NPIID": "", - "OrganizationZipCode": "070033039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Mexico Laser Eye Center LLC", - "NPIID": "", - "OrganizationZipCode": "881013708" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Milford Medical Group LLC", - "NPIID": "", - "OrganizationZipCode": "067762507" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Orleans CBO Anesthesia", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New Vision Cataract Center LLC", - "NPIID": "", - "OrganizationZipCode": "068504000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NEW VISION OF ILLINOIS", - "NPIID": "", - "OrganizationZipCode": "611076809" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "New York Physicians LLP", - "NPIID": "", - "OrganizationZipCode": "100221009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Beach Internal Medicine Inc", - "NPIID": "", - "OrganizationZipCode": "926633642" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Beach Medical Associates", - "NPIID": "", - "OrganizationZipCode": "926633524" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Beach OB/Gyn", - "NPIID": "", - "OrganizationZipCode": "926633505" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Family Medicine", - "NPIID": "", - "OrganizationZipCode": "926591493" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "926634264" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Irvine Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "926633664" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Medicine Group Inc.", - "NPIID": "", - "OrganizationZipCode": "926595745" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newport Orthopedic Institute", - "NPIID": "", - "OrganizationZipCode": "926607985" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Newton B Coutinho MD", - "NPIID": "", - "OrganizationZipCode": "598081856" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare Arizona Family Care", - "NPIID": "", - "OrganizationZipCode": "85205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare CHI Nebraska", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare Georgia LLC", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare Nebraska", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare New Mexico LLC", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare Urgent Care", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare Urgent Care Michigan", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare Urgent Care TX", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextCare Urgent Care VA", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextGen Medical Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NextGen Medical Practice DEMO", - "NPIID": "", - "OrganizationZipCode": "43213" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NGS Mid State Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Niangui Wang MD PLLC", - "NPIID": "", - "OrganizationZipCode": "76301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NIH", - "NPIID": "", - "OrganizationZipCode": "91203" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nirupa Vignarajan MD Inc", - "NPIID": "", - "OrganizationZipCode": "91205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NJ Center For Cornea \u0026Refractive Surgery", - "NPIID": "", - "OrganizationZipCode": "07052" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NKDHC", - "NPIID": "", - "OrganizationZipCode": "891289001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "No Colorado Anesthesia Professionals", - "NPIID": "", - "OrganizationZipCode": "80525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "No Colorado Hospitalists", - "NPIID": "", - "OrganizationZipCode": "80525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Norma J Flack DO LLC", - "NPIID": "", - "OrganizationZipCode": "33308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Norma M Sarao MD", - "NPIID": "", - "OrganizationZipCode": "905035729" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Bristol Medical Center", - "NPIID": "", - "OrganizationZipCode": "927063904" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Cascade Eye Associates P S", - "NPIID": "", - "OrganizationZipCode": "982748752" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Central Family Medical Center", - "NPIID": "", - "OrganizationZipCode": "297305776" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North East Medical Services", - "NPIID": "", - "OrganizationZipCode": "941333354" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North East Medical Services", - "NPIID": "", - "OrganizationZipCode": "941333354" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Florida Pediatrics PA", - "NPIID": "", - "OrganizationZipCode": "32025" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Georgia HealthCare Center", - "NPIID": "", - "OrganizationZipCode": "307360729" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Georgia HealthCare Center", - "NPIID": "", - "OrganizationZipCode": "307360729" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Georgia Rheumatology Group PC", - "NPIID": "", - "OrganizationZipCode": "300463330" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Hills Gastro Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "727034057" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Idaho Family Physicians LLC", - "NPIID": "", - "OrganizationZipCode": "838144484" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Idaho Pain Center LLC", - "NPIID": "", - "OrganizationZipCode": "838145779" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Jersey Gastro And Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "074707510" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Metro Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "80031" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Metro Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Puget Sound MRI", - "NPIID": "", - "OrganizationZipCode": "980432187" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Ridge Eye Center LLC", - "NPIID": "", - "OrganizationZipCode": "33334" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Shore Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "60044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Suburban Eye Associates", - "NPIID": "", - "OrganizationZipCode": "018805200" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Suburban Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "600611839" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Suburban Nephrology", - "NPIID": "", - "OrganizationZipCode": "600312603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Texas Area Community Health Center", - "NPIID": "", - "OrganizationZipCode": "76114" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Texas Imaging Center", - "NPIID": "", - "OrganizationZipCode": "763015003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Texas Neurology Alliance PLLC", - "NPIID": "", - "OrganizationZipCode": "76301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Valley Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "North Valley Family Medicine", - "NPIID": "", - "OrganizationZipCode": "853081380" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northeast Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northeast Missouri Health Council Inc", - "NPIID": "", - "OrganizationZipCode": "635012548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northeast OB/GYN Associates", - "NPIID": "", - "OrganizationZipCode": "78280" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northeast Ohio Neighborhood Health Svcs", - "NPIID": "", - "OrganizationZipCode": "022986500" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northeast PA Community Healthcare", - "NPIID": "", - "OrganizationZipCode": "18822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northeast Tarrant Internal Med Assoc", - "NPIID": "", - "OrganizationZipCode": "760403957" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northeast Valley Health Corporation", - "NPIID": "", - "OrganizationZipCode": "91340" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northern Cal Advanced Surgery Center LP", - "NPIID": "", - "OrganizationZipCode": "958412013" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northern California Arthritis Center", - "NPIID": "", - "OrganizationZipCode": "945983007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northern Eye Center", - "NPIID": "", - "OrganizationZipCode": "564014595" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northern Nevada Professional Services", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northern NJ Eye Institute PA", - "NPIID": "", - "OrganizationZipCode": "07079" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northern VA Pulm \u0026 Critical Care Assoc.", - "NPIID": "", - "OrganizationZipCode": "220037357" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northfield Surgical Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northland Family Care PC", - "NPIID": "", - "OrganizationZipCode": "641581176" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northland Health Centers", - "NPIID": "", - "OrganizationZipCode": "58575" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NorthShore Health Centers", - "NPIID": "", - "OrganizationZipCode": "463689230" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NorthStar Sleep Center", - "NPIID": "", - "OrganizationZipCode": "554332517" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NorthWest Congenital Heart Care", - "NPIID": "", - "OrganizationZipCode": "984054292" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NorthWest Congenital Heart Care", - "NPIID": "", - "OrganizationZipCode": "984054292" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Eye Specialists PLLC", - "NPIID": "", - "OrganizationZipCode": "857043821" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Family Medicine", - "NPIID": "", - "OrganizationZipCode": "973811946" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest FL Gastroenterology Center", - "NPIID": "", - "OrganizationZipCode": "324054707" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "645064954" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Human Services Inc", - "NPIID": "", - "OrganizationZipCode": "973044049" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest NeuroSpecialists PLLC", - "NPIID": "", - "OrganizationZipCode": "857413537" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Ohio Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Orthopaedic Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "993523592" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Orthopedic Clinic", - "NPIID": "", - "OrganizationZipCode": "981152023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Rheumatology Specialist SC", - "NPIID": "", - "OrganizationZipCode": "600079991" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "981041172" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Northwest Womens Healthcare", - "NPIID": "", - "OrganizationZipCode": "981043558" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Norwalk Cardiac Thoracic", - "NPIID": "", - "OrganizationZipCode": "448572492" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Notre Dame", - "NPIID": "", - "OrganizationZipCode": "02863" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nova Vision Center", - "NPIID": "", - "OrganizationZipCode": "220412874" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NS SURGICAL CENTER LLC", - "NPIID": "", - "OrganizationZipCode": "661031393" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NS Surgical Center LLC", - "NPIID": "", - "OrganizationZipCode": "641163276" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NSH CIPS G", - "NPIID": "", - "OrganizationZipCode": "311935561" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NSIPA", - "NPIID": "", - "OrganizationZipCode": "92663" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nss Office 300", - "NPIID": "", - "OrganizationZipCode": "731346036" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NSU Center For Neuroimmune Disorders", - "NPIID": "", - "OrganizationZipCode": "331834631" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NSU Clinical Immunology Lab", - "NPIID": "", - "OrganizationZipCode": "333282018" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NSU Health Neuroscience Institute", - "NPIID": "", - "OrganizationZipCode": "333147796" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NSU Student Medical Center", - "NPIID": "", - "OrganizationZipCode": "333282018" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NU House Calls PC", - "NPIID": "", - "OrganizationZipCode": "18036" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nura Surgical Center", - "NPIID": "", - "OrganizationZipCode": "55433" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nura PA", - "NPIID": "", - "OrganizationZipCode": "554333046" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Nurse Practioner Professionals LLC", - "NPIID": "", - "OrganizationZipCode": "396012350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NVISION", - "NPIID": "", - "OrganizationZipCode": "926562629" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NW Center For Congenital Heart Disease", - "NPIID": "", - "OrganizationZipCode": "992042307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NW Comprehensive Womens Healthcare", - "NPIID": "", - "OrganizationZipCode": "80026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "NW Surgical Specialists PC", - "NPIID": "", - "OrganizationZipCode": "986643299" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oak Hills Family Care", - "NPIID": "", - "OrganizationZipCode": "923454802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oak Hills Family Care", - "NPIID": "", - "OrganizationZipCode": "923454802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oak Lawn Endoscopy ASC LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oak Tree Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oakland ASC", - "NPIID": "", - "OrganizationZipCode": "946093480" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oakland Vascular", - "NPIID": "", - "OrganizationZipCode": "946093480" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oakwater Surgical Center", - "NPIID": "", - "OrganizationZipCode": "372156197" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oasis Medical and Surgical Wellness", - "NPIID": "", - "OrganizationZipCode": "07452" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oasis Medical Serrvices PLLC", - "NPIID": "", - "OrganizationZipCode": "11226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oasis Medical Services PLLC", - "NPIID": "", - "OrganizationZipCode": "11226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OB and Ped Subspecialty Grp of KS/MO", - "NPIID": "", - "OrganizationZipCode": "662152307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OB and Ped Subspecialty Grp of KS/MO", - "NPIID": "", - "OrganizationZipCode": "662152307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OB and Ped Subspecialty Grp of KS/MO-MFM", - "NPIID": "", - "OrganizationZipCode": "66204" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OB and Ped Subspecialty Grp of KS/MO-MFM", - "NPIID": "", - "OrganizationZipCode": "66204" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OB24 Medical Group Inc.", - "NPIID": "", - "OrganizationZipCode": "930106080" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OBS Payer Default Practice", - "NPIID": "", - "OrganizationZipCode": "19355" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Med Grp Of The Central Coast", - "NPIID": "", - "OrganizationZipCode": "931056206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Med Grp Of The Central Coast", - "NPIID": "", - "OrganizationZipCode": "931056206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Arizona", - "NPIID": "", - "OrganizationZipCode": "85712" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Arizona", - "NPIID": "", - "OrganizationZipCode": "85712" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Atlanta LLC", - "NPIID": "", - "OrganizationZipCode": "301222665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Atlanta LLC", - "NPIID": "", - "OrganizationZipCode": "301222665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of CA", - "NPIID": "", - "OrganizationZipCode": "95008" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Colorado P.C", - "NPIID": "", - "OrganizationZipCode": "80205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Colorado P.C", - "NPIID": "", - "OrganizationZipCode": "80205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Dallas", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Dallas", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Florida", - "NPIID": "", - "OrganizationZipCode": "333232843" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Florida", - "NPIID": "", - "OrganizationZipCode": "33428" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group of Georgia", - "NPIID": "", - "OrganizationZipCode": "30342" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group of Georgia", - "NPIID": "", - "OrganizationZipCode": "30342" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of IN P.C.", - "NPIID": "", - "OrganizationZipCode": "462602495" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of IN P.C.", - "NPIID": "", - "OrganizationZipCode": "462602495" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Nebraska", - "NPIID": "", - "OrganizationZipCode": "681242346" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Nebraska", - "NPIID": "", - "OrganizationZipCode": "681242346" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Oklahoma P.C", - "NPIID": "", - "OrganizationZipCode": "74104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Oklahoma P.C", - "NPIID": "", - "OrganizationZipCode": "74104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Phoenix PC", - "NPIID": "", - "OrganizationZipCode": "852584518" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Phoenix PC", - "NPIID": "", - "OrganizationZipCode": "852584518" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Texas", - "NPIID": "", - "OrganizationZipCode": "76104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Texas", - "NPIID": "", - "OrganizationZipCode": "76104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Washington PS", - "NPIID": "", - "OrganizationZipCode": "98104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group Of Washington PS", - "NPIID": "", - "OrganizationZipCode": "98104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group-Central Coast", - "NPIID": "", - "OrganizationZipCode": "934011899" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix Medical Group-Central Coast", - "NPIID": "", - "OrganizationZipCode": "934011899" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix MFM Specialists Of Houston", - "NPIID": "", - "OrganizationZipCode": "773802794" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix MFM Specialists Of Houston", - "NPIID": "", - "OrganizationZipCode": "773802794" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix of the Mountain States", - "NPIID": "", - "OrganizationZipCode": "841241256" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Obstetrix of the Mountain States", - "NPIID": "", - "OrganizationZipCode": "841241256" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocala Anesthesia Services", - "NPIID": "", - "OrganizationZipCode": "344747439" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocala Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "344747458" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocala Eye P.A.", - "NPIID": "", - "OrganizationZipCode": "344714452" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Occupational Health Services", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocean Breeze Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "92672" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocean Endosurgery Center", - "NPIID": "", - "OrganizationZipCode": "087556435" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocean Rheumatology P.A.", - "NPIID": "", - "OrganizationZipCode": "087557382" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocean Surgical Pavilion", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OCLI-Ophthalmic Consultants Of LI", - "NPIID": "", - "OrganizationZipCode": "115302124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ocoee Regional Health Corporation", - "NPIID": "", - "OrganizationZipCode": "373074818" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OGA", - "NPIID": "", - "OrganizationZipCode": "836426304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ohio Central Billing", - "NPIID": "", - "OrganizationZipCode": "432317665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ohio Ear Institute LLC", - "NPIID": "", - "OrganizationZipCode": "430826077" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ohio Specialty Department", - "NPIID": "", - "OrganizationZipCode": "430818039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OhioHealth Urgent Care LLC", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OKC Orthopedics And Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "731141431" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Old Town Endoscopy Center LLC", - "NPIID": "", - "OrganizationZipCode": "752062935" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oliver Street Dermatology ASC LLC", - "NPIID": "", - "OrganizationZipCode": "300768217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oluyemisi S Afuape MD", - "NPIID": "", - "OrganizationZipCode": "911053149" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Omni Eye Services", - "NPIID": "", - "OrganizationZipCode": "088303009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Omni Eye Services", - "NPIID": "", - "OrganizationZipCode": "30384" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Omni Eye Specialists", - "NPIID": "", - "OrganizationZipCode": "802065429" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Omni Eye Surgery Of New York PC", - "NPIID": "", - "OrganizationZipCode": "088303009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Omni Family Health", - "NPIID": "", - "OrganizationZipCode": "933094900" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oncology and Hematology", - "NPIID": "", - "OrganizationZipCode": "217024337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oncology Hematology Consultants", - "NPIID": "", - "OrganizationZipCode": "90806" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "One Day Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "One Health Ohio", - "NPIID": "", - "OrganizationZipCode": "445052827" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "One Medical Group", - "NPIID": "", - "OrganizationZipCode": "926602995" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oneida Nation Health Services", - "NPIID": "", - "OrganizationZipCode": "134219304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OneWorld Community Health Centers Inc", - "NPIID": "", - "OrganizationZipCode": "681071656" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmic Anesthesia Services Inc", - "NPIID": "", - "OrganizationZipCode": "850164701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmic Associates APC", - "NPIID": "", - "OrganizationZipCode": "995012208" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmic Consultants Of Connecticut", - "NPIID": "", - "OrganizationZipCode": "11530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmic Partners PC", - "NPIID": "", - "OrganizationZipCode": "176044803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmic Physicians Inc", - "NPIID": "", - "OrganizationZipCode": "440606055" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmic Surgical Associates Inc", - "NPIID": "", - "OrganizationZipCode": "190133955" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmology Associates", - "NPIID": "", - "OrganizationZipCode": "560014801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmology Associates", - "NPIID": "", - "OrganizationZipCode": "560014801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ophthalmology Consultants Ltd", - "NPIID": "", - "OrganizationZipCode": "631311881" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Optometry", - "NPIID": "", - "OrganizationZipCode": "165011914" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Optum", - "NPIID": "", - "OrganizationZipCode": "907202334" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OptumCare Anesthesia", - "NPIID": "", - "OrganizationZipCode": "891280424" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OptumCare Cancer Care", - "NPIID": "", - "OrganizationZipCode": "891022149" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OptumCare Lung And Allergy Care", - "NPIID": "", - "OrganizationZipCode": "891021535" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OptumCare Medical Group MMG", - "NPIID": "", - "OrganizationZipCode": "928074759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OptumCare Medical Group RBRC", - "NPIID": "", - "OrganizationZipCode": "926915800" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OptumCare Orthopaedics And Spine", - "NPIID": "", - "OrganizationZipCode": "890121535" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OptumCare Primary Care", - "NPIID": "", - "OrganizationZipCode": "891280424" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orange City Anesthesia Services LLC", - "NPIID": "", - "OrganizationZipCode": "452637524" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orange County ASC", - "NPIID": "", - "OrganizationZipCode": "928400000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orange County Neurosurgical Assoc", - "NPIID": "", - "OrganizationZipCode": "926533665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orange County Vascular", - "NPIID": "", - "OrganizationZipCode": "928431902" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oregon Rheumatology Clinics LLC", - "NPIID": "", - "OrganizationZipCode": "971234147" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Oregon Trail Eye Center and Eye Surgery", - "NPIID": "", - "OrganizationZipCode": "693614634" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orlando ASC", - "NPIID": "", - "OrganizationZipCode": "328062154" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orlando At Tampa", - "NPIID": "", - "OrganizationZipCode": "336370935" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ortho", - "NPIID": "", - "OrganizationZipCode": "683552470" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ortho Florida LLC", - "NPIID": "", - "OrganizationZipCode": "33431" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OrthoAlaska LLC", - "NPIID": "", - "OrganizationZipCode": "98124524" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OrthoAlliance of Ohio", - "NPIID": "", - "OrganizationZipCode": "45241" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthocenter Medical Group", - "NPIID": "", - "OrganizationZipCode": "911052632" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopaedic And Spine Center", - "NPIID": "", - "OrganizationZipCode": "236062899" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopaedic and Sports Medicine Center", - "NPIID": "", - "OrganizationZipCode": "665022750" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopaedic Assoc. Of Michigan PC", - "NPIID": "", - "OrganizationZipCode": "462061347" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopaedic Associates Of SO DE", - "NPIID": "", - "OrganizationZipCode": "199584988" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopaedic Institute Western Kentucky", - "NPIID": "", - "OrganizationZipCode": "42001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopaedic Specialty Institute", - "NPIID": "", - "OrganizationZipCode": "928683852" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopedic \u0026 Spine Institute Of SoCal", - "NPIID": "", - "OrganizationZipCode": "930102469" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopedic And Sports Medicine Ctr", - "NPIID": "", - "OrganizationZipCode": "465141228" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopedic Physician Associates", - "NPIID": "", - "OrganizationZipCode": "981225330" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopedic Rehabilitation Associates", - "NPIID": "", - "OrganizationZipCode": "804019541" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopedic Specialists of Seattle", - "NPIID": "", - "OrganizationZipCode": "981036907" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopedics and Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "217014586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Orthopedics Northwest", - "NPIID": "", - "OrganizationZipCode": "989021347" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "OrthoTennessee", - "NPIID": "", - "OrganizationZipCode": "37922" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Osteopathic Cardiology Associates LLC", - "NPIID": "", - "OrganizationZipCode": "165083358" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Outlook Clinic", - "NPIID": "", - "OrganizationZipCode": "55056" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Overland Park MFM", - "NPIID": "", - "OrganizationZipCode": "662152306" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Overland Park MFM", - "NPIID": "", - "OrganizationZipCode": "662152306" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Owensboro Medical Practice", - "NPIID": "", - "OrganizationZipCode": "423031090" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PA Vascular Institute", - "NPIID": "", - "OrganizationZipCode": "180721947" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PACE", - "NPIID": "", - "OrganizationZipCode": "019023068" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Arthritis Care Center", - "NPIID": "", - "OrganizationZipCode": "900456279" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Cardiovascular Associates", - "NPIID": "", - "OrganizationZipCode": "92626" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Cardiovascular Associates", - "NPIID": "", - "OrganizationZipCode": "926267341" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Cataract And Laser Institute", - "NPIID": "", - "OrganizationZipCode": "985322409" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Coast Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "926183181" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Family Medicine", - "NPIID": "", - "OrganizationZipCode": "926595818" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Heart \u0026 Vascular Med Grp", - "NPIID": "", - "OrganizationZipCode": "952106675" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Heart Medical Group", - "NPIID": "", - "OrganizationZipCode": "925433814" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Hospitalists Associates", - "NPIID": "", - "OrganizationZipCode": "926633526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Medical Group", - "NPIID": "", - "OrganizationZipCode": "911053264" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "90805" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Northwest Retina", - "NPIID": "", - "OrganizationZipCode": "98004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Perinatal Institute", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Pulmonary Medical Group", - "NPIID": "", - "OrganizationZipCode": "925053312" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Ridge Medical Associates Inc", - "NPIID": "", - "OrganizationZipCode": "92653" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific VascuCare", - "NPIID": "", - "OrganizationZipCode": "900171138" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific VascuCare ASC", - "NPIID": "", - "OrganizationZipCode": "900171138" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pacific Womens Healthcare Associates", - "NPIID": "", - "OrganizationZipCode": "926623609" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PACT Multispecialty", - "NPIID": "", - "OrganizationZipCode": "06405" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PACT Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "065183691" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Minnesota Chaska LLC", - "NPIID": "", - "OrganizationZipCode": "55318" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Minnesota Mankato LLC", - "NPIID": "", - "OrganizationZipCode": "560015476" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Appleton LLC", - "NPIID": "", - "OrganizationZipCode": "549138245" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Beaver Dam LLC", - "NPIID": "", - "OrganizationZipCode": "539161178" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Fort Atkinson", - "NPIID": "", - "OrganizationZipCode": "535383101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Fox Point LLC", - "NPIID": "", - "OrganizationZipCode": "532173131" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Franklin LLC", - "NPIID": "", - "OrganizationZipCode": "531329118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Green Bay LLC", - "NPIID": "", - "OrganizationZipCode": "543114267" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Kenosha LLC", - "NPIID": "", - "OrganizationZipCode": "535182199" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Oconto Falls", - "NPIID": "", - "OrganizationZipCode": "541541241" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Sauk Prairie", - "NPIID": "", - "OrganizationZipCode": "535782205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Stevens Point", - "NPIID": "", - "OrganizationZipCode": "544811843" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Wausau LLC", - "NPIID": "", - "OrganizationZipCode": "544017801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin Wauwatosa LLC", - "NPIID": "", - "OrganizationZipCode": "532780782" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Centers Of Wisconsin West Bend LLC", - "NPIID": "", - "OrganizationZipCode": "53095" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Management Of North Idaho PLLC", - "NPIID": "", - "OrganizationZipCode": "838145779" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pain Specialists Of Orange County", - "NPIID": "", - "OrganizationZipCode": "926044724" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Paja Medical Group", - "NPIID": "", - "OrganizationZipCode": "900573602" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Palm Beach Pediatric Urology", - "NPIID": "", - "OrganizationZipCode": "334373723" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Palm Beach Pediatric Urology", - "NPIID": "", - "OrganizationZipCode": "334373723" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Palm Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Palmetto Retina Center LLC", - "NPIID": "", - "OrganizationZipCode": "291692429" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Palms Medical Group", - "NPIID": "", - "OrganizationZipCode": "326933239" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Panhandle Eye Group", - "NPIID": "", - "OrganizationZipCode": "791061808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Panhandle Health District", - "NPIID": "", - "OrganizationZipCode": "838358332" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Panorama Orthopedics And Spine Center PC", - "NPIID": "", - "OrganizationZipCode": "804019541" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Paris Cardiology Center", - "NPIID": "", - "OrganizationZipCode": "754622855" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Parivash Mohamadi MD", - "NPIID": "", - "OrganizationZipCode": "905034405" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Park Center For Procedures", - "NPIID": "", - "OrganizationZipCode": "339195119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Park Hudson Surgery Center", - "NPIID": "", - "OrganizationZipCode": "778026107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Park Ophthalmology", - "NPIID": "", - "OrganizationZipCode": "277137812" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Park Street Family Practice", - "NPIID": "", - "OrganizationZipCode": "43123" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Parkway Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "920253366" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Parkway Psychiatric", - "NPIID": "", - "OrganizationZipCode": "378014703" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Partners For Womens Health PA", - "NPIID": "", - "OrganizationZipCode": "038332123" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Partners In Health Family Medicine", - "NPIID": "", - "OrganizationZipCode": "800313304" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Partners In Recovery", - "NPIID": "", - "OrganizationZipCode": "852014108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Paseo Medical Specialists", - "NPIID": "", - "OrganizationZipCode": "853041271" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pasteur Medical Management", - "NPIID": "", - "OrganizationZipCode": "33016" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Patel Clinic", - "NPIID": "", - "OrganizationZipCode": "452643278" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Patricia Korber MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926633508" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Paul Shipkin MD PC", - "NPIID": "", - "OrganizationZipCode": "190462627" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Paul Phillips Eye And Surgery Center", - "NPIID": "", - "OrganizationZipCode": "088225760" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pavilion Family Physicians", - "NPIID": "", - "OrganizationZipCode": "92868" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PCHC Employee Health", - "NPIID": "", - "OrganizationZipCode": "810042006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PCHS Dental", - "NPIID": "", - "OrganizationZipCode": "79830" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peach Tree Healthcare", - "NPIID": "", - "OrganizationZipCode": "959014838" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peach Tree Medical Center", - "NPIID": "", - "OrganizationZipCode": "298244535" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peach Tree Medical Ctr Affiliate Of SRH", - "NPIID": "", - "OrganizationZipCode": "298244535" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peak Vista Community Health Centers", - "NPIID": "", - "OrganizationZipCode": "809175152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peconic Bay Primary Medical Care PC", - "NPIID": "", - "OrganizationZipCode": "119013110" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peconic Bay Primary Medical PC", - "NPIID": "", - "OrganizationZipCode": "11901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peconic Bay Prime Medical Care PC", - "NPIID": "", - "OrganizationZipCode": "11946" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ped And Congenital Cardi Assoc Of Texas", - "NPIID": "", - "OrganizationZipCode": "787233079" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ped And Congenital Cardi Assoc Of Texas", - "NPIID": "", - "OrganizationZipCode": "787563332" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pedi Partners TTUHSC", - "NPIID": "", - "OrganizationZipCode": "791062169" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Affiliates Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "913079937" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Alliance", - "NPIID": "", - "OrganizationZipCode": "151063616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric And Fetal Cardiology Of Miami", - "NPIID": "", - "OrganizationZipCode": "331732535" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric And Fetal Cardiology Of Miami", - "NPIID": "", - "OrganizationZipCode": "331732535" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Assoc", - "NPIID": "", - "OrganizationZipCode": "220312228" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Assoc", - "NPIID": "", - "OrganizationZipCode": "220312228" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Assoc. San Antonio", - "NPIID": "", - "OrganizationZipCode": "78229" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Assoc. San Antonio", - "NPIID": "", - "OrganizationZipCode": "78229" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "337014654" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "337014654" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Of Austin", - "NPIID": "", - "OrganizationZipCode": "78723" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Cardiology Of Austin", - "NPIID": "", - "OrganizationZipCode": "787222211" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Care Of KY", - "NPIID": "", - "OrganizationZipCode": "41017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Developmental Group of Florida", - "NPIID": "", - "OrganizationZipCode": "325032102" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Developmental Group of Florida", - "NPIID": "", - "OrganizationZipCode": "325032102" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Ear Nose \u0026 Throat Specialists", - "NPIID": "", - "OrganizationZipCode": "337346479" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric ENT Institute Of South TexasPA", - "NPIID": "", - "OrganizationZipCode": "782482342" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric ENT Institute Of South TexasPA", - "NPIID": "", - "OrganizationZipCode": "782482342" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Health", - "NPIID": "", - "OrganizationZipCode": "181069345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Heart Center", - "NPIID": "", - "OrganizationZipCode": "33026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Heart Center", - "NPIID": "", - "OrganizationZipCode": "33026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Partners Of Northern Kentucky", - "NPIID": "", - "OrganizationZipCode": "410178127" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Physicians Of Newark", - "NPIID": "", - "OrganizationZipCode": "430551345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Specialists Of Knox County", - "NPIID": "", - "OrganizationZipCode": "43050" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Specialists Of Nashville", - "NPIID": "", - "OrganizationZipCode": "372031661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Specialists Of Nashville", - "NPIID": "", - "OrganizationZipCode": "372031661" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "752512116" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "752512116" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatric Wellness Center Of Amarillo", - "NPIID": "", - "OrganizationZipCode": "79106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrics (Med 3)", - "NPIID": "", - "OrganizationZipCode": "926264105" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrics Of Florence", - "NPIID": "", - "OrganizationZipCode": "410421905" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Assoc Of New Mexico", - "NPIID": "", - "OrganizationZipCode": "87106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Assoc Of New Mexico", - "NPIID": "", - "OrganizationZipCode": "87106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Broward", - "NPIID": "", - "OrganizationZipCode": "33063" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Broward", - "NPIID": "", - "OrganizationZipCode": "33063" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Dallas", - "NPIID": "", - "OrganizationZipCode": "752302527" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Dallas", - "NPIID": "", - "OrganizationZipCode": "752302527" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Maryland", - "NPIID": "", - "OrganizationZipCode": "211575688" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Maryland", - "NPIID": "", - "OrganizationZipCode": "211575688" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Miami", - "NPIID": "", - "OrganizationZipCode": "33133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Miami", - "NPIID": "", - "OrganizationZipCode": "33133" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of North Texas", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of North Texas", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology of Palm Beach", - "NPIID": "", - "OrganizationZipCode": "33407" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology of Palm Beach", - "NPIID": "", - "OrganizationZipCode": "33407" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Southern CA", - "NPIID": "", - "OrganizationZipCode": "928684305" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Southern CA", - "NPIID": "", - "OrganizationZipCode": "928684305" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Springfield P.C", - "NPIID": "", - "OrganizationZipCode": "65810" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Cardiology Of Springfield P.C", - "NPIID": "", - "OrganizationZipCode": "65810" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Gastroenterology Of Florida", - "NPIID": "", - "OrganizationZipCode": "333263257" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Gastroenterology Of Florida", - "NPIID": "", - "OrganizationZipCode": "333263257" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Medical Group of FL INC", - "NPIID": "", - "OrganizationZipCode": "333232843" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Medical Group of FL INC", - "NPIID": "", - "OrganizationZipCode": "333232843" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Neuro Practice", - "NPIID": "", - "OrganizationZipCode": "327894878" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Obstetrix Medical Group Of CO", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Obstetrix Medical Group Of CO", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Specialty Care Of Utah", - "NPIID": "", - "OrganizationZipCode": "840576301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pediatrix Specialty Care Of Utah", - "NPIID": "", - "OrganizationZipCode": "840576301" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PediPlace", - "NPIID": "", - "OrganizationZipCode": "750674374" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pelvic Floor Center", - "NPIID": "", - "OrganizationZipCode": "554071353" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pending Maternal Fetal Associates Mid", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pending Maternal Fetal Associates Mid", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pending Sacramento Ped Pulm Prac", - "NPIID": "", - "OrganizationZipCode": "958193957" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pending White Oak OBH", - "NPIID": "", - "OrganizationZipCode": "33323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pendurthi Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "180178923" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peninsula Orthopedic Associates Inc", - "NPIID": "", - "OrganizationZipCode": "940152204" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peninsula Vascular Center PC", - "NPIID": "", - "OrganizationZipCode": "236661777" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Penobscot Respiratory PA", - "NPIID": "", - "OrganizationZipCode": "044016690" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pensacola ASC", - "NPIID": "", - "OrganizationZipCode": "325047152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pensacola Vascular", - "NPIID": "", - "OrganizationZipCode": "325047152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peoples Community Clinic", - "NPIID": "", - "OrganizationZipCode": "787523930" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Perinatal Associates of Sacramento", - "NPIID": "", - "OrganizationZipCode": "95816" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Perinatal Associates of Sacramento", - "NPIID": "", - "OrganizationZipCode": "95816" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peripheral Vascular Institute (ASC)", - "NPIID": "", - "OrganizationZipCode": "191043007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peripheral Vascular Institute (OBL)", - "NPIID": "", - "OrganizationZipCode": "191043007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Perry County Family Practice", - "NPIID": "", - "OrganizationZipCode": "437649749" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Person Family Medical Center Inc", - "NPIID": "", - "OrganizationZipCode": "275734755" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Personal Physicians", - "NPIID": "", - "OrganizationZipCode": "63141" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pervaiz Channah MD And Associates", - "NPIID": "", - "OrganizationZipCode": "92562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peter Dangvu MD Inc", - "NPIID": "", - "OrganizationZipCode": "92648" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peter H Chiu MD", - "NPIID": "", - "OrganizationZipCode": "917761236" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peter J Isaac DO LLC", - "NPIID": "", - "OrganizationZipCode": "181036207" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peter Jackson M D", - "NPIID": "", - "OrganizationZipCode": "911075240" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Peterson Dermatology PC", - "NPIID": "", - "OrganizationZipCode": "304743302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PHA - Irvine", - "NPIID": "", - "OrganizationZipCode": "926633526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PHA Post Acute Care", - "NPIID": "", - "OrganizationZipCode": "926633526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Phila College Of Osteopathic Medicine", - "NPIID": "", - "OrganizationZipCode": "191311626" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Phoebe Corp \u0026 Community Based Services", - "NPIID": "", - "OrganizationZipCode": "19565" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Phoenix Endoscopy LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Phoenix Medical Group", - "NPIID": "", - "OrganizationZipCode": "850722682" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Phoenix Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "852046683" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Phoenix Perinatal Associates", - "NPIID": "", - "OrganizationZipCode": "85014" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Phoenix Rising BHR Inc", - "NPIID": "", - "OrganizationZipCode": "447021017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physical Medicine Associates", - "NPIID": "", - "OrganizationZipCode": "496849200" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physical Occup Therapy At Bridgewater", - "NPIID": "", - "OrganizationZipCode": "08807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physical Therapy Sports Institute", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physician Care PC", - "NPIID": "", - "OrganizationZipCode": "18848" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physician Services Oncology", - "NPIID": "", - "OrganizationZipCode": "317926605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physician Surgery Center", - "NPIID": "", - "OrganizationZipCode": "634016877" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physicians Building Group LLP", - "NPIID": "", - "OrganizationZipCode": "973024204" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physicians Day Surgery Center", - "NPIID": "", - "OrganizationZipCode": "716034718" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physicians Eye Center Of Owensboro", - "NPIID": "", - "OrganizationZipCode": "423031393" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physicians Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "294146066" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physicians Hearing Services", - "NPIID": "", - "OrganizationZipCode": "926918006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physicians Sleep Diagnostics Inc", - "NPIID": "", - "OrganizationZipCode": "39180" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Physicians To Children Inc", - "NPIID": "", - "OrganizationZipCode": "240132218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pico Rivera Community Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "906602037" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Piedmont Eye Associates", - "NPIID": "", - "OrganizationZipCode": "293034213" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PIEDMONT FAMILY PRACTICE PLC", - "NPIID": "", - "OrganizationZipCode": "20186" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Piedmont Neurosurgery And Spine PA", - "NPIID": "", - "OrganizationZipCode": "281471385" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PIEDMONT PEDIATRICS P L C", - "NPIID": "", - "OrganizationZipCode": "201862680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PIEDMONT PEDIATRICS P L C", - "NPIID": "", - "OrganizationZipCode": "201862680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pike County Family Health Center", - "NPIID": "", - "OrganizationZipCode": "18428" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pikeville Medical Center", - "NPIID": "", - "OrganizationZipCode": "415011689" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pima Dermatology PC", - "NPIID": "", - "OrganizationZipCode": "857121337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pinellas County Health Program", - "NPIID": "", - "OrganizationZipCode": "33762" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pineywoods Clinic", - "NPIID": "", - "OrganizationZipCode": "773511226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pioneer Heart Institute", - "NPIID": "", - "OrganizationZipCode": "685062858" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pioneer Sedation PLLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pioneer Valley Surgicenter", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PIS Template", - "NPIID": "", - "OrganizationZipCode": "43213" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PIVAC", - "NPIID": "", - "OrganizationZipCode": "902306600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PIVAC ASC", - "NPIID": "", - "OrganizationZipCode": "902306600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Plainview ASC", - "NPIID": "", - "OrganizationZipCode": "118034910" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Keystone", - "NPIID": "", - "OrganizationZipCode": "189742828" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Los Angeles", - "NPIID": "", - "OrganizationZipCode": "90007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Mar Monte", - "NPIID": "", - "OrganizationZipCode": "951262203" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood of Central NC", - "NPIID": "", - "OrganizationZipCode": "27514" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood of Central PA", - "NPIID": "", - "OrganizationZipCode": "174051469" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood of Delaware", - "NPIID": "", - "OrganizationZipCode": "198012228" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Of Greater New York", - "NPIID": "", - "OrganizationZipCode": "100122413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Of Greater Ohio", - "NPIID": "", - "OrganizationZipCode": "432154311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Of Greater Texas", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood of Metropolitan NJ", - "NPIID": "", - "OrganizationZipCode": "071023528" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood of Middle and East TN", - "NPIID": "", - "OrganizationZipCode": "372281516" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Of SW and Central FL", - "NPIID": "", - "OrganizationZipCode": "342364042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood of Western PA", - "NPIID": "", - "OrganizationZipCode": "152223701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Of Wisconsin", - "NPIID": "", - "OrganizationZipCode": "53202" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Pacific Southwest", - "NPIID": "", - "OrganizationZipCode": "921083538" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PLANNED PARENTHOOD PASADENA INC", - "NPIID": "", - "OrganizationZipCode": "910012452" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood South Atlantic", - "NPIID": "", - "OrganizationZipCode": "27603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Planned Parenthood Southeastern PA", - "NPIID": "", - "OrganizationZipCode": "191076734" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Plantation ASC", - "NPIID": "", - "OrganizationZipCode": "333136072" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Plastic \u0026 Reconstructive Surgeons", - "NPIID": "", - "OrganizationZipCode": "980556230" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PMA Hematolgy/Oncology", - "NPIID": "", - "OrganizationZipCode": "19460" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PMA Medical Specialists LLC", - "NPIID": "", - "OrganizationZipCode": "194600525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PMR Neuroscience Specialists PC", - "NPIID": "", - "OrganizationZipCode": "73120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pomona Community Health Center", - "NPIID": "", - "OrganizationZipCode": "917675822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Port Gamble SKlallam Health Center", - "NPIID": "", - "OrganizationZipCode": "983469734" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Port Huron Eye Institute", - "NPIID": "", - "OrganizationZipCode": "48060" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Port Huron Internal Medicine Assoc PC", - "NPIID": "", - "OrganizationZipCode": "480606588" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Port St. Lucie Anesthesia LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Post Falls Family Medicine PA", - "NPIID": "", - "OrganizationZipCode": "838546056" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pottsville Anesthesia Associates", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Powell Valley Clinic", - "NPIID": "", - "OrganizationZipCode": "82435" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PP Northern Central and Southern NJ", - "NPIID": "", - "OrganizationZipCode": "07960" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PP of Metropolitan Washington DC", - "NPIID": "", - "OrganizationZipCode": "200023431" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PP Of Northern Central and Southern NJ", - "NPIID": "", - "OrganizationZipCode": "081031209" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PP Of Northern Central and Southern NJ", - "NPIID": "", - "OrganizationZipCode": "081031209" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PP of Northern Central and Southern NJ", - "NPIID": "", - "OrganizationZipCode": "07960" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PP of Tennessee and North Mississippi", - "NPIID": "", - "OrganizationZipCode": "381123246" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPCalifornia Central Coast", - "NPIID": "", - "OrganizationZipCode": "931011606" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPGT Surgical Health Services", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPH", - "NPIID": "", - "OrganizationZipCode": "503054557" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPH ActivCentre", - "NPIID": "", - "OrganizationZipCode": "92064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPMD", - "NPIID": "", - "OrganizationZipCode": "212013639" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPMNS", - "NPIID": "", - "OrganizationZipCode": "551141312" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPMT", - "NPIID": "", - "OrganizationZipCode": "59102" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPRM", - "NPIID": "", - "OrganizationZipCode": "802071630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PPSWO", - "NPIID": "", - "OrganizationZipCode": "454023011" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Practice Results", - "NPIID": "", - "OrganizationZipCode": "609361477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Prairie Clinic SC", - "NPIID": "", - "OrganizationZipCode": "535831101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Prairie Family Medicine And Obstetrics", - "NPIID": "", - "OrganizationZipCode": "617410058" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Precision Spine Care", - "NPIID": "", - "OrganizationZipCode": "757014234" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Precision Surgery Center", - "NPIID": "", - "OrganizationZipCode": "755034609" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Preemie Place", - "NPIID": "", - "OrganizationZipCode": "773803259" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Preemie Place", - "NPIID": "", - "OrganizationZipCode": "773803259" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Preemie Place S", - "NPIID": "", - "OrganizationZipCode": "77054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Preemie Place S", - "NPIID": "", - "OrganizationZipCode": "77054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Preferred Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "634014520" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Cardiology Inc.", - "NPIID": "", - "OrganizationZipCode": "900749444" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Cardiovascular Center PLC", - "NPIID": "", - "OrganizationZipCode": "852441617" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Endoscopy LLC", - "NPIID": "", - "OrganizationZipCode": "070121400" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "08530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Family Medicine PA", - "NPIID": "", - "OrganizationZipCode": "08822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Medical Group", - "NPIID": "", - "OrganizationZipCode": "85282" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Obstetrics \u0026 Gynecology", - "NPIID": "", - "OrganizationZipCode": "79118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Premier Physicians Medical Group", - "NPIID": "", - "OrganizationZipCode": "908014152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Presbyterian Hospital Dallas", - "NPIID": "", - "OrganizationZipCode": "75231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Presbyterian Medical Services", - "NPIID": "", - "OrganizationZipCode": "87504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Presbyterian Medical Services", - "NPIID": "", - "OrganizationZipCode": "87504" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Presidio County Health Services", - "NPIID": "", - "OrganizationZipCode": "798450574" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Prestige Medical Associates Inc", - "NPIID": "", - "OrganizationZipCode": "91320" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PrimaCare Medical Centers", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Primaria Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "92879" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Primary Care", - "NPIID": "", - "OrganizationZipCode": "217024683" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Primary Care West PC", - "NPIID": "", - "OrganizationZipCode": "973043007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PRIME", - "NPIID": "", - "OrganizationZipCode": "19401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Prime Health Network", - "NPIID": "", - "OrganizationZipCode": "19468" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PrimeCare Of Southeastern Ohio Inc", - "NPIID": "", - "OrganizationZipCode": "43701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Princeton Medical Group PA", - "NPIID": "", - "OrganizationZipCode": "085403594" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PRIORITY HEALTH CARE", - "NPIID": "", - "OrganizationZipCode": "70072" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PRMA Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "78240" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proaction Behavioral Health Alliance", - "NPIID": "", - "OrganizationZipCode": "49503" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ProActive Heart And Vascular PLLC", - "NPIID": "", - "OrganizationZipCode": "381381706" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PRODTEST", - "NPIID": "", - "OrganizationZipCode": "17327" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Professional Anesthesia Services PLLC", - "NPIID": "", - "OrganizationZipCode": "85741" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PROGRESSIVE NEUROLOGY SLEEP MEDICINE", - "NPIID": "", - "OrganizationZipCode": "925053370" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Eastside ENT", - "NPIID": "", - "OrganizationZipCode": "980347467" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Eastside MRI", - "NPIID": "", - "OrganizationZipCode": "980343062" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Eastside Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "980052023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Eastside Surgeons", - "NPIID": "", - "OrganizationZipCode": "981041172" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Eastside Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "980043804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Hand Wrist \u0026 Elbow Physicians", - "NPIID": "", - "OrganizationZipCode": "980343064" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Highlands MRI", - "NPIID": "", - "OrganizationZipCode": "980295436" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Imaging Center at First Hill", - "NPIID": "", - "OrganizationZipCode": "981044305" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Orthopaedic Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "980295436" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Orthopedic Associates", - "NPIID": "", - "OrganizationZipCode": "980555791" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Pacific Rim Orthopaedic Surg", - "NPIID": "", - "OrganizationZipCode": "982251813" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Retina", - "NPIID": "", - "OrganizationZipCode": "98104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance South Seattle Otolaryngology", - "NPIID": "", - "OrganizationZipCode": "981663059" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Southwest Seattle Orthopedics", - "NPIID": "", - "OrganizationZipCode": "981663059" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Sports Therapy Of Bellevue", - "NPIID": "", - "OrganizationZipCode": "980043708" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Sports Therapy Of Issaquah", - "NPIID": "", - "OrganizationZipCode": "98029" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Surgical Specialists Edmonds", - "NPIID": "", - "OrganizationZipCode": "980267610" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Proliance Surgical Specialists Overlake", - "NPIID": "", - "OrganizationZipCode": "980043804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "PROMESA INC", - "NPIID": "", - "OrganizationZipCode": "104577293" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Promise Healthcare", - "NPIID": "", - "OrganizationZipCode": "618202101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ProOrtho", - "NPIID": "", - "OrganizationZipCode": "980343065" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ProSports Imaging NW", - "NPIID": "", - "OrganizationZipCode": "983742106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Providence ASC", - "NPIID": "", - "OrganizationZipCode": "029062740" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Providence Interventional Associates LLC", - "NPIID": "", - "OrganizationZipCode": "029062853" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Providence Urgent Care", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Psychiatric Centers At San Diego", - "NPIID": "", - "OrganizationZipCode": "921609001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Psychiatry", - "NPIID": "", - "OrganizationZipCode": "75092" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Public Health", - "NPIID": "", - "OrganizationZipCode": "86305" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pueblo Community Health Center Inc", - "NPIID": "", - "OrganizationZipCode": "810042006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Puget Sound Ear Nose And Throat", - "NPIID": "", - "OrganizationZipCode": "980267918" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Puget Sound Orthopaedics", - "NPIID": "", - "OrganizationZipCode": "984998000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Puget Sound Surgical Clinic", - "NPIID": "", - "OrganizationZipCode": "98104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pulmonary And Sleep Assoc Of Hunterdon", - "NPIID": "", - "OrganizationZipCode": "088224665" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pulmonary Disease Specialists PA", - "NPIID": "", - "OrganizationZipCode": "347414405" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pulmonary Practice Associates", - "NPIID": "", - "OrganizationZipCode": "327638360" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Pulmonary Practice Associates", - "NPIID": "", - "OrganizationZipCode": "327638360" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Puyallup Surgical Consultants", - "NPIID": "", - "OrganizationZipCode": "98372" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Puyallup Tribal Health Authority", - "NPIID": "", - "OrganizationZipCode": "984044922" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Quality Of Life Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "35902" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Quartz Hill Walk-In Medical Group", - "NPIID": "", - "OrganizationZipCode": "935363529" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Quartz Hill Walk-In Medical Group", - "NPIID": "", - "OrganizationZipCode": "935363529" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Radiation Oncology Centers Of NV", - "NPIID": "", - "OrganizationZipCode": "891064029" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rafael F Rivas Chacon MD LLC", - "NPIID": "", - "OrganizationZipCode": "331553009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rafic Jarrah MD", - "NPIID": "", - "OrganizationZipCode": "200172153" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rafik R Girgis M D", - "NPIID": "", - "OrganizationZipCode": "917404335" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rainier Orthopedic Institute", - "NPIID": "", - "OrganizationZipCode": "983742106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rajesh B Vrushab MD PLLC", - "NPIID": "", - "OrganizationZipCode": "760216608" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Raleigh ASC", - "NPIID": "", - "OrganizationZipCode": "276102989" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Raleigh Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Raleigh Infectious Diseases Associates", - "NPIID": "", - "OrganizationZipCode": "276072973" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ram Rao MD", - "NPIID": "", - "OrganizationZipCode": "60302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ramadas Abboy MD", - "NPIID": "", - "OrganizationZipCode": "900332469" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ramesh N Dharawat", - "NPIID": "", - "OrganizationZipCode": "952191740" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ramin Pooyan DO Inc", - "NPIID": "", - "OrganizationZipCode": "922700333" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ramsey County Corrections", - "NPIID": "", - "OrganizationZipCode": "551195206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ramsey County Mental Health Center", - "NPIID": "", - "OrganizationZipCode": "55104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ramsey County Social Services", - "NPIID": "", - "OrganizationZipCode": "551304400" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rancho Orthopedics", - "NPIID": "", - "OrganizationZipCode": "922116101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Raritan Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "08869" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rashad Ansari MD", - "NPIID": "", - "OrganizationZipCode": "920836030" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ratul Chatterjee MD", - "NPIID": "", - "OrganizationZipCode": "92648" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Raymond J Esparza MD", - "NPIID": "", - "OrganizationZipCode": "917733200" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Reading OBGYN Womens Birth Center", - "NPIID": "", - "OrganizationZipCode": "19606" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Red River Medicine LLC", - "NPIID": "", - "OrganizationZipCode": "711352634" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Redding CA GI Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Redding GI Anesthesia", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Redding Rancheria Tribal Health Ctr", - "NPIID": "", - "OrganizationZipCode": "960010848" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Redwood Coast Medical Services", - "NPIID": "", - "OrganizationZipCode": "954451100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Redwoods Rural Health Center", - "NPIID": "", - "OrganizationZipCode": "955600769" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Reeves Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "376042100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regal Medical Group", - "NPIID": "", - "OrganizationZipCode": "935397012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Reginald A. Coates MD", - "NPIID": "", - "OrganizationZipCode": "913031530" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Arthritis \u0026 Rheumatology Assoc.", - "NPIID": "", - "OrganizationZipCode": "161484602" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Eye Optical", - "NPIID": "", - "OrganizationZipCode": "55350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Eye Specialists PA", - "NPIID": "", - "OrganizationZipCode": "553500699" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "553500699" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Hand Surgery Associates", - "NPIID": "", - "OrganizationZipCode": "937200340" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Health", - "NPIID": "", - "OrganizationZipCode": "463201533" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Obstetric Consultants", - "NPIID": "", - "OrganizationZipCode": "32207" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Obstetric Consultants", - "NPIID": "", - "OrganizationZipCode": "32207" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regional Primary Care Inc", - "NPIID": "", - "OrganizationZipCode": "637034911" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Regullano and Yu Medical Group", - "NPIID": "", - "OrganizationZipCode": "906403951" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rehabilitation", - "NPIID": "", - "OrganizationZipCode": "333290250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rehabilitation And Spasticity Specialist", - "NPIID": "", - "OrganizationZipCode": "63141" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rejan McCaskill MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926633302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Reliant Medical Group", - "NPIID": "", - "OrganizationZipCode": "01772" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Reliant Psychiatric Services LLC", - "NPIID": "", - "OrganizationZipCode": "650652834" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Renal Consultants of Ventura County Inc", - "NPIID": "", - "OrganizationZipCode": "93010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Renalus Vascular Care", - "NPIID": "", - "OrganizationZipCode": "325047152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Reno Sparks Tribal Health Center", - "NPIID": "", - "OrganizationZipCode": "895021117" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Research", - "NPIID": "", - "OrganizationZipCode": "302604106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Respacare", - "NPIID": "", - "OrganizationZipCode": "08807" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Respiratory And Sleep Disorders Ctr PLLC", - "NPIID": "", - "OrganizationZipCode": "338378980" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Restoration Plastic Surgery P.C.", - "NPIID": "", - "OrganizationZipCode": "802343892" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Associates Of Coral Springs LLC", - "NPIID": "", - "OrganizationZipCode": "33071" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Associates Of Kentucky", - "NPIID": "", - "OrganizationZipCode": "40509" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Associates Of Southern Utah", - "NPIID": "", - "OrganizationZipCode": "847902579" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Center Of Texas", - "NPIID": "", - "OrganizationZipCode": "760921352" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Center Of Vermont", - "NPIID": "", - "OrganizationZipCode": "05403" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "973022152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Consultants of Idaho", - "NPIID": "", - "OrganizationZipCode": "836428395" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Consultants Of Nevada", - "NPIID": "", - "OrganizationZipCode": "891440514" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Consultants Of Nevada", - "NPIID": "", - "OrganizationZipCode": "891440519" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Consultants Of Southern Utah", - "NPIID": "", - "OrganizationZipCode": "891440519" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Consultants Of Utah", - "NPIID": "", - "OrganizationZipCode": "891440519" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Consultants PA", - "NPIID": "", - "OrganizationZipCode": "761043918" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Northwest PC", - "NPIID": "", - "OrganizationZipCode": "986632148" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Specialists Of Idaho", - "NPIID": "", - "OrganizationZipCode": "837131969" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Specialists Of Idaho Partners", - "NPIID": "", - "OrganizationZipCode": "837131969" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Specialists Of San Antonio PLLC", - "NPIID": "", - "OrganizationZipCode": "78215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Specialty Institute", - "NPIID": "", - "OrganizationZipCode": "325032030" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retina Vitreous Consultants Inc", - "NPIID": "", - "OrganizationZipCode": "151462357" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Retinal Consultants Of Arizona Ltd", - "NPIID": "", - "OrganizationZipCode": "850142709" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ReVASK Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "672143727" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Reynolds And Anliker", - "NPIID": "", - "OrganizationZipCode": "66801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "RGV Vascular Care", - "NPIID": "", - "OrganizationZipCode": "785208817" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatic Disease Associates LTD", - "NPIID": "", - "OrganizationZipCode": "190901709" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology \u0026 Osteoporosis Ctr of Mphs", - "NPIID": "", - "OrganizationZipCode": "38018" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Assoc PC", - "NPIID": "", - "OrganizationZipCode": "527221624" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates Central Florida", - "NPIID": "", - "OrganizationZipCode": "328068557" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates Of Baltimore LLC", - "NPIID": "", - "OrganizationZipCode": "212865818" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates Of Long Island", - "NPIID": "", - "OrganizationZipCode": "117872829" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates Of Maui", - "NPIID": "", - "OrganizationZipCode": "967538107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "402182458" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates P.C.", - "NPIID": "", - "OrganizationZipCode": "352054015" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates P.C.", - "NPIID": "", - "OrganizationZipCode": "462605307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Associates PA", - "NPIID": "", - "OrganizationZipCode": "041022643" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Consultants LLP", - "NPIID": "", - "OrganizationZipCode": "115572325" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Medical Specialists PC", - "NPIID": "", - "OrganizationZipCode": "190635136" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Solutions", - "NPIID": "", - "OrganizationZipCode": "782391971" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rheumatology Therapeutics Medical Center", - "NPIID": "", - "OrganizationZipCode": "913563502" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rice Medical Center", - "NPIID": "", - "OrganizationZipCode": "77434" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Richard B Doering MD Inc", - "NPIID": "", - "OrganizationZipCode": "926633506" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Richard H Flowers III MD", - "NPIID": "", - "OrganizationZipCode": "392164510" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Richard Shubin MD Inc", - "NPIID": "", - "OrganizationZipCode": "910067401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Richmond ASC", - "NPIID": "", - "OrganizationZipCode": "232302942" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ridge Lake Ambulatory Surgery Center", - "NPIID": "", - "OrganizationZipCode": "381209411" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "RIDGECREST VILLAGE", - "NPIID": "", - "OrganizationZipCode": "52806" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riggs Community Health Center Inc", - "NPIID": "", - "OrganizationZipCode": "479042138" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rita Tenenbaum MD", - "NPIID": "", - "OrganizationZipCode": "902773032" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "River Drive Surgery And Laser Center", - "NPIID": "", - "OrganizationZipCode": "074071317" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "River Oaks Endoscopy", - "NPIID": "", - "OrganizationZipCode": "773042861" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rivers Edge Pediatrics Inc", - "NPIID": "", - "OrganizationZipCode": "430172155" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside Anesthesia Services", - "NPIID": "", - "OrganizationZipCode": "32244" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "554541478" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside EyeCare Professionals", - "NPIID": "", - "OrganizationZipCode": "960012822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "432142464" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside Orthopedic Contract Services", - "NPIID": "", - "OrganizationZipCode": "922626972" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside Regional Pediatric Med Grp Inc", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside San Bernardino Co IHS Inc", - "NPIID": "", - "OrganizationZipCode": "923135172" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside Spine And Pain Physicians", - "NPIID": "", - "OrganizationZipCode": "322445891" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside Surgery Center Inc", - "NPIID": "", - "OrganizationZipCode": "960012822" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverside VAC", - "NPIID": "", - "OrganizationZipCode": "925011733" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverview Lifeline Center PLLC", - "NPIID": "", - "OrganizationZipCode": "606860020" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Riverwalk Ambulatory Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "34205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "RKM Primary Care", - "NPIID": "", - "OrganizationZipCode": "70722" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "RMVI dba American Vein Vascular Inst", - "NPIID": "", - "OrganizationZipCode": "810033320" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "RNA of Rockford LLC", - "NPIID": "", - "OrganizationZipCode": "611075089" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Roan Counseling LLC", - "NPIID": "", - "OrganizationZipCode": "711353032" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Roanoke Heart Institute PLC", - "NPIID": "", - "OrganizationZipCode": "240141709" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Roanoke Valley Center For Sight", - "NPIID": "", - "OrganizationZipCode": "24153" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert C Feldman MD PA", - "NPIID": "", - "OrganizationZipCode": "208506341" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert J. Bae MD A Med. Corp.", - "NPIID": "", - "OrganizationZipCode": "926607715" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert K Brateman MD PC", - "NPIID": "", - "OrganizationZipCode": "483752160" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert K Moffatt MD", - "NPIID": "", - "OrganizationZipCode": "930031660" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert M Plancey MD Inc", - "NPIID": "", - "OrganizationZipCode": "910077624" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert N Cann MD", - "NPIID": "", - "OrganizationZipCode": "911062434" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert O Flores MD", - "NPIID": "", - "OrganizationZipCode": "913404349" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert V DiMeglio MD LLC", - "NPIID": "", - "OrganizationZipCode": "303091796" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Robert Vazquez MD", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rockford Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "611075075" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rockford Nephrology", - "NPIID": "", - "OrganizationZipCode": "60303" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocking Horse Center", - "NPIID": "", - "OrganizationZipCode": "455051965" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rockland Eye Physicians And Surgeons", - "NPIID": "", - "OrganizationZipCode": "10923" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mount Eye", - "NPIID": "", - "OrganizationZipCode": "278048207" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain ASC", - "NPIID": "", - "OrganizationZipCode": "809092804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Eye Center Inc", - "NPIID": "", - "OrganizationZipCode": "810011236" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Family Physicians PC", - "NPIID": "", - "OrganizationZipCode": "805244051" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Family Physicians West", - "NPIID": "", - "OrganizationZipCode": "805244051" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Pediatric Cardiology", - "NPIID": "", - "OrganizationZipCode": "80124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Pediatric Cardiology", - "NPIID": "", - "OrganizationZipCode": "80124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Primary Care", - "NPIID": "", - "OrganizationZipCode": "800214567" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Spine And Sport", - "NPIID": "", - "OrganizationZipCode": "801246733" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rocky Mountain Vascular", - "NPIID": "", - "OrganizationZipCode": "809092804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Roger J Epstein MD LLC", - "NPIID": "", - "OrganizationZipCode": "973811934" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rogue Valley Physicians PC", - "NPIID": "", - "OrganizationZipCode": "975048198" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ronald Abramson MD", - "NPIID": "", - "OrganizationZipCode": "01778" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rose Hill Medical Center", - "NPIID": "", - "OrganizationZipCode": "284580639" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rosemary B Desloge MD", - "NPIID": "", - "OrganizationZipCode": "100280322" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rosenfeld VanWirt PC", - "NPIID": "", - "OrganizationZipCode": "181042351" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "RoshanKMathew MD PSC Advanced Cardiology", - "NPIID": "", - "OrganizationZipCode": "423032175" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rural Health Care Inc DBA Aza Health", - "NPIID": "", - "OrganizationZipCode": "321775042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rural Health Center", - "NPIID": "", - "OrganizationZipCode": "187027012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rural Health Services Consortium Inc.", - "NPIID": "", - "OrganizationZipCode": "378576028" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Rushville Family Health Services", - "NPIID": "", - "OrganizationZipCode": "461731165" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Russiaville", - "NPIID": "", - "OrganizationZipCode": "469799146" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ruth A Hamad M D APC", - "NPIID": "", - "OrganizationZipCode": "917406251" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "S Philadelphia ASC", - "NPIID": "", - "OrganizationZipCode": "191454114" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "S Philadelphia Vascular", - "NPIID": "", - "OrganizationZipCode": "191454114" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "S.E.E.K. Arizona LLC", - "NPIID": "", - "OrganizationZipCode": "85018" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sabates Eye Centers", - "NPIID": "", - "OrganizationZipCode": "641803908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sacopee Valley Health Center", - "NPIID": "", - "OrganizationZipCode": "04068" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sacramento Native American Health Center", - "NPIID": "", - "OrganizationZipCode": "95811" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saddleback Eye Medical Assoc", - "NPIID": "", - "OrganizationZipCode": "926916398" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saddleback Family Urgent Care", - "NPIID": "", - "OrganizationZipCode": "946081803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saddleback Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "926537632" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saddleback Resp Medical Group", - "NPIID": "", - "OrganizationZipCode": "926533687" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saint Barnabas Outpatient Centers", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saint Joseph Physician Network", - "NPIID": "", - "OrganizationZipCode": "466606309" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saint Moscati Community Health Care", - "NPIID": "", - "OrganizationZipCode": "973051065" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Saint Youstina Community Clinic", - "NPIID": "", - "OrganizationZipCode": "92701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SAKDC Surgical Center", - "NPIID": "", - "OrganizationZipCode": "782166254" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salem Laser And Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salem Pain and Spine Specialists PC", - "NPIID": "", - "OrganizationZipCode": "973026558" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salem Pediatric Clinic LLP", - "NPIID": "", - "OrganizationZipCode": "973022522" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salem Pulmonary Associates PC", - "NPIID": "", - "OrganizationZipCode": "973026217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salem Rehab Associates Inc", - "NPIID": "", - "OrganizationZipCode": "973035630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salem Rheumatology and Infusions LLC", - "NPIID": "", - "OrganizationZipCode": "973024195" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salem Sleep Medicine PC", - "NPIID": "", - "OrganizationZipCode": "973024205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salus University", - "NPIID": "", - "OrganizationZipCode": "190271541" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Salveo Family Medicine PC", - "NPIID": "", - "OrganizationZipCode": "973383052" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Same Day Medical Care", - "NPIID": "", - "OrganizationZipCode": "925434391" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Samir Fasheh MD", - "NPIID": "", - "OrganizationZipCode": "935513425" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Samir Fasheh MD", - "NPIID": "", - "OrganizationZipCode": "935513425" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Samuel U Rodgers Health Center", - "NPIID": "", - "OrganizationZipCode": "641242323" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Care Center", - "NPIID": "", - "OrganizationZipCode": "78212" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Eye Center P.A.", - "NPIID": "", - "OrganizationZipCode": "782151625" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Gastroenterology Endo Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio GI Anesthesia", - "NPIID": "", - "OrganizationZipCode": "37215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Kidney Disease", - "NPIID": "", - "OrganizationZipCode": "782166218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Medical Center", - "NPIID": "", - "OrganizationZipCode": "927063621" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatric Clinic", - "NPIID": "", - "OrganizationZipCode": "782293646" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatric Clinic", - "NPIID": "", - "OrganizationZipCode": "782293646" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatric Developmental Svcs", - "NPIID": "", - "OrganizationZipCode": "782293646" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatric Developmental Svcs", - "NPIID": "", - "OrganizationZipCode": "782293646" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatric Surgery Associates", - "NPIID": "", - "OrganizationZipCode": "782293735" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatric Surgery Associates", - "NPIID": "", - "OrganizationZipCode": "782293735" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatrix Specialists", - "NPIID": "", - "OrganizationZipCode": "782293735" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Antonio Pediatrix Specialists", - "NPIID": "", - "OrganizationZipCode": "782293735" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Diego ASC", - "NPIID": "", - "OrganizationZipCode": "921024500" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Diego Vascular Care", - "NPIID": "", - "OrganizationZipCode": "921024544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Dimas Family Practice", - "NPIID": "", - "OrganizationZipCode": "917731102" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Joaquin Cardiology Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "952043759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Jose (Not Used Here)", - "NPIID": "", - "OrganizationZipCode": "null" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Jose (Not Used Here)", - "NPIID": "", - "OrganizationZipCode": "null" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Marino Pediatric Associates", - "NPIID": "", - "OrganizationZipCode": "911082357" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Pedro Pediatric Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "907312997" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "San Ysidro Health Center", - "NPIID": "", - "OrganizationZipCode": "92173" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sandhills Rheumatology LLC", - "NPIID": "", - "OrganizationZipCode": "292298016" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Santa Ynez Tribal Health Clinic", - "NPIID": "", - "OrganizationZipCode": "934609679" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sarasota Anesthesia Services LLC", - "NPIID": "", - "OrganizationZipCode": "452636662" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sarasota Arthritis Center", - "NPIID": "", - "OrganizationZipCode": "342396026" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sarasota Physicians Surgical Center", - "NPIID": "", - "OrganizationZipCode": "342395112" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Satilla Rheumatology \u0026 Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "315014724" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Satya Dandamudi MD FACP", - "NPIID": "", - "OrganizationZipCode": "935345503" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Satya Dandamudi MD FACP", - "NPIID": "", - "OrganizationZipCode": "935345503" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Savannah Rheumatology Associates P.C.", - "NPIID": "", - "OrganizationZipCode": "314056009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Savannah River Dermatology", - "NPIID": "", - "OrganizationZipCode": "309078221" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Savannah Vascular Institute", - "NPIID": "", - "OrganizationZipCode": "314046261" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Savitri K Rambhatla MD", - "NPIID": "", - "OrganizationZipCode": "906404317" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SBFP", - "NPIID": "", - "OrganizationZipCode": "285573330" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SC Anesthesia P.C.", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SCARS Management Services", - "NPIID": "", - "OrganizationZipCode": "926607652" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SCH Behavioral Health Services", - "NPIID": "", - "OrganizationZipCode": "254012890" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SCHC Dental Clinic", - "NPIID": "", - "OrganizationZipCode": "960011125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Schuylkill Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "179013875" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Schuylkill Endoscopy Center Anes", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Schwenksville Family Practice", - "NPIID": "", - "OrganizationZipCode": "19473" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SCIHP Employee", - "NPIID": "", - "OrganizationZipCode": "95401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Scotland Medical Center P.A.", - "NPIID": "", - "OrganizationZipCode": "28352" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Scott Jenkins MD", - "NPIID": "", - "OrganizationZipCode": "926595877" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sea View Pediatric Medical Assoc", - "NPIID": "", - "OrganizationZipCode": "928684203" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seacoast Ortho \u0026sports Med LLC", - "NPIID": "", - "OrganizationZipCode": "019503873" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seacoast Ortho Assoc \u0026 Sports Med LLC", - "NPIID": "", - "OrganizationZipCode": "019503873" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seacoast Orthopedic Associates", - "NPIID": "", - "OrganizationZipCode": "019503873" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seaside Endoscopy Pavilion", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seattle Neuro And Spine Surgery", - "NPIID": "", - "OrganizationZipCode": "981224308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seattle Obstetrics and Gynecology", - "NPIID": "", - "OrganizationZipCode": "981043558" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seattle Orthopaedic And Fracture Clinic", - "NPIID": "", - "OrganizationZipCode": "98104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seattle Orthopedic Center MRI", - "NPIID": "", - "OrganizationZipCode": "981036907" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seattle Orthopedic Center PT", - "NPIID": "", - "OrganizationZipCode": "981036907" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Selma Medical Associates Inc", - "NPIID": "", - "OrganizationZipCode": "226013834" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Senior Care Medical Assoc Inc", - "NPIID": "", - "OrganizationZipCode": "926533116" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Senior Clinic", - "NPIID": "", - "OrganizationZipCode": "76180" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seniors Choice Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seth B Cutler MD LLC", - "NPIID": "", - "OrganizationZipCode": "33332" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Hills Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "32308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star Endocrinology", - "NPIID": "", - "OrganizationZipCode": "925433817" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star Family Care", - "NPIID": "", - "OrganizationZipCode": "925859658" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star Nephrology", - "NPIID": "", - "OrganizationZipCode": "925433817" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star Neurosurgery", - "NPIID": "", - "OrganizationZipCode": "925866547" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star OB/GYN", - "NPIID": "", - "OrganizationZipCode": "925434423" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star OB/GYN - Anaheim", - "NPIID": "", - "OrganizationZipCode": "928055584" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star Orthopedics", - "NPIID": "", - "OrganizationZipCode": "925445042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star Surgery", - "NPIID": "", - "OrganizationZipCode": "92543" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Seven Star Urgent Care", - "NPIID": "", - "OrganizationZipCode": "925433813" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shah Associates MD LLC", - "NPIID": "", - "OrganizationZipCode": "206364871" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shahin Etebar MD", - "NPIID": "", - "OrganizationZipCode": "922701772" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shapiro Stafford \u0026 Yee", - "NPIID": "", - "OrganizationZipCode": "91007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sharp Dermatolpathology LLC", - "NPIID": "", - "OrganizationZipCode": "39705" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shasta Community Health Center", - "NPIID": "", - "OrganizationZipCode": "960011125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shawnee Christian Healthcare Center", - "NPIID": "", - "OrganizationZipCode": "402122522" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shawnee Mental Health Center Inc", - "NPIID": "", - "OrganizationZipCode": "456623944" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sheboygan Medical Center", - "NPIID": "", - "OrganizationZipCode": "530813174" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shenandoah Community Health", - "NPIID": "", - "OrganizationZipCode": "254012890" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shepard Eye Center ASC", - "NPIID": "", - "OrganizationZipCode": "93454" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shepherd Eye Center", - "NPIID": "", - "OrganizationZipCode": "891213803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shepherd Eye Surgicenter", - "NPIID": "", - "OrganizationZipCode": "891213803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shinnecock Indian Health Services", - "NPIID": "", - "OrganizationZipCode": "119685009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shohet Ear Associates Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "926634246" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shreveport Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "711055680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Shreveport Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "711355477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sibte Kazmi MD LLC", - "NPIID": "", - "OrganizationZipCode": "217014519" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sierra Madre Community Medical Group", - "NPIID": "", - "OrganizationZipCode": "910242492" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sierra Medical Group", - "NPIID": "", - "OrganizationZipCode": "935397008" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sierra Medical Group", - "NPIID": "", - "OrganizationZipCode": "935397008" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sierra Nevada ASC", - "NPIID": "", - "OrganizationZipCode": "895021605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sierra Nevada Vascular", - "NPIID": "", - "OrganizationZipCode": "895021605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sight Eye Clinic P.C.", - "NPIID": "", - "OrganizationZipCode": "494646904" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Signature - SCOSA", - "NPIID": "", - "OrganizationZipCode": "633684281" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Signature Allergy and Immunology", - "NPIID": "", - "OrganizationZipCode": "63141" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Signature Dermatology and Aesthetics", - "NPIID": "", - "OrganizationZipCode": "75251" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Signature Medical Group Of KC", - "NPIID": "", - "OrganizationZipCode": "641803915" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Signature Orthopedics", - "NPIID": "", - "OrganizationZipCode": "63128" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Signature Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "63128" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SIHC Behavioral Health", - "NPIID": "", - "OrganizationZipCode": "919011668" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Siletz Community Health Clinic", - "NPIID": "", - "OrganizationZipCode": "97380" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Simi Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "93063218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Simi Family Medical Group", - "NPIID": "", - "OrganizationZipCode": "930651500" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Simi Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "930651311" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Simmons Care Clinic", - "NPIID": "", - "OrganizationZipCode": "727614603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SIMMONSMARTIN", - "NPIID": "", - "OrganizationZipCode": "16505" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Siskiyou Community Health Center", - "NPIID": "", - "OrganizationZipCode": "975261257" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SJ Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "925433124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Skagit Northwest Orthopedics", - "NPIID": "", - "OrganizationZipCode": "982746033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Skagit Northwest PT And OT", - "NPIID": "", - "OrganizationZipCode": "982746033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Skagit Valley OBH", - "NPIID": "", - "OrganizationZipCode": "982744126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Skagit Valley OBH", - "NPIID": "", - "OrganizationZipCode": "982744126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Skin And Mohs Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "641803317" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SkinScience", - "NPIID": "", - "OrganizationZipCode": "850164351" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sleep Lab Department", - "NPIID": "", - "OrganizationZipCode": "46062" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SleepManatee", - "NPIID": "", - "OrganizationZipCode": "342095604" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Slocum ASC", - "NPIID": "", - "OrganizationZipCode": "97401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Slocum Orthopedics PC", - "NPIID": "", - "OrganizationZipCode": "97401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Smith Surgical Services", - "NPIID": "", - "OrganizationZipCode": "63128" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Snapfinger ASC", - "NPIID": "", - "OrganizationZipCode": "300354044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Snapfinger Vascular Care", - "NPIID": "", - "OrganizationZipCode": "300354044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Snyder-Hopkins Family Medicine Center", - "NPIID": "", - "OrganizationZipCode": "75069" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "So Ortho Assoc/Ortho Inst Of W KY", - "NPIID": "", - "OrganizationZipCode": "629486334" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Soaring Healthcare", - "NPIID": "", - "OrganizationZipCode": "751041039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Soha Dolatabadi M.D.", - "NPIID": "", - "OrganizationZipCode": "900173908" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sokya/Achieve", - "NPIID": "", - "OrganizationZipCode": "921601422" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sol Valley Surgery Center", - "NPIID": "", - "OrganizationZipCode": "852246290" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Solano Dermatology Associates", - "NPIID": "", - "OrganizationZipCode": "94590" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Solidaritus", - "NPIID": "", - "OrganizationZipCode": "741352618" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sonoma County Indian Health Project", - "NPIID": "", - "OrganizationZipCode": "954014122" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sonoma Valley Comm Health Center", - "NPIID": "", - "OrganizationZipCode": "954765414" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SonRise Pediatrics \u0026 Wellness", - "NPIID": "", - "OrganizationZipCode": "437014663" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sound Vascular PS", - "NPIID": "", - "OrganizationZipCode": "980019625" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Bay Family Health Care", - "NPIID": "", - "OrganizationZipCode": "905054732" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Bend OBH", - "NPIID": "", - "OrganizationZipCode": "466011033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Bend OBH", - "NPIID": "", - "OrganizationZipCode": "466011033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Central Family Health Center", - "NPIID": "", - "OrganizationZipCode": "900113629" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Coast Eye Care Centers", - "NPIID": "", - "OrganizationZipCode": "926533630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Coast Pediatrics", - "NPIID": "", - "OrganizationZipCode": "927045751" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South County Community Health Care Team", - "NPIID": "", - "OrganizationZipCode": "02879" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South East Eye", - "NPIID": "", - "OrganizationZipCode": "315204300" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South East Eye Laser And Surgery Center", - "NPIID": "", - "OrganizationZipCode": "315204300" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Fl Orthopaedics \u0026 Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "349952900" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Florida Interventional Inc", - "NPIID": "", - "OrganizationZipCode": "33324" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Florida Laser Eye Center LLC", - "NPIID": "", - "OrganizationZipCode": "33322" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Georgia Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "317926616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Jersey Eye Physicians PA", - "NPIID": "", - "OrganizationZipCode": "080571556" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Mississippi Wound Management LLC", - "NPIID": "", - "OrganizationZipCode": "396290768" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Of Market Health Center", - "NPIID": "", - "OrganizationZipCode": "94103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Plains Surgery Ctr", - "NPIID": "", - "OrganizationZipCode": "794164732" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Shore Neurologic Associates", - "NPIID": "", - "OrganizationZipCode": "117519182" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Shreveport Family Medicine", - "NPIID": "", - "OrganizationZipCode": "711353134" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Texas Rural Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "780140600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "South Zanesville Family Medical Center", - "NPIID": "", - "OrganizationZipCode": "437016172" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southampton Hospital", - "NPIID": "", - "OrganizationZipCode": "119685009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southeast Inc", - "NPIID": "", - "OrganizationZipCode": "43215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southeast Vascular Group", - "NPIID": "", - "OrganizationZipCode": "32503" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern Alabama Surgery LLC", - "NPIID": "", - "OrganizationZipCode": "363012012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern Bone And Joint Specialists", - "NPIID": "", - "OrganizationZipCode": "394018246" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern CA OBH", - "NPIID": "", - "OrganizationZipCode": "927084004" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern California Medical Center Inc", - "NPIID": "", - "OrganizationZipCode": "917323161" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern California Primary Care Med Grp", - "NPIID": "", - "OrganizationZipCode": "925320424" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern California Primary Care Med Grp", - "NPIID": "", - "OrganizationZipCode": "925320424" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern Illinois Dermatology", - "NPIID": "", - "OrganizationZipCode": "629483150" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern Indian Health Council Inc", - "NPIID": "", - "OrganizationZipCode": "919011668" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "394018246" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southern Vitreoretinal Associates PL", - "NPIID": "", - "OrganizationZipCode": "323084580" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southfield Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "483104005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southland GI Medical Corporation", - "NPIID": "", - "OrganizationZipCode": "92562" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwest Cardiology Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "92586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwest Community Health Center", - "NPIID": "", - "OrganizationZipCode": "066051116" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwest Eye Institute", - "NPIID": "", - "OrganizationZipCode": "799365922" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwest Heart Institute Medical Group", - "NPIID": "", - "OrganizationZipCode": "925914679" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwest Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "608052108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwest Pulmonary Associates LLP", - "NPIID": "", - "OrganizationZipCode": "752314427" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwest Virginia Nephrology", - "NPIID": "", - "OrganizationZipCode": "240183440" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Southwestern Eye Center", - "NPIID": "", - "OrganizationZipCode": "852138436" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Space Coast Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "329553723" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spacecoast Anesthesia Services LLC", - "NPIID": "", - "OrganizationZipCode": "452636658" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spartanburg Dermatology And Skin Surgery", - "NPIID": "", - "OrganizationZipCode": "29303" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Specialists In Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "631417146" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Specialty Clinics", - "NPIID": "", - "OrganizationZipCode": "683552470" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Specialty Surgery Center of San Antonio", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Specialty Surgical Center LLC", - "NPIID": "", - "OrganizationZipCode": "392326621" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Specialty Surgical Ctr Of N Brunswick", - "NPIID": "", - "OrganizationZipCode": "089023145" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spectrum Ambulatory Surgery Center", - "NPIID": "", - "OrganizationZipCode": "041022603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spectrum Orthopaedics", - "NPIID": "", - "OrganizationZipCode": "041022603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spectrum Radiology South", - "NPIID": "", - "OrganizationZipCode": "041022603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spine And Scoliosis Specialists", - "NPIID": "", - "OrganizationZipCode": "274082801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spine And Sports Institute", - "NPIID": "", - "OrganizationZipCode": "993523592" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Splinter Medical Group", - "NPIID": "", - "OrganizationZipCode": "917733211" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spokane Allergy And Asthma Clinic", - "NPIID": "", - "OrganizationZipCode": "992012446" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spokane ENT Clinic", - "NPIID": "", - "OrganizationZipCode": "992102242" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spokane Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "992042509" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spokane Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "992042509" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spokane Optical", - "NPIID": "", - "OrganizationZipCode": "992042509" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spokane Psychology And Neuropsychology", - "NPIID": "", - "OrganizationZipCode": "992017104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sports Medicine Associates Of SA", - "NPIID": "", - "OrganizationZipCode": "782910196" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sports Orthopedics And Spine", - "NPIID": "", - "OrganizationZipCode": "383052040" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spring Creek Pediatrics Inc", - "NPIID": "", - "OrganizationZipCode": "374123984" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spring Park Surgery Center", - "NPIID": "", - "OrganizationZipCode": "528072125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Spring Street Dermatology", - "NPIID": "", - "OrganizationZipCode": "10012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Springfield Cardiology", - "NPIID": "", - "OrganizationZipCode": "455032726" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Springfield OR Anesthesia Associates LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Squaw Peak Surgical Facility", - "NPIID": "", - "OrganizationZipCode": "850205514" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Squirrel Hill Health Center", - "NPIID": "", - "OrganizationZipCode": "152172917" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Augustine Medical Center Inc", - "NPIID": "", - "OrganizationZipCode": "917541746" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Charles Orthopaedic Surgery Assoc Inc", - "NPIID": "", - "OrganizationZipCode": "633684281" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Croix Dermatology PA", - "NPIID": "", - "OrganizationZipCode": "550826062" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St George Endoscopy", - "NPIID": "", - "OrganizationZipCode": "847906898" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St George Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St John Heart Clinic", - "NPIID": "", - "OrganizationZipCode": "60622" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Josephs Ear Nose Throat Clinic PLLC", - "NPIID": "", - "OrganizationZipCode": "838545153" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Louis ASC", - "NPIID": "", - "OrganizationZipCode": "630317928" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Louis Northwest", - "NPIID": "", - "OrganizationZipCode": "630317928" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Lukes", - "NPIID": "", - "OrganizationZipCode": "346896221" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Lukes Healthcare Behavior Health", - "NPIID": "", - "OrganizationZipCode": "88005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Lukes Healthcare Clinic", - "NPIID": "", - "OrganizationZipCode": "880052739" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Lukes Surg Facility at the Villages", - "NPIID": "", - "OrganizationZipCode": "321621762" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Lukes Surg Facility Tarpon Springs", - "NPIID": "", - "OrganizationZipCode": "346896221" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Maries Family Medicine", - "NPIID": "", - "OrganizationZipCode": "838611813" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Mary Medical Center CARE Clinic", - "NPIID": "", - "OrganizationZipCode": "908133321" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ST OF TN Disability Determination Sectio", - "NPIID": "", - "OrganizationZipCode": "37202" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Paul Ramsey County Public Health", - "NPIID": "", - "OrganizationZipCode": "551012260" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St Thomas Medical Group Endoscopy", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St. Augustine Anesthesia Partners LLC", - "NPIID": "", - "OrganizationZipCode": "320866565" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St. Augustine Endoscopy Center LLC", - "NPIID": "", - "OrganizationZipCode": "320866564" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "St. Lukes At The Villages", - "NPIID": "", - "OrganizationZipCode": "321621762" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stanley Wijesekera MD", - "NPIID": "", - "OrganizationZipCode": "906404316" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "STAR ASC", - "NPIID": "", - "OrganizationZipCode": "782073034" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Star Cardiology Care PC", - "NPIID": "", - "OrganizationZipCode": "088226039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "STAR Therapy", - "NPIID": "", - "OrganizationZipCode": "980321042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "STAR Vascular Access Center", - "NPIID": "", - "OrganizationZipCode": "782073034" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stark Ambulatory Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "447182878" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stark Medical Specialties", - "NPIID": "", - "OrganizationZipCode": "446465085" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Steiman Neurology Group Inc.", - "NPIID": "", - "OrganizationZipCode": "432132441" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephanee Hethumuni MD", - "NPIID": "", - "OrganizationZipCode": "906404317" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephen C Spain MD", - "NPIID": "", - "OrganizationZipCode": "757033046" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephen D Helper", - "NPIID": "", - "OrganizationZipCode": "441244104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephen J Ramey MD", - "NPIID": "", - "OrganizationZipCode": "711355237" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephen Nguyen MD", - "NPIID": "", - "OrganizationZipCode": "92586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephen T. Sigmund MD", - "NPIID": "", - "OrganizationZipCode": "93465" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephen T. Sigmund MD", - "NPIID": "", - "OrganizationZipCode": "93465" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephen Wan MD PLLC", - "NPIID": "", - "OrganizationZipCode": "100134396" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stephenville Medical And Surgical Clinic", - "NPIID": "", - "OrganizationZipCode": "764011803" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sterling Area Health Center", - "NPIID": "", - "OrganizationZipCode": "486590740" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sterling Primary Care", - "NPIID": "", - "OrganizationZipCode": "06443" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sterling Spine LLC", - "NPIID": "", - "OrganizationZipCode": "711355313" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Steven W York MD", - "NPIID": "", - "OrganizationZipCode": "913254274" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sth Orange Cty Out-Patient Surgery Ctr", - "NPIID": "", - "OrganizationZipCode": "92673" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stillaguamish Behavioral Health", - "NPIID": "", - "OrganizationZipCode": "98223" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stillaguamish Massage Clinic", - "NPIID": "", - "OrganizationZipCode": "98223" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stillaguamish Tribal Health Clinic", - "NPIID": "", - "OrganizationZipCode": "98223" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stillwater Eyecare Center", - "NPIID": "", - "OrganizationZipCode": "740744126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stillwater Medical Center Practice", - "NPIID": "", - "OrganizationZipCode": "74074" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stillwater Urology Associates", - "NPIID": "", - "OrganizationZipCode": "740744349" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stonecrest Family Medicine", - "NPIID": "", - "OrganizationZipCode": "400658169" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stuart Cardiology Group", - "NPIID": "", - "OrganizationZipCode": "349963329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Stuart S Kassan MD FACP PC", - "NPIID": "", - "OrganizationZipCode": "802282259" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "STV Pulmonary Group LLC", - "NPIID": "", - "OrganizationZipCode": "352051625" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Subhendu Kundu Medical PC", - "NPIID": "", - "OrganizationZipCode": "11230" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Suburban Eye Associates PC", - "NPIID": "", - "OrganizationZipCode": "190462725" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Suburban Medical Group LLC", - "NPIID": "", - "OrganizationZipCode": "191283272" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Success TMS", - "NPIID": "", - "OrganizationZipCode": "334012343" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sudan Medical Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "79371" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sudha Govindarajan MD", - "NPIID": "", - "OrganizationZipCode": "906404316" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Summit ElderCare", - "NPIID": "", - "OrganizationZipCode": "016082898" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Summit Eye Care PA", - "NPIID": "", - "OrganizationZipCode": "271033207" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Summit Orthopedics", - "NPIID": "", - "OrganizationZipCode": "804439999" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Summit Surgery Center Of Buckhead LLC", - "NPIID": "", - "OrganizationZipCode": "303091405" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sun Coast Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sundance Medical Center", - "NPIID": "", - "OrganizationZipCode": "891231845" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sunila N Fuster MD Inc", - "NPIID": "", - "OrganizationZipCode": "905034353" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sunlife Medical Group", - "NPIID": "", - "OrganizationZipCode": "922602871" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sunrise Treatment Center", - "NPIID": "", - "OrganizationZipCode": "452477957" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sunrise Vascular", - "NPIID": "", - "OrganizationZipCode": "785208817" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sunset Community Health Center", - "NPIID": "", - "OrganizationZipCode": "85364" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sunset Community Health Center", - "NPIID": "", - "OrganizationZipCode": "85364" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SUNY College of Optometry", - "NPIID": "", - "OrganizationZipCode": "100368005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Superior Family Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "926632723" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Supportive Care", - "NPIID": "", - "OrganizationZipCode": "217024337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Supportive Housing", - "NPIID": "", - "OrganizationZipCode": "11201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SURE Practice", - "NPIID": "", - "OrganizationZipCode": "958113010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Suresh B Neelagaru MD PA", - "NPIID": "", - "OrganizationZipCode": "79106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SureVision Eye Centers - Midwest LLC", - "NPIID": "", - "OrganizationZipCode": "630422735" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgery and ENT", - "NPIID": "", - "OrganizationZipCode": "217014586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgery Associates", - "NPIID": "", - "OrganizationZipCode": "981041172" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgery Center", - "NPIID": "", - "OrganizationZipCode": "91360" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgery Center Of Lakeland Hills Blvd", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgery Center Of South Central Kansas", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgi Ctr Grtr Madison", - "NPIID": "", - "OrganizationZipCode": "537112525" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgical Care Center Of Michigan", - "NPIID": "", - "OrganizationZipCode": "495256048" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgical Center At Millburn", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgical Interventions LLC", - "NPIID": "", - "OrganizationZipCode": "430553681" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgical Management Inc", - "NPIID": "", - "OrganizationZipCode": "750938125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "98104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgical Specialists Of Charlotte PA", - "NPIID": "", - "OrganizationZipCode": "282261336" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgical Specialty Center", - "NPIID": "", - "OrganizationZipCode": "711094307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Surgicare Associates", - "NPIID": "", - "OrganizationZipCode": "18940" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "SW Community Service", - "NPIID": "", - "OrganizationZipCode": "06605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Swami Nathan MD Inc", - "NPIID": "", - "OrganizationZipCode": "217024462" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Swan Urogynecology PC", - "NPIID": "", - "OrganizationZipCode": "372031857" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Switchback Medical Center PC", - "NPIID": "", - "OrganizationZipCode": "182291012" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sycuan Medical Dental Center", - "NPIID": "", - "OrganizationZipCode": "920191816" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Syed V Ali MD PC", - "NPIID": "", - "OrganizationZipCode": "480606588" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sylmar Medical Center", - "NPIID": "", - "OrganizationZipCode": "913428051" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Sylvia Gisi MD", - "NPIID": "", - "OrganizationZipCode": "92592" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Synergy Health Group", - "NPIID": "", - "OrganizationZipCode": "322077189" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Syracuse Community Health Center Inc", - "NPIID": "", - "OrganizationZipCode": "132023527" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "T K Loan Pham MD Inc", - "NPIID": "", - "OrganizationZipCode": "922553550" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "T. Sri M.D.", - "NPIID": "", - "OrganizationZipCode": "935343048" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "T. Sri M.D.", - "NPIID": "", - "OrganizationZipCode": "935343048" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Taguchi Womens Clinic", - "NPIID": "", - "OrganizationZipCode": "740744226" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Taima Care LLC", - "NPIID": "", - "OrganizationZipCode": "711353282" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Takle Eye Group", - "NPIID": "", - "OrganizationZipCode": "302244214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Takle Eye Group-LocustGrove", - "NPIID": "", - "OrganizationZipCode": "30248" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Takle Eye Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "302487022" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Talia Medical Group", - "NPIID": "", - "OrganizationZipCode": "92590" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tallgrass Orthopedic And Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "66615" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tampa ASC", - "NPIID": "", - "OrganizationZipCode": "336370935" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tampa Bay Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tampa Eye Clinic And Associates PA", - "NPIID": "", - "OrganizationZipCode": "336076308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tampa Pain Relief Center Inc", - "NPIID": "", - "OrganizationZipCode": "452636631" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tanana Valley Clinic LLC", - "NPIID": "", - "OrganizationZipCode": "997073720" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tandigm Care Services", - "NPIID": "", - "OrganizationZipCode": "19428" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tanner Clinic", - "NPIID": "", - "OrganizationZipCode": "84041" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tarboro Eye Associates", - "NPIID": "", - "OrganizationZipCode": "278861935" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Taya Thayapran MD Inc", - "NPIID": "", - "OrganizationZipCode": "93257" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tayani Institute", - "NPIID": "", - "OrganizationZipCode": "926732808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Taylor Pediatrics Inc", - "NPIID": "", - "OrganizationZipCode": "930632186" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Taylorsville Instacare", - "NPIID": "", - "OrganizationZipCode": "84129" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Team Vision Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tejas Health Care", - "NPIID": "", - "OrganizationZipCode": "789452353" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Temecula Family Wellness", - "NPIID": "", - "OrganizationZipCode": "925914678" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tennessee Orthopaedic Alliance", - "NPIID": "", - "OrganizationZipCode": "372031821" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tennessee Orthopaedic Clinics", - "NPIID": "", - "OrganizationZipCode": "379302569" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Terros Health", - "NPIID": "", - "OrganizationZipCode": "850122772" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Terry E Stanger MD Inc", - "NPIID": "", - "OrganizationZipCode": "913563533" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texan Eye PA", - "NPIID": "", - "OrganizationZipCode": "787314203" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texarkana Sedation LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Arthritis And Rheumatology", - "NPIID": "", - "OrganizationZipCode": "757033905" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Dermatology Specialists", - "NPIID": "", - "OrganizationZipCode": "774497780" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas GI Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "751506379" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Health Care P.L.L.C.", - "NPIID": "", - "OrganizationZipCode": "761611205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Health Care P.L.L.C.", - "NPIID": "", - "OrganizationZipCode": "761611205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Health Ft Worth OBH", - "NPIID": "", - "OrganizationZipCode": "761042122" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Health Ft Worth OBH", - "NPIID": "", - "OrganizationZipCode": "761042122" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Heart and Vascular Care PLLC", - "NPIID": "", - "OrganizationZipCode": "760638016" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Oculoplastic Consultants", - "NPIID": "", - "OrganizationZipCode": "787051022" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Perinatal Group Of Austin", - "NPIID": "", - "OrganizationZipCode": "787051107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Perinatal Group Of Austin", - "NPIID": "", - "OrganizationZipCode": "787051107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Perinatal Group Of San Antonio", - "NPIID": "", - "OrganizationZipCode": "782293326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Perinatal Group Of San Antonio", - "NPIID": "", - "OrganizationZipCode": "782293326" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Regional Eye Center", - "NPIID": "", - "OrganizationZipCode": "778026107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Retina Associates", - "NPIID": "", - "OrganizationZipCode": "752650037" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Rheumatology Care", - "NPIID": "", - "OrganizationZipCode": "75024" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Spine And Neurosurgery Center", - "NPIID": "", - "OrganizationZipCode": "774793500" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Surgical Associates LLP", - "NPIID": "", - "OrganizationZipCode": "77074" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Trauma And Emergency Care", - "NPIID": "", - "OrganizationZipCode": "757118659" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Texas Vision And Laser Center", - "NPIID": "", - "OrganizationZipCode": "750344199" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Thambimuttu Jeyaranjan MD", - "NPIID": "", - "OrganizationZipCode": "900221733" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Arthritis \u0026 Osteoporosis Center PA", - "NPIID": "", - "OrganizationZipCode": "291182457" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Baltimore Endoscopy ASC LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Camilla Pediatric Center", - "NPIID": "", - "OrganizationZipCode": "31730" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Center For Pain And Supportive Care", - "NPIID": "", - "OrganizationZipCode": "850284259" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Center For Rheumatology LLP", - "NPIID": "", - "OrganizationZipCode": "122033714" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Colonoscopy Center Inc.", - "NPIID": "", - "OrganizationZipCode": "681142191" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Community Health Clinic", - "NPIID": "", - "OrganizationZipCode": "80222" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "THE CONRAD PEARSON CLINIC PC", - "NPIID": "", - "OrganizationZipCode": "381381759" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Cross Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "79109" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Ear Nose And Throat Clinic", - "NPIID": "", - "OrganizationZipCode": "640683388" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Endocrine Office Inc", - "NPIID": "", - "OrganizationZipCode": "180523400" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Endoscopy Center At Meridian", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Endoscopy Center Of Santa Fe", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Excelsior Springs Clinic", - "NPIID": "", - "OrganizationZipCode": "640241238" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Eye Associates", - "NPIID": "", - "OrganizationZipCode": "342095531" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Eye Care Group P C", - "NPIID": "", - "OrganizationZipCode": "067083105" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Eye Care Institute", - "NPIID": "", - "OrganizationZipCode": "333282108" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "THE EYE CENTER", - "NPIID": "", - "OrganizationZipCode": "346772606" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Eye Surgeons Group", - "NPIID": "", - "OrganizationZipCode": "981041172" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "190872515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Eye Surgery Ctr", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Female Pelvic Health Center", - "NPIID": "", - "OrganizationZipCode": "18940" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The GI Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Glen Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "600268042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Gregori Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Guidance Center", - "NPIID": "", - "OrganizationZipCode": "860046121" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Health Care Group for Women", - "NPIID": "", - "OrganizationZipCode": "63131" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The HealthCare Connection", - "NPIID": "", - "OrganizationZipCode": "45215" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Hirsh Center", - "NPIID": "", - "OrganizationZipCode": "334843801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Kearney Clinic", - "NPIID": "", - "OrganizationZipCode": "640600988" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Laser Center Of Coral Gables LLC", - "NPIID": "", - "OrganizationZipCode": "33134" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Laser Clinic", - "NPIID": "", - "OrganizationZipCode": "609361054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Liberty Clinic", - "NPIID": "", - "OrganizationZipCode": "640684205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Livingston Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Midtown Practice", - "NPIID": "", - "OrganizationZipCode": "19044" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Midwest Center For Sight", - "NPIID": "", - "OrganizationZipCode": "600164029" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Montgomery Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The National Retina Institute", - "NPIID": "", - "OrganizationZipCode": "210936225" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The National Retina Institute", - "NPIID": "", - "OrganizationZipCode": "212040603" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Nebraska Neurosurgery Group", - "NPIID": "", - "OrganizationZipCode": "685166619" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Ocular Surgery Center", - "NPIID": "", - "OrganizationZipCode": "782124701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Onarga Clinic", - "NPIID": "", - "OrganizationZipCode": "609551401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Pain Management Solution", - "NPIID": "", - "OrganizationZipCode": "73159" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Palmetto Surgery Center", - "NPIID": "", - "OrganizationZipCode": "330161815" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Paxton Clinic", - "NPIID": "", - "OrganizationZipCode": "609571123" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Pediatric Center Of Frederick", - "NPIID": "", - "OrganizationZipCode": "217025126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Peoria AZ Multi ASC LLC", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Plattsburg Clinic", - "NPIID": "", - "OrganizationZipCode": "644771424" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Project Of the Quad Cities Inc", - "NPIID": "", - "OrganizationZipCode": "612653184" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Pueblo CO Ophthalmology ASC LLC", - "NPIID": "", - "OrganizationZipCode": "810082033" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Pulmonary And Sleep Clinic", - "NPIID": "", - "OrganizationZipCode": "640683388" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Radiology Group", - "NPIID": "", - "OrganizationZipCode": "303052954" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Reeves Eye Institute", - "NPIID": "", - "OrganizationZipCode": "376042100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Regional Eye Center", - "NPIID": "", - "OrganizationZipCode": "376621666" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Regional Eye Surgery Center", - "NPIID": "", - "OrganizationZipCode": "376604639" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Retina Group Inc", - "NPIID": "", - "OrganizationZipCode": "432157310" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The South Bend Clinic LLP", - "NPIID": "", - "OrganizationZipCode": "466172808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The South Georgia Neurological Institute", - "NPIID": "", - "OrganizationZipCode": "317926107" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Surgery Center", - "NPIID": "", - "OrganizationZipCode": "206783145" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Surgery Center At Pointe West", - "NPIID": "", - "OrganizationZipCode": "336220927" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Surgery Center Of Coral Gables LLC", - "NPIID": "", - "OrganizationZipCode": "331342616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Surgery Center Of Melbourne", - "NPIID": "", - "OrganizationZipCode": "329013179" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Vision Surgical Center", - "NPIID": "", - "OrganizationZipCode": "47130" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Womans Clinic Of Monroe", - "NPIID": "", - "OrganizationZipCode": "712915152" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "The Women's Clinic Of Northern Colorado", - "NPIID": "", - "OrganizationZipCode": "805243955" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Theodore P Werblin MD PC", - "NPIID": "", - "OrganizationZipCode": "24740" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Thomas L Watkins D O", - "NPIID": "", - "OrganizationZipCode": "494414023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Thompson Healthcare PLLC", - "NPIID": "", - "OrganizationZipCode": "39601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Thornville Family Medical Center", - "NPIID": "", - "OrganizationZipCode": "430768010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "THP PLLC", - "NPIID": "", - "OrganizationZipCode": "76063" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Three Rivers Community Health Group", - "NPIID": "", - "OrganizationZipCode": "370963515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Three Rivers ENT", - "NPIID": "", - "OrganizationZipCode": "993366714" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Thunderbird Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "853041277" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tiffany Dawn Wilson MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926044791" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tim Nguyen MD", - "NPIID": "", - "OrganizationZipCode": "92586" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Timothy J. Bright D.O. Inc.", - "NPIID": "", - "OrganizationZipCode": "430311113" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Timothy Kelley MD Inc.", - "NPIID": "", - "OrganizationZipCode": "926634257" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tomas Araneta MD", - "NPIID": "", - "OrganizationZipCode": "925862512" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Topton Family Practice Associates", - "NPIID": "", - "OrganizationZipCode": "195621017" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tots Clinic", - "NPIID": "", - "OrganizationZipCode": "75246" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tots Clinic", - "NPIID": "", - "OrganizationZipCode": "75246" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "TPCA Sandbox", - "NPIID": "", - "OrganizationZipCode": "372171144" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "TPMG", - "NPIID": "", - "OrganizationZipCode": "282896049" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Transform Weight Loss LLC", - "NPIID": "", - "OrganizationZipCode": "980343099" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Transitions Chronic Care Inc", - "NPIID": "", - "OrganizationZipCode": "805015526" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Transitions Home Medical Group LLC", - "NPIID": "", - "OrganizationZipCode": "601428069" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Transitions Home Medical Group MI", - "NPIID": "", - "OrganizationZipCode": "480982696" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tri Century Eye Care PC", - "NPIID": "", - "OrganizationZipCode": "189663811" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tri County Vascular Care ASC", - "NPIID": "", - "OrganizationZipCode": "951231659" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tri County Vascular Care Office", - "NPIID": "", - "OrganizationZipCode": "951231659" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tri County Vascular Care Pro", - "NPIID": "", - "OrganizationZipCode": "951231659" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Triad Neurosurgical Associates PA", - "NPIID": "", - "OrganizationZipCode": "271036144" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Triangle Arthritis And Rheumatology Assc", - "NPIID": "", - "OrganizationZipCode": "276125302" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Triangle Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "TriCity Cardiology Consultants PC", - "NPIID": "", - "OrganizationZipCode": "850722001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tri-County Community Action Agency", - "NPIID": "", - "OrganizationZipCode": "029197109" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tri-County Pulmonary And Sleep", - "NPIID": "", - "OrganizationZipCode": "392329531" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Trinity Health Center", - "NPIID": "", - "OrganizationZipCode": "960932961" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Trinity Womens Health", - "NPIID": "", - "OrganizationZipCode": "925626927" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tristate Community Health Center", - "NPIID": "", - "OrganizationZipCode": "38118" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tri-Valley Oncology Hematology Associate", - "NPIID": "", - "OrganizationZipCode": "91360" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tucson Eye Physicians PLLC", - "NPIID": "", - "OrganizationZipCode": "857181162" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tulsa Emergency Medical Center Inc", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tulsa Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tuolumne Me Wuk Indian Health Center", - "NPIID": "", - "OrganizationZipCode": "953799506" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Turning Point Community Programs", - "NPIID": "", - "OrganizationZipCode": "95827" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Twin Cities Anesthesia PA", - "NPIID": "", - "OrganizationZipCode": "554396124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Twin Cities Anesthesia PA", - "NPIID": "", - "OrganizationZipCode": "554396124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Twin Cities Pain Clinic", - "NPIID": "", - "OrganizationZipCode": "554392148" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Twin Cities Pain Clinic", - "NPIID": "", - "OrganizationZipCode": "554392148" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Twin Cities Surgery Center", - "NPIID": "", - "OrganizationZipCode": "554396124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Twin Cities Surgery Center", - "NPIID": "", - "OrganizationZipCode": "554396124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Tyler Nephrology Associates", - "NPIID": "", - "OrganizationZipCode": "757012103" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UA Student Health Center", - "NPIID": "", - "OrganizationZipCode": "354017421" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UAB Callahan Eye Hospital Authority", - "NPIID": "", - "OrganizationZipCode": "352830941" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UBP", - "NPIID": "", - "OrganizationZipCode": "104593270" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UCP of NYC A16", - "NPIID": "", - "OrganizationZipCode": "10038" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Unicorn Clinic", - "NPIID": "", - "OrganizationZipCode": "333147796" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Union ASC", - "NPIID": "", - "OrganizationZipCode": "070837980" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Union Bridge Family Practice", - "NPIID": "", - "OrganizationZipCode": "217919102" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "United Cerebral Palsy of NYC", - "NPIID": "", - "OrganizationZipCode": "100104516" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "United Indian Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "955214734" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "United Medical Center", - "NPIID": "", - "OrganizationZipCode": "532221622" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "United Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "922705515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "United Neighborhood Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "372105307" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "United Regional Physician Group", - "NPIID": "", - "OrganizationZipCode": "763089261" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "University ASC", - "NPIID": "", - "OrganizationZipCode": "381153841" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "University Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "University Medical Center", - "NPIID": "", - "OrganizationZipCode": "354017457" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "University Of Delaware", - "NPIID": "", - "OrganizationZipCode": "19713" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "University Of Tennessee", - "NPIID": "", - "OrganizationZipCode": "381033483" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "University Orthopedics Center", - "NPIID": "", - "OrganizationZipCode": "168017965" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "University Tennessee Medical Group", - "NPIID": "", - "OrganizationZipCode": "381153841" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Unknown Practice A", - "NPIID": "", - "OrganizationZipCode": "11901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Unknown Practice B", - "NPIID": "", - "OrganizationZipCode": "11901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Upland Vascular Center", - "NPIID": "", - "OrganizationZipCode": "917863675" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urgent Care Center", - "NPIID": "", - "OrganizationZipCode": "317924875" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urological Associates Of Southern AZ PC", - "NPIID": "", - "OrganizationZipCode": "857153808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urological Associates PC", - "NPIID": "", - "OrganizationZipCode": "528072125" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology", - "NPIID": "", - "OrganizationZipCode": "217024337" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology Associates Of Archbold", - "NPIID": "", - "OrganizationZipCode": "317926605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology PC", - "NPIID": "", - "OrganizationZipCode": "685163389" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology Specialist Group LLC", - "NPIID": "", - "OrganizationZipCode": "330161815" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology Specialists Chartered", - "NPIID": "", - "OrganizationZipCode": "571082403" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology Specialists Of Nevada", - "NPIID": "", - "OrganizationZipCode": "891064098" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology Specialists Of Ohio", - "NPIID": "", - "OrganizationZipCode": "455032726" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology Specialists Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "31210" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Urology Surgical Center LLC", - "NPIID": "", - "OrganizationZipCode": "685163389" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "US Cardio Greensburg Access LLC", - "NPIID": "", - "OrganizationZipCode": "156443171" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "US Cardio Greensburg LLC", - "NPIID": "", - "OrganizationZipCode": "156443171" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "US Dermatology Partners 6", - "NPIID": "", - "OrganizationZipCode": "852584536" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "US Dermatology Partners 7", - "NPIID": "", - "OrganizationZipCode": "209025006" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "US Dermatology Partners 8", - "NPIID": "", - "OrganizationZipCode": "80228" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "US Dermatology Partners 9", - "NPIID": "", - "OrganizationZipCode": "209031701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "USA Pain Clinic", - "NPIID": "", - "OrganizationZipCode": "87124" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Usborne Family Medicine", - "NPIID": "", - "OrganizationZipCode": "917231515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "USC Ambulatory Surgical Center", - "NPIID": "", - "OrganizationZipCode": "571082403" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "USMD Diagnostic Services LLC", - "NPIID": "", - "OrganizationZipCode": "750382229" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "USMD Laboratory Services", - "NPIID": "", - "OrganizationZipCode": "750382229" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "USPI Jacksonville Endoscopy", - "NPIID": "", - "OrganizationZipCode": "328917249" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Health East Texas BHC", - "NPIID": "", - "OrganizationZipCode": "75711" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Health East Texas Emergency", - "NPIID": "", - "OrganizationZipCode": "757116455" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Health East Texas Physicians", - "NPIID": "", - "OrganizationZipCode": "75711" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Health East Texas Physicians CVC", - "NPIID": "", - "OrganizationZipCode": "757119477" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Health East Texas Trauma", - "NPIID": "", - "OrganizationZipCode": "75701" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Medical Group Inc.", - "NPIID": "", - "OrganizationZipCode": "381043641" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Mobile Stroke Unit LLC", - "NPIID": "", - "OrganizationZipCode": "38104" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UT Newborn Center", - "NPIID": "", - "OrganizationZipCode": "381630001" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Utah ASC", - "NPIID": "", - "OrganizationZipCode": "841155078" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Utah Cardiology PC", - "NPIID": "", - "OrganizationZipCode": "840250000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Utah Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "841216926" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Utah Interventional", - "NPIID": "", - "OrganizationZipCode": "841155096" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Utah Neurological Clinic Inc", - "NPIID": "", - "OrganizationZipCode": "846043359" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Utah Vascular Center", - "NPIID": "", - "OrganizationZipCode": "841155078" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UTHEALTH RHC", - "NPIID": "", - "OrganizationZipCode": "70000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UTHSC University Health Services", - "NPIID": "", - "OrganizationZipCode": "381033483" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UTMG Dermatopathology LLC", - "NPIID": "", - "OrganizationZipCode": "381033413" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "UTMG Memphis Surgery Center LTD LP", - "NPIID": "", - "OrganizationZipCode": "381193832" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "V George Zochowski DO Inc", - "NPIID": "", - "OrganizationZipCode": "430629630" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Atlantic County", - "NPIID": "", - "OrganizationZipCode": "083303214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Atlantic County OBL", - "NPIID": "", - "OrganizationZipCode": "083303214" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Bolivar County", - "NPIID": "", - "OrganizationZipCode": "387322800" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Central New Jersey", - "NPIID": "", - "OrganizationZipCode": "088543770" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Central New Jersey OBL", - "NPIID": "", - "OrganizationZipCode": "088543770" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Eatontown", - "NPIID": "", - "OrganizationZipCode": "077243333" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Jacksonville", - "NPIID": "", - "OrganizationZipCode": "322166276" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Memphis", - "NPIID": "", - "OrganizationZipCode": "381046492" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of New Orleans", - "NPIID": "", - "OrganizationZipCode": "700012082" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of North Shore Louisiana", - "NPIID": "", - "OrganizationZipCode": "704333321" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Pittsburgh", - "NPIID": "", - "OrganizationZipCode": "160664148" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Pittsburgh OBL", - "NPIID": "", - "OrganizationZipCode": "160664148" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Prince Georges County", - "NPIID": "", - "OrganizationZipCode": "207853738" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of South Los Angeles", - "NPIID": "", - "OrganizationZipCode": "902415003" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Southern Maryland", - "NPIID": "", - "OrganizationZipCode": "206133031" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of Trenton", - "NPIID": "", - "OrganizationZipCode": "086382951" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of West Orange", - "NPIID": "", - "OrganizationZipCode": "070522745" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VAC Of West Orange OBL", - "NPIID": "", - "OrganizationZipCode": "070522745" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VACCO LLC", - "NPIID": "", - "OrganizationZipCode": "432221478" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vaijayanti Koldhekar MD", - "NPIID": "", - "OrganizationZipCode": "910101714" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valenzuela Medical Group I Inc", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valle Del Sol", - "NPIID": "", - "OrganizationZipCode": "850145005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Cardiology", - "NPIID": "", - "OrganizationZipCode": "601234986" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Community Healthcare", - "NPIID": "", - "OrganizationZipCode": "916055162" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Digestive Health Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Eye Surgical Center", - "NPIID": "", - "OrganizationZipCode": "180172278" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Forge Surgical", - "NPIID": "", - "OrganizationZipCode": "19460" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Gastroenterology Consultants Inc", - "NPIID": "", - "OrganizationZipCode": "910067231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Health", - "NPIID": "", - "OrganizationZipCode": "89074" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Health Team Inc", - "NPIID": "", - "OrganizationZipCode": "93660" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Internal Physicians", - "NPIID": "", - "OrganizationZipCode": "925629023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Kidney Specialists ASC", - "NPIID": "", - "OrganizationZipCode": "181036212" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Kidney Specialists PC", - "NPIID": "", - "OrganizationZipCode": "181036212" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Medical Center", - "NPIID": "", - "OrganizationZipCode": "925445802" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Obstetrics \u0026 Gynecology Med Grp", - "NPIID": "", - "OrganizationZipCode": "924011201" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Orthopedic Associates", - "NPIID": "", - "OrganizationZipCode": "917733211" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Physicians Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "917232015" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Valley Wide Health Systems Inc", - "NPIID": "", - "OrganizationZipCode": "811012340" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Value Based Payments", - "NPIID": "", - "OrganizationZipCode": "322772042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vancouver Eye Care PS", - "NPIID": "", - "OrganizationZipCode": "986632753" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vancouver Eye Care Surgery And Laser Ctr", - "NPIID": "", - "OrganizationZipCode": "986632753" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vanguard Medical Specialists LLC", - "NPIID": "", - "OrganizationZipCode": "809247023" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vantage Eye Center", - "NPIID": "", - "OrganizationZipCode": "939014315" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vantage EyeCare LLC", - "NPIID": "", - "OrganizationZipCode": "212975732" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vantage Surgery Center", - "NPIID": "", - "OrganizationZipCode": "939014315" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VASCON", - "NPIID": "", - "OrganizationZipCode": "358015944" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vascular Clinic", - "NPIID": "", - "OrganizationZipCode": "70808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vascular Del Caribe", - "NPIID": "", - "OrganizationZipCode": "007952871" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vascular Del Caribe ASC", - "NPIID": "", - "OrganizationZipCode": "007952871" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vascular Specialty Center", - "NPIID": "", - "OrganizationZipCode": "708066515" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vascular Surgery Associates LLC", - "NPIID": "", - "OrganizationZipCode": "210144375" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VCCSD", - "NPIID": "", - "OrganizationZipCode": "921033165" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Venice Family Clinic", - "NPIID": "", - "OrganizationZipCode": "90291" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Venkatesan D VIDI MD PLLC", - "NPIID": "", - "OrganizationZipCode": "76021" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ventura County Pulmonary Medical Group", - "NPIID": "", - "OrganizationZipCode": "930307645" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ventura County Urology Medical Group", - "NPIID": "", - "OrganizationZipCode": "930031561" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vera Whole Health", - "NPIID": "", - "OrganizationZipCode": "981013150" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Verdier Eye Center PLC", - "NPIID": "", - "OrganizationZipCode": "495463680" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vero Orthopaedics II PA", - "NPIID": "", - "OrganizationZipCode": "329604800" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Verrazano Vascular Associates At AAC", - "NPIID": "", - "OrganizationZipCode": "103143937" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Via Verde Medical Group", - "NPIID": "", - "OrganizationZipCode": "917734400" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vicksburg Pulmonary Clinic", - "NPIID": "", - "OrganizationZipCode": "391805169" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Victoria Eye Center", - "NPIID": "", - "OrganizationZipCode": "779043100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Victoria Surgery Center", - "NPIID": "", - "OrganizationZipCode": "779043100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Victoria Vision Center", - "NPIID": "", - "OrganizationZipCode": "779043100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vida Family Medicine LLC", - "NPIID": "", - "OrganizationZipCode": "973024183" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vida Nueva", - "NPIID": "", - "OrganizationZipCode": "181011140" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vidalia Medical Associates PC", - "NPIID": "", - "OrganizationZipCode": "304751367" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Viewmont Urology Clinic PA", - "NPIID": "", - "OrganizationZipCode": "286013760" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vincent Chu DO", - "NPIID": "", - "OrganizationZipCode": "430812682" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VIPMD", - "NPIID": "", - "OrganizationZipCode": "93308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VIPMD", - "NPIID": "", - "OrganizationZipCode": "93308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Virginia", - "NPIID": "", - "OrganizationZipCode": "907033929" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Virginia Cardiovascular Specialists", - "NPIID": "", - "OrganizationZipCode": "232295100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Virginia Eye Consultants Inc.", - "NPIID": "", - "OrganizationZipCode": "235024975" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Virginia Surgery Center", - "NPIID": "", - "OrganizationZipCode": "235024975" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Virginia Surgery Center L.L.C.", - "NPIID": "", - "OrganizationZipCode": "23502" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Virtual Care", - "NPIID": "", - "OrganizationZipCode": "46280" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vision Care Center DBA EYE-Q", - "NPIID": "", - "OrganizationZipCode": "937203329" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vision Care Of Maine LLC", - "NPIID": "", - "OrganizationZipCode": "044010000" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vision Care Surgery Center", - "NPIID": "", - "OrganizationZipCode": "93720" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vision Innovation Centers Of PA", - "NPIID": "", - "OrganizationZipCode": "187044801" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vision Research Center", - "NPIID": "", - "OrganizationZipCode": "87113" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Visionary Eye Institute", - "NPIID": "", - "OrganizationZipCode": "926633524" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VISIONCARE ASSOCIATES", - "NPIID": "", - "OrganizationZipCode": "44319" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vista Community Clinic", - "NPIID": "", - "OrganizationZipCode": "920845218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vista Surgery Center", - "NPIID": "", - "OrganizationZipCode": "799365922" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vistar Eye Center Inc.", - "NPIID": "", - "OrganizationZipCode": "24008" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vita Care LLC", - "NPIID": "", - "OrganizationZipCode": "009189998" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vital Health", - "NPIID": "", - "OrganizationZipCode": "78231" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vital Primary Care", - "NPIID": "", - "OrganizationZipCode": "926608943" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vital Sight ASC", - "NPIID": "", - "OrganizationZipCode": "857112444" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vita-Surgery", - "NPIID": "", - "OrganizationZipCode": "317926616" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vitreo Retinal Associates PC", - "NPIID": "", - "OrganizationZipCode": "01605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vitreo Retinal Associates PC", - "NPIID": "", - "OrganizationZipCode": "495466100" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vitreo Retinal Consultants Inc", - "NPIID": "", - "OrganizationZipCode": "44718" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vitreo-Retinal Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "958255400" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vivacity Care Center", - "NPIID": "", - "OrganizationZipCode": "99218" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VLPP", - "NPIID": "", - "OrganizationZipCode": "232212601" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VNA Palliative Medicine", - "NPIID": "", - "OrganizationZipCode": "077332136" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VNACJ Community Health Center Inc.", - "NPIID": "", - "OrganizationZipCode": "077125359" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Vohra", - "NPIID": "", - "OrganizationZipCode": "330276308" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Volunteers In Medicine", - "NPIID": "", - "OrganizationZipCode": "18702" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VPS Medical Services PC", - "NPIID": "", - "OrganizationZipCode": "077332136" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VR Physician for Vein Restoration NY LLC", - "NPIID": "", - "OrganizationZipCode": "105835013" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VRF Converted", - "NPIID": "", - "OrganizationZipCode": "381480022" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VRF Eye Specialty Group PLC", - "NPIID": "", - "OrganizationZipCode": "38120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VRF Laser Vision Center", - "NPIID": "", - "OrganizationZipCode": "38120" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VSA Surgery Center At Lutherville", - "NPIID": "", - "OrganizationZipCode": "210144375" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "VWH RCM", - "NPIID": "", - "OrganizationZipCode": "98101" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "W. Andrew Cies MD", - "NPIID": "", - "OrganizationZipCode": "926607687" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wabash General Hospital", - "NPIID": "", - "OrganizationZipCode": "62863" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waco Cardiology Associates", - "NPIID": "", - "OrganizationZipCode": "767124054" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waco Gastroenterology Associates PA", - "NPIID": "", - "OrganizationZipCode": "767023189" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waco Gastroenterology Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wadah Atassi MD", - "NPIID": "", - "OrganizationZipCode": "60652" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waianae Coast Comp Health Center", - "NPIID": "", - "OrganizationZipCode": "967923199" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waimanalo Health Center", - "NPIID": "", - "OrganizationZipCode": "967951247" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waldorf Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Walk In Express", - "NPIID": "", - "OrganizationZipCode": "594041991" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Walker Surgical Center", - "NPIID": "", - "OrganizationZipCode": "495449425" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Walmart Care Clinic", - "NPIID": "", - "OrganizationZipCode": "76126" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Walter Spears M D", - "NPIID": "", - "OrganizationZipCode": "911071409" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Ward G Becker MD", - "NPIID": "", - "OrganizationZipCode": "195309206" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "WARRENTON AND LINTON HALL PEDIATRICS", - "NPIID": "", - "OrganizationZipCode": "201862686" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Washington Center For Bleeding Disorders", - "NPIID": "", - "OrganizationZipCode": "981013932" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Washington County Memorial Hospital", - "NPIID": "", - "OrganizationZipCode": "63664" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Washington Regional Gen Surgery Clinic", - "NPIID": "", - "OrganizationZipCode": "727034005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Washoe Tribal Health Center", - "NPIID": "", - "OrganizationZipCode": "894607455" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waukesha Pain Center LLC", - "NPIID": "", - "OrganizationZipCode": "531882963" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Waverley Surgery Center", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "WC Child Mind Medical Practice PC", - "NPIID": "", - "OrganizationZipCode": "94403" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "WCS Sedation", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Weatherford T Clayton MD Inc", - "NPIID": "", - "OrganizationZipCode": "92663" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Weilee Eddie Yeh MD", - "NPIID": "", - "OrganizationZipCode": "92544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "WellMax Medical Centers", - "NPIID": "", - "OrganizationZipCode": "331743460" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wellness Center", - "NPIID": "", - "OrganizationZipCode": "30046" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wellness Center", - "NPIID": "", - "OrganizationZipCode": "119685009" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "WellSpace Health", - "NPIID": "", - "OrganizationZipCode": "958113010" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Werner Gonzalez Medical Group", - "NPIID": "", - "OrganizationZipCode": "922532105" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wesley And Klippenstein PC", - "NPIID": "", - "OrganizationZipCode": "372032233" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Coast Center For Surgeries", - "NPIID": "", - "OrganizationZipCode": "926732808" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Coast Pulmonary Physicians Inc", - "NPIID": "", - "OrganizationZipCode": "93036" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Coast Urologic Associates", - "NPIID": "", - "OrganizationZipCode": "911053283" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Front Primary Care PLLC", - "NPIID": "", - "OrganizationZipCode": "496847205" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Gastroenterology Medical Group", - "NPIID": "", - "OrganizationZipCode": "900453119" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Haven Medical Group", - "NPIID": "", - "OrganizationZipCode": "065163774" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Palmdale Health Care", - "NPIID": "", - "OrganizationZipCode": "935514232" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Palmdale Health Care", - "NPIID": "", - "OrganizationZipCode": "935514232" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "West Salem Family Practice", - "NPIID": "", - "OrganizationZipCode": "973043007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westchester Health Medical P.C.", - "NPIID": "", - "OrganizationZipCode": "105362810" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Western Carolina Eye Associates PA", - "NPIID": "", - "OrganizationZipCode": "286074738" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Western Community Health Resources", - "NPIID": "", - "OrganizationZipCode": "693372312" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Western Pacific Cancer Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "93312" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Western Primary Care", - "NPIID": "", - "OrganizationZipCode": "922624418" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Western Psychological And Counseling Svc", - "NPIID": "", - "OrganizationZipCode": "972820819" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westerville", - "NPIID": "", - "OrganizationZipCode": "430828349" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westglen Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "662173042" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westhampton Primary Care Center", - "NPIID": "", - "OrganizationZipCode": "119781733" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westmoreland Dermatology", - "NPIID": "", - "OrganizationZipCode": "397052210" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Weston Eye Center", - "NPIID": "", - "OrganizationZipCode": "974711687" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westroads Rheumatology Associates P.C.", - "NPIID": "", - "OrganizationZipCode": "681142174" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westside Anesthesia Services", - "NPIID": "", - "OrganizationZipCode": "372305250" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westside Family Practice", - "NPIID": "", - "OrganizationZipCode": "930602675" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Westside Surgery Center", - "NPIID": "", - "OrganizationZipCode": "97223" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "WH Ambulatory Surgery Center", - "NPIID": "", - "OrganizationZipCode": "28401" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Whatley Health Services Inc", - "NPIID": "", - "OrganizationZipCode": "354015235" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wheeler Clinic Inc", - "NPIID": "", - "OrganizationZipCode": "06062" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "White House Clinics", - "NPIID": "", - "OrganizationZipCode": "404477089" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "White Marsh ASC", - "NPIID": "", - "OrganizationZipCode": "212366901" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "White Oak OBH", - "NPIID": "", - "OrganizationZipCode": "209047804" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Whiteside County Community Health Clinic", - "NPIID": "", - "OrganizationZipCode": "61071" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wichita Nephrology Group", - "NPIID": "", - "OrganizationZipCode": "672143727" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Will County Community Health Center", - "NPIID": "", - "OrganizationZipCode": "604332548" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Will Family Medical Group", - "NPIID": "", - "OrganizationZipCode": "922118850" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Willamette Ear Nose Throat and FPS LLP", - "NPIID": "", - "OrganizationZipCode": "973029754" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Willamette Family Medical Center", - "NPIID": "", - "OrganizationZipCode": "973014729" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Willamette Urology PC", - "NPIID": "", - "OrganizationZipCode": "973023162" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "William H Cherry MD Inc", - "NPIID": "", - "OrganizationZipCode": "925628117" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Williamsburg Regional Health", - "NPIID": "", - "OrganizationZipCode": "295560568" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Willow Springs Surgery Center", - "NPIID": "", - "OrganizationZipCode": "604581350" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wills Eye Ophthalmology Clinic Inc", - "NPIID": "", - "OrganizationZipCode": "191075109" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wilmington Eye P.A.", - "NPIID": "", - "OrganizationZipCode": "284035345" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wilmington Eye Surgery Center LLC", - "NPIID": "", - "OrganizationZipCode": "284016610" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wilmington Health", - "NPIID": "", - "OrganizationZipCode": "284017806" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wilmington Maternal-Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "284036011" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wilmington Maternal-Fetal Medicine", - "NPIID": "", - "OrganizationZipCode": "284036011" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Windham Eye Group PC", - "NPIID": "", - "OrganizationZipCode": "062261238" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Winston Bone And Joint Surg Assoc", - "NPIID": "", - "OrganizationZipCode": "271032930" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wisconsin Health Center", - "NPIID": "", - "OrganizationZipCode": "532204800" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "WISCONSIN HEALTH FUND", - "NPIID": "", - "OrganizationZipCode": "532134145" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wisconsin Surgery Center", - "NPIID": "", - "OrganizationZipCode": "532780561" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Womens Care", - "NPIID": "", - "OrganizationZipCode": "662042217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Women's Health Specialists", - "NPIID": "", - "OrganizationZipCode": "960494369" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Women's Healthcare Assoc PLLC", - "NPIID": "", - "OrganizationZipCode": "79106" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wood County Community Health Center", - "NPIID": "", - "OrganizationZipCode": "434029173" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wood County Health Department", - "NPIID": "", - "OrganizationZipCode": "43402" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wood County Women's Care LLC", - "NPIID": "", - "OrganizationZipCode": "434022664" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wood Health Company LLC", - "NPIID": "", - "OrganizationZipCode": "434021600" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wood River Health Services", - "NPIID": "", - "OrganizationZipCode": "028321920" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Woodall Wilson and Manley LLP", - "NPIID": "", - "OrganizationZipCode": "302041660" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Woodburn Pediatric Clinic LLP", - "NPIID": "", - "OrganizationZipCode": "970719764" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Woodland Park ASC", - "NPIID": "", - "OrganizationZipCode": "074243182" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Woodland Park Vascular", - "NPIID": "", - "OrganizationZipCode": "074243812" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Woodlands Anesthesia Associates LLC", - "NPIID": "", - "OrganizationZipCode": "773843005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Woodlands Endoscopy Center", - "NPIID": "", - "OrganizationZipCode": "773843005" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Woodlands Family Medicine PLLC", - "NPIID": "", - "OrganizationZipCode": "773848039" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wound and Hyperbaric Medicine", - "NPIID": "", - "OrganizationZipCode": "217014593" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Wyoming Urgent Care", - "NPIID": "", - "OrganizationZipCode": "852151217" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yakima Neighborhood Health Services", - "NPIID": "", - "OrganizationZipCode": "989072605" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yavapai County", - "NPIID": "", - "OrganizationZipCode": "863053700" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yee Plastic Surgery PLLC", - "NPIID": "", - "OrganizationZipCode": "773803223" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yellow Springs Primary Care", - "NPIID": "", - "OrganizationZipCode": "453871776" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Youth \u0026 Family Guidance Center", - "NPIID": "", - "OrganizationZipCode": "976016007" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yu Care Medical Group Inc", - "NPIID": "", - "OrganizationZipCode": "917541746" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yu Neuro And Elec", - "NPIID": "", - "OrganizationZipCode": "890522729" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yuma District Hospital", - "NPIID": "", - "OrganizationZipCode": "807592641" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Yvonne Morgan MD Inc", - "NPIID": "", - "OrganizationZipCode": "922624871" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zanesville Family Practice", - "NPIID": "", - "OrganizationZipCode": "437012620" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zanesville Pediatrics", - "NPIID": "", - "OrganizationZipCode": "437011415" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zee Best Practice", - "NPIID": "", - "OrganizationZipCode": "92544" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zenith Access LLC", - "NPIID": "", - "OrganizationZipCode": "60061" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zepick Cardiology", - "NPIID": "", - "OrganizationZipCode": "672112157" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "ZhiWen Lu MD Inc", - "NPIID": "", - "OrganizationZipCode": "917414704" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zieker Eye Ophthalmology PC", - "NPIID": "", - "OrganizationZipCode": "128311858" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zosima B Carino Gateb MD Inc", - "NPIID": "", - "OrganizationZipCode": "922015590" - }, - { - "URL": "https://fhir.nextgen.com/nge/prod/fhir-api/fhir/dstu2/", - "OrganizationName": "Zuhair O Yahya MD FACP FACE", + "URL": "https://fhir.nextgen.com/nge/prod/fhir-api-r4/fhir/r4/", + "OrganizationName": "", "NPIID": "", - "OrganizationZipCode": "917733211" + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Practice_Fusion_EndpointSources.json b/resources/prod_resources/Practice_Fusion_EndpointSources.json index 754e9eab5..d54010692 100644 --- a/resources/prod_resources/Practice_Fusion_EndpointSources.json +++ b/resources/prod_resources/Practice_Fusion_EndpointSources.json @@ -180,6 +180,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/49ec4ce9-4ee4-4d7b-b447-33ae12e85eb4", + "OrganizationName": "Midwest Home Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/49ec4ce9-4ee4-4d7b-b447-33ae12e85eb4", + "OrganizationName": "Midwest Home Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/96fa3089-9955-43e6-b214-10b366d4bd74", "OrganizationName": "Dr. P. Mukhi", @@ -228,18 +240,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/49ec4ce9-4ee4-4d7b-b447-33ae12e85eb4", - "OrganizationName": "Midwest Home Physicians", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/49ec4ce9-4ee4-4d7b-b447-33ae12e85eb4", - "OrganizationName": "Midwest Home Physicians", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/db0be6ec-3914-458e-bb41-d9338535061a", "OrganizationName": "Prime Wellness Clinic", @@ -265,26 +265,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c5b8f01-6e74-4126-8d9b-e690b4cf0f26", - "OrganizationName": "brenda perez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5243ea13-02b3-4388-82f1-e76e819b154a", + "OrganizationName": "Lakhu J Rohra M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c5b8f01-6e74-4126-8d9b-e690b4cf0f26", - "OrganizationName": "brenda perez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5243ea13-02b3-4388-82f1-e76e819b154a", + "OrganizationName": "Lakhu J Rohra M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5243ea13-02b3-4388-82f1-e76e819b154a", - "OrganizationName": "Lakhu J Rohra M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c5b8f01-6e74-4126-8d9b-e690b4cf0f26", + "OrganizationName": "brenda perez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5243ea13-02b3-4388-82f1-e76e819b154a", - "OrganizationName": "Lakhu J Rohra M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c5b8f01-6e74-4126-8d9b-e690b4cf0f26", + "OrganizationName": "brenda perez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -372,18 +372,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f6007ed2-3560-443f-9794-19f6f97a5fdc", - "OrganizationName": "Wahine Health and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f6007ed2-3560-443f-9794-19f6f97a5fdc", - "OrganizationName": "Wahine Health and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/643b0e3d-c7af-4bd1-a8a5-0496804ebb45", "OrganizationName": "Regal Pediatrics", @@ -420,18 +408,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fbc4e559-73c2-457f-8d22-79ce52555662", - "OrganizationName": "Lake Primary Care-Pinnacle", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fbc4e559-73c2-457f-8d22-79ce52555662", - "OrganizationName": "Lake Primary Care-Pinnacle", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f1c4ef3b-1762-41c2-8492-490a6e148615", "OrganizationName": "MAZZARE MEDICAL PLLC", @@ -445,14 +421,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a33424e7-cec4-43f5-add4-782344174848", - "OrganizationName": "Walkitria Smith Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f6007ed2-3560-443f-9794-19f6f97a5fdc", + "OrganizationName": "Wahine Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a33424e7-cec4-43f5-add4-782344174848", - "OrganizationName": "Walkitria Smith Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f6007ed2-3560-443f-9794-19f6f97a5fdc", + "OrganizationName": "Wahine Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -480,6 +456,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/fbc4e559-73c2-457f-8d22-79ce52555662", + "OrganizationName": "Lake Primary Care-Pinnacle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fbc4e559-73c2-457f-8d22-79ce52555662", + "OrganizationName": "Lake Primary Care-Pinnacle", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a33424e7-cec4-43f5-add4-782344174848", + "OrganizationName": "Walkitria Smith Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a33424e7-cec4-43f5-add4-782344174848", + "OrganizationName": "Walkitria Smith Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b396984f-4867-4d64-8f49-68bec77d949a", "OrganizationName": "Maricopa Pulmonary Consultants", @@ -553,50 +553,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fbe99774-1c6c-44bb-a0c4-b21f8aa08f87", - "OrganizationName": "O'Keeffe Health Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d2440dc-0879-485a-b6e3-1379002253f4", + "OrganizationName": "Carmen Brown Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fbe99774-1c6c-44bb-a0c4-b21f8aa08f87", - "OrganizationName": "O'Keeffe Health Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d2440dc-0879-485a-b6e3-1379002253f4", + "OrganizationName": "Carmen Brown Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/35401fc4-1db8-45de-a189-5dcbbc38cfaf", - "OrganizationName": "My Home Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fbe99774-1c6c-44bb-a0c4-b21f8aa08f87", + "OrganizationName": "O'Keeffe Health Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/35401fc4-1db8-45de-a189-5dcbbc38cfaf", - "OrganizationName": "My Home Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fbe99774-1c6c-44bb-a0c4-b21f8aa08f87", + "OrganizationName": "O'Keeffe Health Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d2440dc-0879-485a-b6e3-1379002253f4", - "OrganizationName": "Carmen Brown Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/63a465f4-af16-4997-972f-b960f4eaf035", + "OrganizationName": "AE MENTAL WELLNESS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d2440dc-0879-485a-b6e3-1379002253f4", - "OrganizationName": "Carmen Brown Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/63a465f4-af16-4997-972f-b960f4eaf035", + "OrganizationName": "AE MENTAL WELLNESS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/63a465f4-af16-4997-972f-b960f4eaf035", - "OrganizationName": "AE MENTAL WELLNESS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/35401fc4-1db8-45de-a189-5dcbbc38cfaf", + "OrganizationName": "My Home Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/63a465f4-af16-4997-972f-b960f4eaf035", - "OrganizationName": "AE MENTAL WELLNESS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/35401fc4-1db8-45de-a189-5dcbbc38cfaf", + "OrganizationName": "My Home Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -624,6 +624,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1cf237e-e0fe-4104-9e49-3812f60deaa6", + "OrganizationName": "Hanh Hoang Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1cf237e-e0fe-4104-9e49-3812f60deaa6", + "OrganizationName": "Hanh Hoang Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/094aa12a-c67a-42ac-81ef-a780de9aac80", "OrganizationName": "Gregory G. Harris, MD, MPH", @@ -649,26 +661,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a1cf237e-e0fe-4104-9e49-3812f60deaa6", - "OrganizationName": "Hanh Hoang Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c031d8d5-bac6-4dbb-8c92-e373c827e960", + "OrganizationName": "Rockwall Rapid Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a1cf237e-e0fe-4104-9e49-3812f60deaa6", - "OrganizationName": "Hanh Hoang Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c031d8d5-bac6-4dbb-8c92-e373c827e960", + "OrganizationName": "Rockwall Rapid Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c031d8d5-bac6-4dbb-8c92-e373c827e960", - "OrganizationName": "Rockwall Rapid Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a53e71-7891-400f-af98-0fdf6c33e637", + "OrganizationName": "Pediatrics of Sarasota", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c031d8d5-bac6-4dbb-8c92-e373c827e960", - "OrganizationName": "Rockwall Rapid Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a53e71-7891-400f-af98-0fdf6c33e637", + "OrganizationName": "Pediatrics of Sarasota", "NPIID": "", "OrganizationZipCode": "" }, @@ -708,30 +720,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9d1ee73-ff34-4aa8-8562-c6a060530341", - "OrganizationName": "Cherri Farha Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9d1ee73-ff34-4aa8-8562-c6a060530341", - "OrganizationName": "Cherri Farha Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a53e71-7891-400f-af98-0fdf6c33e637", - "OrganizationName": "Pediatrics of Sarasota", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a53e71-7891-400f-af98-0fdf6c33e637", - "OrganizationName": "Pediatrics of Sarasota", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e56f3b7b-a55d-42d6-9b06-a66b0f54ac6e", "OrganizationName": "Premiere Pointe Podiatry", @@ -745,14 +733,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/982ce8b9-f49f-4b56-82b0-7656061e52f2", - "OrganizationName": "1Vascular Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/653f5e49-fe4d-4dc1-a1fc-2993c868ce43", + "OrganizationName": "Bassem Elsawy, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/982ce8b9-f49f-4b56-82b0-7656061e52f2", - "OrganizationName": "1Vascular Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/653f5e49-fe4d-4dc1-a1fc-2993c868ce43", + "OrganizationName": "Bassem Elsawy, MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -769,38 +757,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a110f410-1380-4a42-a2ec-0ebe0de7449d", - "OrganizationName": "ALL VALLEY PEDIATRICS", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a110f410-1380-4a42-a2ec-0ebe0de7449d", - "OrganizationName": "ALL VALLEY PEDIATRICS", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/653f5e49-fe4d-4dc1-a1fc-2993c868ce43", - "OrganizationName": "Bassem Elsawy, MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/91dfd0b0-a7a0-40a4-a12d-e730434abec1", + "OrganizationName": "Merritt Health \u0026 Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/653f5e49-fe4d-4dc1-a1fc-2993c868ce43", - "OrganizationName": "Bassem Elsawy, MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/91dfd0b0-a7a0-40a4-a12d-e730434abec1", + "OrganizationName": "Merritt Health \u0026 Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/91dfd0b0-a7a0-40a4-a12d-e730434abec1", - "OrganizationName": "Merritt Health \u0026 Wellness, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0afab847-63a9-49a9-8c66-e97c8630b31a", + "OrganizationName": "KAM Alliance Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/91dfd0b0-a7a0-40a4-a12d-e730434abec1", - "OrganizationName": "Merritt Health \u0026 Wellness, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0afab847-63a9-49a9-8c66-e97c8630b31a", + "OrganizationName": "KAM Alliance Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -841,38 +817,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1fb31d49-335b-4b6d-919b-d0635d3a4f5c", - "OrganizationName": "NP-CLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e29ed46-83f7-41e9-8f1c-e759d89848fb", + "OrganizationName": "Oahu Pain Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1fb31d49-335b-4b6d-919b-d0635d3a4f5c", - "OrganizationName": "NP-CLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e29ed46-83f7-41e9-8f1c-e759d89848fb", + "OrganizationName": "Oahu Pain Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0afab847-63a9-49a9-8c66-e97c8630b31a", - "OrganizationName": "KAM Alliance Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d7e5c18e-19be-49ff-9860-de272ae47874", + "OrganizationName": "ANVIS HEALTH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0afab847-63a9-49a9-8c66-e97c8630b31a", - "OrganizationName": "KAM Alliance Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d7e5c18e-19be-49ff-9860-de272ae47874", + "OrganizationName": "ANVIS HEALTH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e29ed46-83f7-41e9-8f1c-e759d89848fb", - "OrganizationName": "Oahu Pain Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ffc45e0-0185-456b-a381-49e1da589412", + "OrganizationName": "Shirley Ramos Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e29ed46-83f7-41e9-8f1c-e759d89848fb", - "OrganizationName": "Oahu Pain Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ffc45e0-0185-456b-a381-49e1da589412", + "OrganizationName": "Shirley Ramos Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -889,62 +865,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ffc45e0-0185-456b-a381-49e1da589412", - "OrganizationName": "Shirley Ramos Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/59ebef1a-113f-41f3-b56e-4db6034a23da", + "OrganizationName": "Iman Ali MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ffc45e0-0185-456b-a381-49e1da589412", - "OrganizationName": "Shirley Ramos Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/59ebef1a-113f-41f3-b56e-4db6034a23da", + "OrganizationName": "Iman Ali MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/588a05f3-a5c5-4526-aa00-b8f04b575fea", - "OrganizationName": "Health Corner LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/775ca65c-bceb-4810-88e3-1c5ea42f1d7d", + "OrganizationName": "Partners in Healthcare, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/588a05f3-a5c5-4526-aa00-b8f04b575fea", - "OrganizationName": "Health Corner LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/775ca65c-bceb-4810-88e3-1c5ea42f1d7d", + "OrganizationName": "Partners in Healthcare, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d7e5c18e-19be-49ff-9860-de272ae47874", - "OrganizationName": "ANVIS HEALTH", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4b59887a-db86-4b05-ae14-ed58d6f2848e", + "OrganizationName": "The Gajer Practice Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d7e5c18e-19be-49ff-9860-de272ae47874", - "OrganizationName": "ANVIS HEALTH", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b59887a-db86-4b05-ae14-ed58d6f2848e", + "OrganizationName": "The Gajer Practice Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/59ebef1a-113f-41f3-b56e-4db6034a23da", - "OrganizationName": "Iman Ali MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4d5770f-339c-4a92-aa8d-b36dcd0deb76", + "OrganizationName": "Strock Medical Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/59ebef1a-113f-41f3-b56e-4db6034a23da", - "OrganizationName": "Iman Ali MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4d5770f-339c-4a92-aa8d-b36dcd0deb76", + "OrganizationName": "Strock Medical Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b4d5770f-339c-4a92-aa8d-b36dcd0deb76", - "OrganizationName": "Strock Medical Group, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/588a05f3-a5c5-4526-aa00-b8f04b575fea", + "OrganizationName": "Health Corner LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b4d5770f-339c-4a92-aa8d-b36dcd0deb76", - "OrganizationName": "Strock Medical Group, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/588a05f3-a5c5-4526-aa00-b8f04b575fea", + "OrganizationName": "Health Corner LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -960,30 +936,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/775ca65c-bceb-4810-88e3-1c5ea42f1d7d", - "OrganizationName": "Partners in Healthcare, PLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/775ca65c-bceb-4810-88e3-1c5ea42f1d7d", - "OrganizationName": "Partners in Healthcare, PLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b59887a-db86-4b05-ae14-ed58d6f2848e", - "OrganizationName": "The Gajer Practice, Ltd.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4b59887a-db86-4b05-ae14-ed58d6f2848e", - "OrganizationName": "The Gajer Practice, Ltd.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/905b60bc-bf4b-4418-bf2c-52797da08d38", "OrganizationName": "Stay Medical Inc.", @@ -1069,38 +1021,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e65e1731-eed3-4773-a187-78cc4d5d7c9d", - "OrganizationName": "LEGACY MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/efda0203-3b06-4b4d-b25e-a9a5d943d9af", + "OrganizationName": "Aungkhin Psychiatry Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e65e1731-eed3-4773-a187-78cc4d5d7c9d", - "OrganizationName": "LEGACY MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/efda0203-3b06-4b4d-b25e-a9a5d943d9af", + "OrganizationName": "Aungkhin Psychiatry Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d327e19a-f735-42b0-a793-b4ba4b10f42b", - "OrganizationName": "ALEXANDER V BALDONADO", + "URL": "https://api.patientfusion.com/fhir/r4/v1/83afe83a-7dc0-48f8-a461-0dce3ecc555c", + "OrganizationName": "WILLIAM CHEN Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d327e19a-f735-42b0-a793-b4ba4b10f42b", - "OrganizationName": "ALEXANDER V BALDONADO", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83afe83a-7dc0-48f8-a461-0dce3ecc555c", + "OrganizationName": "WILLIAM CHEN Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/efda0203-3b06-4b4d-b25e-a9a5d943d9af", - "OrganizationName": "Aungkhin Psychiatry Medical Group Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d327e19a-f735-42b0-a793-b4ba4b10f42b", + "OrganizationName": "ALEXANDER V BALDONADO", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/efda0203-3b06-4b4d-b25e-a9a5d943d9af", - "OrganizationName": "Aungkhin Psychiatry Medical Group Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d327e19a-f735-42b0-a793-b4ba4b10f42b", + "OrganizationName": "ALEXANDER V BALDONADO", "NPIID": "", "OrganizationZipCode": "" }, @@ -1117,14 +1069,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83afe83a-7dc0-48f8-a461-0dce3ecc555c", - "OrganizationName": "WILLIAM CHEN Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e65e1731-eed3-4773-a187-78cc4d5d7c9d", + "OrganizationName": "LEGACY MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/83afe83a-7dc0-48f8-a461-0dce3ecc555c", - "OrganizationName": "WILLIAM CHEN Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e65e1731-eed3-4773-a187-78cc4d5d7c9d", + "OrganizationName": "LEGACY MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -1141,62 +1093,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c5a977a8-5fd7-4834-83f3-fc7d1632233d", - "OrganizationName": "sivakoti r.katta,M.D", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c5a977a8-5fd7-4834-83f3-fc7d1632233d", - "OrganizationName": "sivakoti r.katta,M.D", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dd3ecf68-53c8-41df-9dc1-4c2689abd665", - "OrganizationName": "Blu Advocate Primary Care LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dd3ecf68-53c8-41df-9dc1-4c2689abd665", - "OrganizationName": "Blu Advocate Primary Care LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e517e08-2a24-4aa9-97ec-af1e8487f3ab", - "OrganizationName": "Shalom Mental Health \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/10e77121-1e54-4229-a268-330a09659b02", + "OrganizationName": "Dra Vazquez Rivera", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e517e08-2a24-4aa9-97ec-af1e8487f3ab", - "OrganizationName": "Shalom Mental Health \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/10e77121-1e54-4229-a268-330a09659b02", + "OrganizationName": "Dra Vazquez Rivera", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/21fb662a-e840-4316-a6d6-11cd78357be7", - "OrganizationName": "Prime Care Internal Medicine Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a7be19ab-434e-48e4-827f-6dffc59aa603", + "OrganizationName": "Elemental Health and Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/21fb662a-e840-4316-a6d6-11cd78357be7", - "OrganizationName": "Prime Care Internal Medicine Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a7be19ab-434e-48e4-827f-6dffc59aa603", + "OrganizationName": "Elemental Health and Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7e6f2a2d-ed3b-4122-ac17-c7715d9ace86", - "OrganizationName": "Urology Center of Orange County", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c474a7a-0b00-4f0f-a8fd-0d52a7ccdadd", + "OrganizationName": "VIRGINIA FAMILY CARE CENTER, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7e6f2a2d-ed3b-4122-ac17-c7715d9ace86", - "OrganizationName": "Urology Center of Orange County", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c474a7a-0b00-4f0f-a8fd-0d52a7ccdadd", + "OrganizationName": "VIRGINIA FAMILY CARE CENTER, INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -1213,50 +1141,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8a6772c-f4e4-4279-9baf-40f62a505495", - "OrganizationName": "Jackson Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c5a977a8-5fd7-4834-83f3-fc7d1632233d", + "OrganizationName": "sivakoti r.katta,M.D", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f8a6772c-f4e4-4279-9baf-40f62a505495", - "OrganizationName": "Jackson Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c5a977a8-5fd7-4834-83f3-fc7d1632233d", + "OrganizationName": "sivakoti r.katta,M.D", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c474a7a-0b00-4f0f-a8fd-0d52a7ccdadd", - "OrganizationName": "VIRGINIA FAMILY CARE CENTER, INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e517e08-2a24-4aa9-97ec-af1e8487f3ab", + "OrganizationName": "Shalom Mental Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c474a7a-0b00-4f0f-a8fd-0d52a7ccdadd", - "OrganizationName": "VIRGINIA FAMILY CARE CENTER, INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e517e08-2a24-4aa9-97ec-af1e8487f3ab", + "OrganizationName": "Shalom Mental Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a7be19ab-434e-48e4-827f-6dffc59aa603", - "OrganizationName": "Elemental Health and Wellness Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21fb662a-e840-4316-a6d6-11cd78357be7", + "OrganizationName": "Prime Care Internal Medicine Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a7be19ab-434e-48e4-827f-6dffc59aa603", - "OrganizationName": "Elemental Health and Wellness Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21fb662a-e840-4316-a6d6-11cd78357be7", + "OrganizationName": "Prime Care Internal Medicine Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/10e77121-1e54-4229-a268-330a09659b02", - "OrganizationName": "Dra Vazquez Rivera", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7e6f2a2d-ed3b-4122-ac17-c7715d9ace86", + "OrganizationName": "Urology Center of Orange County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/10e77121-1e54-4229-a268-330a09659b02", - "OrganizationName": "Dra Vazquez Rivera", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7e6f2a2d-ed3b-4122-ac17-c7715d9ace86", + "OrganizationName": "Urology Center of Orange County", "NPIID": "", "OrganizationZipCode": "" }, @@ -1308,6 +1236,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/993dcdea-33de-47ae-837f-33a215407c6d", + "OrganizationName": "Arizona Internal Medicine Associates L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/993dcdea-33de-47ae-837f-33a215407c6d", + "OrganizationName": "Arizona Internal Medicine Associates L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8882bbba-1557-46b7-ab82-6acc6dade71c", "OrganizationName": "Tanvi Kadakia Practice", @@ -1321,14 +1261,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/993dcdea-33de-47ae-837f-33a215407c6d", - "OrganizationName": "Arizona Internal Medicine Associates L.L.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a5141c68-1957-4094-a5cd-01b1b92b247e", + "OrganizationName": "Zulfiqar Ahmed MD, MPH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/993dcdea-33de-47ae-837f-33a215407c6d", - "OrganizationName": "Arizona Internal Medicine Associates L.L.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a5141c68-1957-4094-a5cd-01b1b92b247e", + "OrganizationName": "Zulfiqar Ahmed MD, MPH", "NPIID": "", "OrganizationZipCode": "" }, @@ -1357,50 +1297,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d0e9924-8d9a-49b9-90c3-32db9149d947", - "OrganizationName": "MEDICS PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a58527ac-0ddb-455d-8650-38b44664f0d2", + "OrganizationName": "San Diego Allergy, Asthma \u0026 Immunology Consultants, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d0e9924-8d9a-49b9-90c3-32db9149d947", - "OrganizationName": "MEDICS PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a58527ac-0ddb-455d-8650-38b44664f0d2", + "OrganizationName": "San Diego Allergy, Asthma \u0026 Immunology Consultants, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a5141c68-1957-4094-a5cd-01b1b92b247e", - "OrganizationName": "Zulfiqar Ahmed MD, MPH", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d0e9924-8d9a-49b9-90c3-32db9149d947", + "OrganizationName": "MEDICS PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a5141c68-1957-4094-a5cd-01b1b92b247e", - "OrganizationName": "Zulfiqar Ahmed MD, MPH", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d0e9924-8d9a-49b9-90c3-32db9149d947", + "OrganizationName": "MEDICS PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a58527ac-0ddb-455d-8650-38b44664f0d2", - "OrganizationName": "San Diego Allergy, Asthma \u0026 Immunology Consultants, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3fc41a3a-09bb-436e-8622-be12970faa18", + "OrganizationName": "Doctors Center Family and Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a58527ac-0ddb-455d-8650-38b44664f0d2", - "OrganizationName": "San Diego Allergy, Asthma \u0026 Immunology Consultants, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3fc41a3a-09bb-436e-8622-be12970faa18", + "OrganizationName": "Doctors Center Family and Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3fc41a3a-09bb-436e-8622-be12970faa18", - "OrganizationName": "Doctors Center Family and Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fd3005d1-7560-46ef-8a2f-64527aac32b5", + "OrganizationName": "Dr. Roger Carbajal Mendoza", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3fc41a3a-09bb-436e-8622-be12970faa18", - "OrganizationName": "Doctors Center Family and Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fd3005d1-7560-46ef-8a2f-64527aac32b5", + "OrganizationName": "Dr. Roger Carbajal Mendoza", "NPIID": "", "OrganizationZipCode": "" }, @@ -1429,14 +1369,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fd3005d1-7560-46ef-8a2f-64527aac32b5", - "OrganizationName": "Dr. Roger Carbajal Mendoza", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3e10af1e-f7c2-4e0b-add6-7be7dd562008", + "OrganizationName": "Twilight Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fd3005d1-7560-46ef-8a2f-64527aac32b5", - "OrganizationName": "Dr. Roger Carbajal Mendoza", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3e10af1e-f7c2-4e0b-add6-7be7dd562008", + "OrganizationName": "Twilight Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1fe9a672-f933-48f9-aff4-cadaaf21aa85", + "OrganizationName": "Desert Bolt® Behavioral LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1fe9a672-f933-48f9-aff4-cadaaf21aa85", + "OrganizationName": "Desert Bolt® Behavioral LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -1465,86 +1417,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/536eaf33-13bd-471a-a839-6b3cb897984c", - "OrganizationName": "Mobile Doctors of Arizona", + "URL": "https://api.patientfusion.com/fhir/r4/v1/469180b7-7d99-407a-a5d1-d59eaae373f9", + "OrganizationName": "ABS Clinical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/536eaf33-13bd-471a-a839-6b3cb897984c", - "OrganizationName": "Mobile Doctors of Arizona", + "URL": "https://api.practicefusion.com/fhir/r4/v1/469180b7-7d99-407a-a5d1-d59eaae373f9", + "OrganizationName": "ABS Clinical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e10af1e-f7c2-4e0b-add6-7be7dd562008", - "OrganizationName": "Twilight Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/536eaf33-13bd-471a-a839-6b3cb897984c", + "OrganizationName": "Mobile Doctors of Arizona", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e10af1e-f7c2-4e0b-add6-7be7dd562008", - "OrganizationName": "Twilight Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/536eaf33-13bd-471a-a839-6b3cb897984c", + "OrganizationName": "Mobile Doctors of Arizona", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6027d9cc-fc96-48b4-b484-b5c8ad9c9c7d", - "OrganizationName": "SCPA MEDICAL GROUP, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d38f43d1-369e-46ee-a24a-2e40dd803cde", + "OrganizationName": "Quick Care Walk-In Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6027d9cc-fc96-48b4-b484-b5c8ad9c9c7d", - "OrganizationName": "SCPA MEDICAL GROUP, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d38f43d1-369e-46ee-a24a-2e40dd803cde", + "OrganizationName": "Quick Care Walk-In Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1fe9a672-f933-48f9-aff4-cadaaf21aa85", - "OrganizationName": "Desert Bolt® Behavioral LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/24fd3c1a-e5f6-4a83-a473-d375d5884a60", + "OrganizationName": "Pathfinder Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1fe9a672-f933-48f9-aff4-cadaaf21aa85", - "OrganizationName": "Desert Bolt® Behavioral LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/24fd3c1a-e5f6-4a83-a473-d375d5884a60", + "OrganizationName": "Pathfinder Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/469180b7-7d99-407a-a5d1-d59eaae373f9", - "OrganizationName": "ABS Clinical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/08502704-8421-46da-8657-98af61ea00e9", + "OrganizationName": "ST. RITA MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/469180b7-7d99-407a-a5d1-d59eaae373f9", - "OrganizationName": "ABS Clinical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/08502704-8421-46da-8657-98af61ea00e9", + "OrganizationName": "ST. RITA MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d38f43d1-369e-46ee-a24a-2e40dd803cde", - "OrganizationName": "Quick Care Walk-In Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4d47a79-11e8-429d-a340-b516aa941a0c", + "OrganizationName": "Richter Family Medicine and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d38f43d1-369e-46ee-a24a-2e40dd803cde", - "OrganizationName": "Quick Care Walk-In Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4d47a79-11e8-429d-a340-b516aa941a0c", + "OrganizationName": "Richter Family Medicine and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/24fd3c1a-e5f6-4a83-a473-d375d5884a60", - "OrganizationName": "Pathfinder Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6027d9cc-fc96-48b4-b484-b5c8ad9c9c7d", + "OrganizationName": "SCPA MEDICAL GROUP, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/24fd3c1a-e5f6-4a83-a473-d375d5884a60", - "OrganizationName": "Pathfinder Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6027d9cc-fc96-48b4-b484-b5c8ad9c9c7d", + "OrganizationName": "SCPA MEDICAL GROUP, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -1561,38 +1513,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/08502704-8421-46da-8657-98af61ea00e9", - "OrganizationName": "ST. RITA MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a13494c3-e537-4ff0-9d98-14dfabd413ac", + "OrganizationName": "Odin De los Reyes DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/08502704-8421-46da-8657-98af61ea00e9", - "OrganizationName": "ST. RITA MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a13494c3-e537-4ff0-9d98-14dfabd413ac", + "OrganizationName": "Odin De los Reyes DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4d47a79-11e8-429d-a340-b516aa941a0c", - "OrganizationName": "Richter Family Medicine and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/47b9536e-09b8-4d88-950d-00e39cb7529f", + "OrganizationName": "Boro Park Primary", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4d47a79-11e8-429d-a340-b516aa941a0c", - "OrganizationName": "Richter Family Medicine and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/47b9536e-09b8-4d88-950d-00e39cb7529f", + "OrganizationName": "Boro Park Primary", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a13494c3-e537-4ff0-9d98-14dfabd413ac", - "OrganizationName": "Odin De los Reyes DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/89d668ec-488b-4ba5-beb8-bed99a99693d", + "OrganizationName": "SSD Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a13494c3-e537-4ff0-9d98-14dfabd413ac", - "OrganizationName": "Odin De los Reyes DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/89d668ec-488b-4ba5-beb8-bed99a99693d", + "OrganizationName": "SSD Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -1609,14 +1561,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/89d668ec-488b-4ba5-beb8-bed99a99693d", - "OrganizationName": "SSD Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/823f0c3a-1cbe-47ad-995b-b0e5f4c12e66", + "OrganizationName": "Premier Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/89d668ec-488b-4ba5-beb8-bed99a99693d", - "OrganizationName": "SSD Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/823f0c3a-1cbe-47ad-995b-b0e5f4c12e66", + "OrganizationName": "Premier Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -1657,74 +1609,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/47b9536e-09b8-4d88-950d-00e39cb7529f", - "OrganizationName": "Boro Park Primary", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b25709db-0ebc-49ea-b0e9-3a3dcf78c36a", + "OrganizationName": "Endocrinology of Central PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/47b9536e-09b8-4d88-950d-00e39cb7529f", - "OrganizationName": "Boro Park Primary", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b25709db-0ebc-49ea-b0e9-3a3dcf78c36a", + "OrganizationName": "Endocrinology of Central PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/823f0c3a-1cbe-47ad-995b-b0e5f4c12e66", - "OrganizationName": "Premier Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/60a8c668-5df8-4607-b784-38fc887f7cb4", + "OrganizationName": "Colorado Primary Care Clinic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/823f0c3a-1cbe-47ad-995b-b0e5f4c12e66", - "OrganizationName": "Premier Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/60a8c668-5df8-4607-b784-38fc887f7cb4", + "OrganizationName": "Colorado Primary Care Clinic, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b25709db-0ebc-49ea-b0e9-3a3dcf78c36a", - "OrganizationName": "Endocrinology of Central PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0f2d7b3-c33c-461d-a470-f21e44a72a1b", + "OrganizationName": "Caringmindz", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b25709db-0ebc-49ea-b0e9-3a3dcf78c36a", - "OrganizationName": "Endocrinology of Central PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0f2d7b3-c33c-461d-a470-f21e44a72a1b", + "OrganizationName": "Caringmindz", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0f2d7b3-c33c-461d-a470-f21e44a72a1b", - "OrganizationName": "Caringmindz", + "URL": "https://api.patientfusion.com/fhir/r4/v1/264b08bf-075f-4542-8590-e28381410741", + "OrganizationName": "Midlands Family Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0f2d7b3-c33c-461d-a470-f21e44a72a1b", - "OrganizationName": "Caringmindz", + "URL": "https://api.practicefusion.com/fhir/r4/v1/264b08bf-075f-4542-8590-e28381410741", + "OrganizationName": "Midlands Family Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/60a8c668-5df8-4607-b784-38fc887f7cb4", - "OrganizationName": "Colorado Primary Care Clinic, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57acf35d-927f-4cdd-af04-8fa58a637c87", + "OrganizationName": "Transformational Healthcare Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/60a8c668-5df8-4607-b784-38fc887f7cb4", - "OrganizationName": "Colorado Primary Care Clinic, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57acf35d-927f-4cdd-af04-8fa58a637c87", + "OrganizationName": "Transformational Healthcare Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/264b08bf-075f-4542-8590-e28381410741", - "OrganizationName": "Midlands Family Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d3da27f-0338-487c-9a6c-62712c9a16fe", + "OrganizationName": "Lovell Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/264b08bf-075f-4542-8590-e28381410741", - "OrganizationName": "Midlands Family Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d3da27f-0338-487c-9a6c-62712c9a16fe", + "OrganizationName": "Lovell Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -1752,18 +1704,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/57acf35d-927f-4cdd-af04-8fa58a637c87", - "OrganizationName": "Transformational Healthcare Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/57acf35d-927f-4cdd-af04-8fa58a637c87", - "OrganizationName": "Transformational Healthcare Services", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6b330d59-a4e5-4e80-b2df-c412c2797c48", "OrganizationName": "Dr B's DPC Practice", @@ -1788,18 +1728,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d3da27f-0338-487c-9a6c-62712c9a16fe", - "OrganizationName": "Lovell Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d3da27f-0338-487c-9a6c-62712c9a16fe", - "OrganizationName": "Lovell Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1c3fdbf9-bead-4c69-b928-545c0ea0ed88", "OrganizationName": "Keyes Behavioral Health", @@ -1825,26 +1753,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/156957f0-ebde-4889-8194-249c21192c3d", - "OrganizationName": "Tonya Hood PMHNP LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/256fce53-1187-4b49-b20f-8798f7a26eaf", + "OrganizationName": "KAHALA CLINIC FOR CHILDREN \u0026 FAMILY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/156957f0-ebde-4889-8194-249c21192c3d", - "OrganizationName": "Tonya Hood PMHNP LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/256fce53-1187-4b49-b20f-8798f7a26eaf", + "OrganizationName": "KAHALA CLINIC FOR CHILDREN \u0026 FAMILY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/256fce53-1187-4b49-b20f-8798f7a26eaf", - "OrganizationName": "KAHALA CLINIC FOR CHILDREN \u0026 FAMILY", + "URL": "https://api.patientfusion.com/fhir/r4/v1/156957f0-ebde-4889-8194-249c21192c3d", + "OrganizationName": "Tonya Hood PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/256fce53-1187-4b49-b20f-8798f7a26eaf", - "OrganizationName": "KAHALA CLINIC FOR CHILDREN \u0026 FAMILY", + "URL": "https://api.practicefusion.com/fhir/r4/v1/156957f0-ebde-4889-8194-249c21192c3d", + "OrganizationName": "Tonya Hood PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -1873,14 +1801,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07671dc2-eb1d-4ae2-83df-825dd6178f7a", - "OrganizationName": "Martin Dermatology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa9b490f-1fb5-4a91-b3f2-8c5883784866", + "OrganizationName": "MediCruz", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07671dc2-eb1d-4ae2-83df-825dd6178f7a", - "OrganizationName": "Martin Dermatology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa9b490f-1fb5-4a91-b3f2-8c5883784866", + "OrganizationName": "MediCruz", "NPIID": "", "OrganizationZipCode": "" }, @@ -1897,14 +1825,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa9b490f-1fb5-4a91-b3f2-8c5883784866", - "OrganizationName": "MediCruz", + "URL": "https://api.patientfusion.com/fhir/r4/v1/07671dc2-eb1d-4ae2-83df-825dd6178f7a", + "OrganizationName": "Martin Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa9b490f-1fb5-4a91-b3f2-8c5883784866", - "OrganizationName": "MediCruz", + "URL": "https://api.practicefusion.com/fhir/r4/v1/07671dc2-eb1d-4ae2-83df-825dd6178f7a", + "OrganizationName": "Martin Dermatology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/417bf9be-13f7-4398-95ee-2a39d3fb7ef3", + "OrganizationName": "Ortega Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/417bf9be-13f7-4398-95ee-2a39d3fb7ef3", + "OrganizationName": "Ortega Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -1921,14 +1861,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/417bf9be-13f7-4398-95ee-2a39d3fb7ef3", - "OrganizationName": "Ortega Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1753764f-1ac7-4a10-b105-459bdc915ef7", + "OrganizationName": "Health First Missouri", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/417bf9be-13f7-4398-95ee-2a39d3fb7ef3", - "OrganizationName": "Ortega Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1753764f-1ac7-4a10-b105-459bdc915ef7", + "OrganizationName": "Health First Missouri", "NPIID": "", "OrganizationZipCode": "" }, @@ -1945,26 +1885,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f9397632-4905-45ca-a633-3551355f4b1e", - "OrganizationName": "iCare Medical Systems", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ad99ee0-89db-4b8a-84f0-eee0bdbde00a", + "OrganizationName": "Sandia View Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f9397632-4905-45ca-a633-3551355f4b1e", - "OrganizationName": "iCare Medical Systems", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ad99ee0-89db-4b8a-84f0-eee0bdbde00a", + "OrganizationName": "Sandia View Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1753764f-1ac7-4a10-b105-459bdc915ef7", - "OrganizationName": "Health First Missouri", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0e21be6a-79bd-4883-b7dc-5d7a0bcf84f0", + "OrganizationName": "Foothills Psychiatric Services PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1753764f-1ac7-4a10-b105-459bdc915ef7", - "OrganizationName": "Health First Missouri", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0e21be6a-79bd-4883-b7dc-5d7a0bcf84f0", + "OrganizationName": "Foothills Psychiatric Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f9397632-4905-45ca-a633-3551355f4b1e", + "OrganizationName": "iCare Medical Systems", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f9397632-4905-45ca-a633-3551355f4b1e", + "OrganizationName": "iCare Medical Systems", "NPIID": "", "OrganizationZipCode": "" }, @@ -2005,50 +1957,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ad99ee0-89db-4b8a-84f0-eee0bdbde00a", - "OrganizationName": "Sandia View Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/58116b0d-a5a9-44ba-a01d-2b28d628a436", + "OrganizationName": "Family 1st Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ad99ee0-89db-4b8a-84f0-eee0bdbde00a", - "OrganizationName": "Sandia View Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/58116b0d-a5a9-44ba-a01d-2b28d628a436", + "OrganizationName": "Family 1st Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0e21be6a-79bd-4883-b7dc-5d7a0bcf84f0", - "OrganizationName": "Foothills Psychiatric Services PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f73728b7-698c-4e0c-80dc-f0116633a0b4", + "OrganizationName": "Kim Jones-Fearing Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0e21be6a-79bd-4883-b7dc-5d7a0bcf84f0", - "OrganizationName": "Foothills Psychiatric Services PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f73728b7-698c-4e0c-80dc-f0116633a0b4", + "OrganizationName": "Kim Jones-Fearing Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f73728b7-698c-4e0c-80dc-f0116633a0b4", - "OrganizationName": "Kim Jones-Fearing Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/26e5c781-a0fb-4620-b901-5aac84f43a0f", + "OrganizationName": "Shafa Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f73728b7-698c-4e0c-80dc-f0116633a0b4", - "OrganizationName": "Kim Jones-Fearing Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/26e5c781-a0fb-4620-b901-5aac84f43a0f", + "OrganizationName": "Shafa Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/58116b0d-a5a9-44ba-a01d-2b28d628a436", - "OrganizationName": "Family 1st Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c12d911-6453-49cc-9e1c-b81903ab3c26", + "OrganizationName": "Family Medicine of Orlando, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/58116b0d-a5a9-44ba-a01d-2b28d628a436", - "OrganizationName": "Family 1st Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c12d911-6453-49cc-9e1c-b81903ab3c26", + "OrganizationName": "Family Medicine of Orlando, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -2065,14 +2017,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c12d911-6453-49cc-9e1c-b81903ab3c26", - "OrganizationName": "Family Medicine of Orlando, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", + "OrganizationName": "the fountain", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c12d911-6453-49cc-9e1c-b81903ab3c26", - "OrganizationName": "Family Medicine of Orlando, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", + "OrganizationName": "the fountain", "NPIID": "", "OrganizationZipCode": "" }, @@ -2089,26 +2041,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", - "OrganizationName": "the fountain", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", + "OrganizationName": "Dr. Frank M Shanley PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", - "OrganizationName": "the fountain", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", + "OrganizationName": "Dr. Frank M Shanley PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/26e5c781-a0fb-4620-b901-5aac84f43a0f", - "OrganizationName": "Shafa Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/771d5d38-3955-4c2e-84c3-d2393b45f409", + "OrganizationName": "EvoCare MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/26e5c781-a0fb-4620-b901-5aac84f43a0f", - "OrganizationName": "Shafa Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/771d5d38-3955-4c2e-84c3-d2393b45f409", + "OrganizationName": "EvoCare MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -2124,18 +2076,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/771d5d38-3955-4c2e-84c3-d2393b45f409", - "OrganizationName": "EvoCare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/771d5d38-3955-4c2e-84c3-d2393b45f409", - "OrganizationName": "EvoCare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e860e3ad-8670-49e9-993e-1515e5ddba97", "OrganizationName": "Southern Kidney Specialists, PLC", @@ -2149,14 +2089,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9cc22c48-ac52-4287-b49a-a0f42b363edb", - "OrganizationName": "ORT Spine PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7b3236bf-df60-45f2-a070-6eddf505ffac", + "OrganizationName": "Concord Recovery Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9cc22c48-ac52-4287-b49a-a0f42b363edb", - "OrganizationName": "ORT Spine PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7b3236bf-df60-45f2-a070-6eddf505ffac", + "OrganizationName": "Concord Recovery Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -2173,50 +2113,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/594cea2f-d9cd-4407-8a6f-06b9a5e45bfe", - "OrganizationName": "DermCare \u0026 HealthCare Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0405231d-088a-4507-a319-d07f94174262", + "OrganizationName": "NEW YOU MENTAL HEALTH RECOVERY COMMUNITY, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/594cea2f-d9cd-4407-8a6f-06b9a5e45bfe", - "OrganizationName": "DermCare \u0026 HealthCare Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0405231d-088a-4507-a319-d07f94174262", + "OrganizationName": "NEW YOU MENTAL HEALTH RECOVERY COMMUNITY, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/268ceaa7-af44-4ec5-9c66-9c293ad9b17b", - "OrganizationName": "Affirmative Health and Wellness LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/594cea2f-d9cd-4407-8a6f-06b9a5e45bfe", + "OrganizationName": "DermCare \u0026 HealthCare Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/268ceaa7-af44-4ec5-9c66-9c293ad9b17b", - "OrganizationName": "Affirmative Health and Wellness LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/594cea2f-d9cd-4407-8a6f-06b9a5e45bfe", + "OrganizationName": "DermCare \u0026 HealthCare Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0405231d-088a-4507-a319-d07f94174262", - "OrganizationName": "NEW YOU MENTAL HEALTH RECOVERY COMMUNITY, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/268ceaa7-af44-4ec5-9c66-9c293ad9b17b", + "OrganizationName": "Affirmative Health and Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0405231d-088a-4507-a319-d07f94174262", - "OrganizationName": "NEW YOU MENTAL HEALTH RECOVERY COMMUNITY, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/268ceaa7-af44-4ec5-9c66-9c293ad9b17b", + "OrganizationName": "Affirmative Health and Wellness LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7b3236bf-df60-45f2-a070-6eddf505ffac", - "OrganizationName": "Concord Recovery Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9cc22c48-ac52-4287-b49a-a0f42b363edb", + "OrganizationName": "ORT Spine PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7b3236bf-df60-45f2-a070-6eddf505ffac", - "OrganizationName": "Concord Recovery Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9cc22c48-ac52-4287-b49a-a0f42b363edb", + "OrganizationName": "ORT Spine PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -2257,38 +2197,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eed305cc-61a0-46a0-a15d-4490ecb40e68", - "OrganizationName": "New Health Montana", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c8e98999-7b56-4466-a0a9-9e2a0f12a2f4", + "OrganizationName": "Pediatric Wellness Center PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eed305cc-61a0-46a0-a15d-4490ecb40e68", - "OrganizationName": "New Health Montana", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c8e98999-7b56-4466-a0a9-9e2a0f12a2f4", + "OrganizationName": "Pediatric Wellness Center PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", - "OrganizationName": "GREATER HEALTH CENTER PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eed305cc-61a0-46a0-a15d-4490ecb40e68", + "OrganizationName": "New Health Montana", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", - "OrganizationName": "GREATER HEALTH CENTER PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eed305cc-61a0-46a0-a15d-4490ecb40e68", + "OrganizationName": "New Health Montana", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e5ad6a4-52c4-412c-9ab8-fa1c2200dd81", - "OrganizationName": "Mir Asghar MD PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", + "OrganizationName": "Infectious Disease Consultants (IDC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e5ad6a4-52c4-412c-9ab8-fa1c2200dd81", - "OrganizationName": "Mir Asghar MD PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", + "OrganizationName": "Infectious Disease Consultants (IDC)", "NPIID": "", "OrganizationZipCode": "" }, @@ -2305,146 +2245,158 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c8e98999-7b56-4466-a0a9-9e2a0f12a2f4", - "OrganizationName": "Pediatric Wellness Center PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", + "OrganizationName": "GREATER HEALTH CENTER PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c8e98999-7b56-4466-a0a9-9e2a0f12a2f4", - "OrganizationName": "Pediatric Wellness Center PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", + "OrganizationName": "GREATER HEALTH CENTER PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", - "OrganizationName": "Centers for Whole Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2baf133c-9dc2-4859-9179-45794a475ea0", + "OrganizationName": "Act of beauty Family Practice with aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", - "OrganizationName": "Centers for Whole Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2baf133c-9dc2-4859-9179-45794a475ea0", + "OrganizationName": "Act of beauty Family Practice with aesthetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1d877af0-ed37-4c9c-8ed4-8f1afd543303", - "OrganizationName": "Bristol Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e5ad6a4-52c4-412c-9ab8-fa1c2200dd81", + "OrganizationName": "Mir Asghar MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1d877af0-ed37-4c9c-8ed4-8f1afd543303", - "OrganizationName": "Bristol Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e5ad6a4-52c4-412c-9ab8-fa1c2200dd81", + "OrganizationName": "Mir Asghar MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", - "OrganizationName": "Infectious Disease Consultants (IDC)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", + "OrganizationName": "Centers for Whole Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", - "OrganizationName": "Infectious Disease Consultants (IDC)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", + "OrganizationName": "Centers for Whole Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2baf133c-9dc2-4859-9179-45794a475ea0", - "OrganizationName": "Act of beauty Family Practice with aesthetics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d877af0-ed37-4c9c-8ed4-8f1afd543303", + "OrganizationName": "Bristol Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2baf133c-9dc2-4859-9179-45794a475ea0", - "OrganizationName": "Act of beauty Family Practice with aesthetics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d877af0-ed37-4c9c-8ed4-8f1afd543303", + "OrganizationName": "Bristol Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/040dd464-1e78-45a9-a955-f6487aa0c4f3", - "OrganizationName": "Luxury Psychiatry and Telepsychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/deff16e3-b657-46fc-a39b-2c626046ad71", + "OrganizationName": "Libertyville Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/040dd464-1e78-45a9-a955-f6487aa0c4f3", - "OrganizationName": "Luxury Psychiatry and Telepsychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/deff16e3-b657-46fc-a39b-2c626046ad71", + "OrganizationName": "Libertyville Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/137f2793-28a0-4df9-b598-0693e7d1afe6", - "OrganizationName": "Foot of the Mountains PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/38a3d64f-787c-47aa-a3ab-3772b9ad965e", + "OrganizationName": "US Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/137f2793-28a0-4df9-b598-0693e7d1afe6", - "OrganizationName": "Foot of the Mountains PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/38a3d64f-787c-47aa-a3ab-3772b9ad965e", + "OrganizationName": "US Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/04aa7380-0df6-499f-a0f0-df715c838838", - "OrganizationName": "ReMind Health Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e172775-d2db-4597-9adc-1974ab69b5a7", + "OrganizationName": "Transitional Care Physicians of Georgia P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/04aa7380-0df6-499f-a0f0-df715c838838", - "OrganizationName": "ReMind Health Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6e172775-d2db-4597-9adc-1974ab69b5a7", + "OrganizationName": "Transitional Care Physicians of Georgia P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/38a3d64f-787c-47aa-a3ab-3772b9ad965e", - "OrganizationName": "US Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/040dd464-1e78-45a9-a955-f6487aa0c4f3", + "OrganizationName": "Luxury Psychiatry and Telepsychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/38a3d64f-787c-47aa-a3ab-3772b9ad965e", - "OrganizationName": "US Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/040dd464-1e78-45a9-a955-f6487aa0c4f3", + "OrganizationName": "Luxury Psychiatry and Telepsychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/deff16e3-b657-46fc-a39b-2c626046ad71", - "OrganizationName": "Libertyville Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f59af7d7-8671-4bd0-bd85-d09882bf7210", + "OrganizationName": "Guillermo Acevedo's Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/deff16e3-b657-46fc-a39b-2c626046ad71", - "OrganizationName": "Libertyville Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f59af7d7-8671-4bd0-bd85-d09882bf7210", + "OrganizationName": "Guillermo Acevedo's Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f59af7d7-8671-4bd0-bd85-d09882bf7210", - "OrganizationName": "Guillermo Acevedo's Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/137f2793-28a0-4df9-b598-0693e7d1afe6", + "OrganizationName": "Foot of the Mountains PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f59af7d7-8671-4bd0-bd85-d09882bf7210", - "OrganizationName": "Guillermo Acevedo's Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/137f2793-28a0-4df9-b598-0693e7d1afe6", + "OrganizationName": "Foot of the Mountains PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e172775-d2db-4597-9adc-1974ab69b5a7", - "OrganizationName": "Transitional Care Physicians of Georgia P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/04aa7380-0df6-499f-a0f0-df715c838838", + "OrganizationName": "ReMind Health Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6e172775-d2db-4597-9adc-1974ab69b5a7", - "OrganizationName": "Transitional Care Physicians of Georgia P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/04aa7380-0df6-499f-a0f0-df715c838838", + "OrganizationName": "ReMind Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", + "OrganizationName": "Amar Mohan Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", + "OrganizationName": "Amar Mohan Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -2461,14 +2413,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", - "OrganizationName": "Amar Mohan Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", + "OrganizationName": "Jose B Benigno Medical Clinic PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", - "OrganizationName": "Amar Mohan Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", + "OrganizationName": "Jose B Benigno Medical Clinic PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -2497,38 +2449,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", - "OrganizationName": "Egyptian Spine Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", - "OrganizationName": "Egyptian Spine Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", - "OrganizationName": "Horizon Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", + "OrganizationName": "Scenic City Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", - "OrganizationName": "Horizon Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", + "OrganizationName": "Scenic City Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", - "OrganizationName": "Jose B Benigno Medical Clinic PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", + "OrganizationName": "Egyptian Spine Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", - "OrganizationName": "Jose B Benigno Medical Clinic PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", + "OrganizationName": "Egyptian Spine Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -2557,14 +2497,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", - "OrganizationName": "Scenic City Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", + "OrganizationName": "Horizon Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", - "OrganizationName": "Scenic City Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", + "OrganizationName": "Horizon Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", + "OrganizationName": "FitScription M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", + "OrganizationName": "FitScription M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -2617,26 +2569,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", - "OrganizationName": "FitScription M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", + "OrganizationName": "Eastside Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", - "OrganizationName": "FitScription M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", + "OrganizationName": "Eastside Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", - "OrganizationName": "Eastside Nephrology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc30bdce-ccc2-4acf-a61f-9bda21be5a5d", + "OrganizationName": "Victory Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", - "OrganizationName": "Eastside Nephrology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc30bdce-ccc2-4acf-a61f-9bda21be5a5d", + "OrganizationName": "Victory Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/113e4bbb-b674-4ba4-98e2-d236e5c7f2ff", + "OrganizationName": "Porters Neck Counseling", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/113e4bbb-b674-4ba4-98e2-d236e5c7f2ff", + "OrganizationName": "Porters Neck Counseling", "NPIID": "", "OrganizationZipCode": "" }, @@ -2665,20 +2629,8 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/113e4bbb-b674-4ba4-98e2-d236e5c7f2ff", - "OrganizationName": "Porters Neck Counseling", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/113e4bbb-b674-4ba4-98e2-d236e5c7f2ff", - "OrganizationName": "Porters Neck Counseling", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/82804c88-f5e6-41d9-828c-75b2317bb97a", - "OrganizationName": "Lakes Area Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/82804c88-f5e6-41d9-828c-75b2317bb97a", + "OrganizationName": "Lakes Area Health Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -2688,18 +2640,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc30bdce-ccc2-4acf-a61f-9bda21be5a5d", - "OrganizationName": "Victory Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc30bdce-ccc2-4acf-a61f-9bda21be5a5d", - "OrganizationName": "Victory Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", "OrganizationName": "Sierra Integrative Psychiatric Clinic", @@ -2725,38 +2665,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8e31771c-632a-4395-b60a-9be182588222", - "OrganizationName": "Oleg Shpak MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/35d90a79-d291-458f-a9ba-32d06b29ccbb", + "OrganizationName": "Heather Lin, M.D., A Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8e31771c-632a-4395-b60a-9be182588222", - "OrganizationName": "Oleg Shpak MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/35d90a79-d291-458f-a9ba-32d06b29ccbb", + "OrganizationName": "Heather Lin, M.D., A Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d8f760a3-7196-43cd-9efb-52083a17109f", - "OrganizationName": "HEALTH GROUP CENTER INC Jaime Jorge, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8e31771c-632a-4395-b60a-9be182588222", + "OrganizationName": "Oleg Shpak MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d8f760a3-7196-43cd-9efb-52083a17109f", - "OrganizationName": "HEALTH GROUP CENTER INC Jaime Jorge, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8e31771c-632a-4395-b60a-9be182588222", + "OrganizationName": "Oleg Shpak MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8548c5fc-4b11-497a-94f3-5f27e48b2f07", - "OrganizationName": "Nightingale Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d8f760a3-7196-43cd-9efb-52083a17109f", + "OrganizationName": "HEALTH GROUP CENTER INC Jaime Jorge, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8548c5fc-4b11-497a-94f3-5f27e48b2f07", - "OrganizationName": "Nightingale Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d8f760a3-7196-43cd-9efb-52083a17109f", + "OrganizationName": "HEALTH GROUP CENTER INC Jaime Jorge, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -2773,62 +2713,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/35d90a79-d291-458f-a9ba-32d06b29ccbb", - "OrganizationName": "Heather Lin, M.D., A Medical Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8548c5fc-4b11-497a-94f3-5f27e48b2f07", + "OrganizationName": "Nightingale Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/35d90a79-d291-458f-a9ba-32d06b29ccbb", - "OrganizationName": "Heather Lin, M.D., A Medical Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8548c5fc-4b11-497a-94f3-5f27e48b2f07", + "OrganizationName": "Nightingale Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", - "OrganizationName": "Reliable Primary Care and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", + "OrganizationName": "Prime Cardiology of Nevada", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", - "OrganizationName": "Reliable Primary Care and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", + "OrganizationName": "Prime Cardiology of Nevada", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", - "OrganizationName": "Prime Cardiology of Nevada", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", + "OrganizationName": "Nancy Fong-Edwards Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", - "OrganizationName": "Prime Cardiology of Nevada", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", + "OrganizationName": "Nancy Fong-Edwards Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c3fc5974-ff98-4293-bec2-e759b3bbff16", - "OrganizationName": "Integrated Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", + "OrganizationName": "Reliable Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c3fc5974-ff98-4293-bec2-e759b3bbff16", - "OrganizationName": "Integrated Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", + "OrganizationName": "Reliable Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", - "OrganizationName": "Nancy Fong-Edwards Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3fc5974-ff98-4293-bec2-e759b3bbff16", + "OrganizationName": "Integrated Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", - "OrganizationName": "Nancy Fong-Edwards Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3fc5974-ff98-4293-bec2-e759b3bbff16", + "OrganizationName": "Integrated Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -2869,86 +2809,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", - "OrganizationName": "Stephanie Hendricks, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d54e7484-7630-49a7-820e-157741ed8dcb", + "OrganizationName": "Cook Medical Associates, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", - "OrganizationName": "Stephanie Hendricks, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d54e7484-7630-49a7-820e-157741ed8dcb", + "OrganizationName": "Cook Medical Associates, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d54e7484-7630-49a7-820e-157741ed8dcb", - "OrganizationName": "Cook Medical Associates, PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", + "OrganizationName": "Stephanie Hendricks, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d54e7484-7630-49a7-820e-157741ed8dcb", - "OrganizationName": "Cook Medical Associates, PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", + "OrganizationName": "Stephanie Hendricks, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", - "OrganizationName": "Inpatient Physician Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", + "OrganizationName": "New Life Medical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", - "OrganizationName": "Inpatient Physician Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", + "OrganizationName": "New Life Medical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05b9b70a-2d1e-4e4f-b952-429080dd9d30", - "OrganizationName": "Michigan Medical Associates, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", + "OrganizationName": "Inpatient Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/05b9b70a-2d1e-4e4f-b952-429080dd9d30", - "OrganizationName": "Michigan Medical Associates, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", + "OrganizationName": "Inpatient Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", - "OrganizationName": "Ashe Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6390c8de-6878-44e1-a246-ae526a063f02", + "OrganizationName": "VOICE INSTITUTE OF BEVERLY HILLS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", - "OrganizationName": "Ashe Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6390c8de-6878-44e1-a246-ae526a063f02", + "OrganizationName": "VOICE INSTITUTE OF BEVERLY HILLS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", - "OrganizationName": "New Life Medical Associates, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ade65055-ba88-41c3-9841-91b65d5e6be4", + "OrganizationName": "Sanctuary Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", - "OrganizationName": "New Life Medical Associates, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ade65055-ba88-41c3-9841-91b65d5e6be4", + "OrganizationName": "Sanctuary Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b31d4993-45c3-4e25-b46a-9afc77d83747", - "OrganizationName": "Promed Healthcare Clinic LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/308b8e7d-2167-41cf-8503-05583b5b8cc5", + "OrganizationName": "NP IN FAMILY HEALTH AND PSYCHIATRY P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b31d4993-45c3-4e25-b46a-9afc77d83747", - "OrganizationName": "Promed Healthcare Clinic LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/308b8e7d-2167-41cf-8503-05583b5b8cc5", + "OrganizationName": "NP IN FAMILY HEALTH AND PSYCHIATRY P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -2965,50 +2905,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6390c8de-6878-44e1-a246-ae526a063f02", - "OrganizationName": "VOICE INSTITUTE OF BEVERLY HILLS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/05b9b70a-2d1e-4e4f-b952-429080dd9d30", + "OrganizationName": "Michigan Medical Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6390c8de-6878-44e1-a246-ae526a063f02", - "OrganizationName": "VOICE INSTITUTE OF BEVERLY HILLS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/05b9b70a-2d1e-4e4f-b952-429080dd9d30", + "OrganizationName": "Michigan Medical Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ade65055-ba88-41c3-9841-91b65d5e6be4", - "OrganizationName": "Sanctuary Treatment Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", + "OrganizationName": "Michigan Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ade65055-ba88-41c3-9841-91b65d5e6be4", - "OrganizationName": "Sanctuary Treatment Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", + "OrganizationName": "Michigan Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/308b8e7d-2167-41cf-8503-05583b5b8cc5", - "OrganizationName": "NP IN FAMILY HEALTH AND PSYCHIATRY P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", + "OrganizationName": "Ashe Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/308b8e7d-2167-41cf-8503-05583b5b8cc5", - "OrganizationName": "NP IN FAMILY HEALTH AND PSYCHIATRY P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", + "OrganizationName": "Ashe Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", - "OrganizationName": "Michigan Infectious Disease Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b31d4993-45c3-4e25-b46a-9afc77d83747", + "OrganizationName": "Promed Healthcare Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", - "OrganizationName": "Michigan Infectious Disease Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b31d4993-45c3-4e25-b46a-9afc77d83747", + "OrganizationName": "Promed Healthcare Clinic LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3025,26 +2965,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9ac6cfde-dd94-4e33-80a8-4342317cd478", - "OrganizationName": "Knowles M.D. Neurodevelopmental Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88de6ece-f3c8-40b6-9a48-f3108ce5e7f0", + "OrganizationName": "Peak Interactive Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9ac6cfde-dd94-4e33-80a8-4342317cd478", - "OrganizationName": "Knowles M.D. Neurodevelopmental Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88de6ece-f3c8-40b6-9a48-f3108ce5e7f0", + "OrganizationName": "Peak Interactive Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88de6ece-f3c8-40b6-9a48-f3108ce5e7f0", - "OrganizationName": "Peak Interactive Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9ac6cfde-dd94-4e33-80a8-4342317cd478", + "OrganizationName": "Knowles M.D. Neurodevelopmental Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88de6ece-f3c8-40b6-9a48-f3108ce5e7f0", - "OrganizationName": "Peak Interactive Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9ac6cfde-dd94-4e33-80a8-4342317cd478", + "OrganizationName": "Knowles M.D. Neurodevelopmental Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -3061,14 +3001,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/98dc89cc-f0b7-4122-85ab-731c7156e838", - "OrganizationName": "Kenneth Sternberger MD, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", + "OrganizationName": "Melanie S. Haddox, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/98dc89cc-f0b7-4122-85ab-731c7156e838", - "OrganizationName": "Kenneth Sternberger MD, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", + "OrganizationName": "Melanie S. Haddox, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3085,14 +3025,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", - "OrganizationName": "Melanie S. Haddox, MD, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/98dc89cc-f0b7-4122-85ab-731c7156e838", + "OrganizationName": "Kenneth Sternberger MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", - "OrganizationName": "Melanie S. Haddox, MD, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/98dc89cc-f0b7-4122-85ab-731c7156e838", + "OrganizationName": "Kenneth Sternberger MD, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3108,18 +3048,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0072e502-8369-4539-a8d5-af0c7755ba33", - "OrganizationName": "Advanced Pain \u0026 Spine Management", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0072e502-8369-4539-a8d5-af0c7755ba33", - "OrganizationName": "Advanced Pain \u0026 Spine Management", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c43fdd16-b0d5-439a-b545-eb0d7351d8d7", "OrganizationName": "Internal Medicine Consultant of NW Indiana", @@ -3133,38 +3061,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34bccfb7-b281-415b-a8f0-0d5a622ff918", - "OrganizationName": "JC Fast Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34bccfb7-b281-415b-a8f0-0d5a622ff918", - "OrganizationName": "JC Fast Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", - "OrganizationName": "Skender Murtezani, M.D., LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0072e502-8369-4539-a8d5-af0c7755ba33", + "OrganizationName": "Advanced Pain \u0026 Spine Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", - "OrganizationName": "Skender Murtezani, M.D., LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0072e502-8369-4539-a8d5-af0c7755ba33", + "OrganizationName": "Advanced Pain \u0026 Spine Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", - "OrganizationName": "Wild Rose Clinic, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/34bccfb7-b281-415b-a8f0-0d5a622ff918", + "OrganizationName": "JC Fast Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", - "OrganizationName": "Wild Rose Clinic, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/34bccfb7-b281-415b-a8f0-0d5a622ff918", + "OrganizationName": "JC Fast Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -3205,38 +3121,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a19db5cd-1238-43ca-b0e6-231bc3fa7f87", - "OrganizationName": "Colette D'Altilio DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", + "OrganizationName": "Skender Murtezani, M.D., LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a19db5cd-1238-43ca-b0e6-231bc3fa7f87", - "OrganizationName": "Colette D'Altilio DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", + "OrganizationName": "Skender Murtezani, M.D., LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", - "OrganizationName": "Primary Medicine, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", + "OrganizationName": "Wild Rose Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", - "OrganizationName": "Primary Medicine, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", + "OrganizationName": "Wild Rose Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/70f5f18a-4ede-4791-ab96-5e3690b40e51", - "OrganizationName": "Knew Mindset LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a19db5cd-1238-43ca-b0e6-231bc3fa7f87", + "OrganizationName": "Colette D'Altilio DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/70f5f18a-4ede-4791-ab96-5e3690b40e51", - "OrganizationName": "Knew Mindset LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a19db5cd-1238-43ca-b0e6-231bc3fa7f87", + "OrganizationName": "Colette D'Altilio DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", + "OrganizationName": "Primary Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", + "OrganizationName": "Primary Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3253,14 +3181,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", - "OrganizationName": "premier care rehabilitation Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/70f5f18a-4ede-4791-ab96-5e3690b40e51", + "OrganizationName": "Knew Mindset LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", - "OrganizationName": "premier care rehabilitation Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/70f5f18a-4ede-4791-ab96-5e3690b40e51", + "OrganizationName": "Knew Mindset LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3277,62 +3205,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", - "OrganizationName": "AG Family Medicine, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", + "OrganizationName": "premier care rehabilitation Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", - "OrganizationName": "AG Family Medicine, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", + "OrganizationName": "premier care rehabilitation Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", - "OrganizationName": "Danny Benmoshe M.D. Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/13005280-4a9a-4434-b590-62a0e00713a1", + "OrganizationName": "The Boca Raton Center for Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", - "OrganizationName": "Danny Benmoshe M.D. Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/13005280-4a9a-4434-b590-62a0e00713a1", + "OrganizationName": "The Boca Raton Center for Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/13005280-4a9a-4434-b590-62a0e00713a1", - "OrganizationName": "The Boca Raton Center for Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4135c4ed-9cb5-4d1e-8a44-459f577509eb", + "OrganizationName": "Pain GPS Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/13005280-4a9a-4434-b590-62a0e00713a1", - "OrganizationName": "The Boca Raton Center for Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4135c4ed-9cb5-4d1e-8a44-459f577509eb", + "OrganizationName": "Pain GPS Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d5f3da6-c59c-4276-9a42-d6d67d924077", - "OrganizationName": "Abundant Health and Vitality Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", + "OrganizationName": "AG Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d5f3da6-c59c-4276-9a42-d6d67d924077", - "OrganizationName": "Abundant Health and Vitality Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", + "OrganizationName": "AG Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4135c4ed-9cb5-4d1e-8a44-459f577509eb", - "OrganizationName": "Pain GPS Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", + "OrganizationName": "Danny Benmoshe M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4135c4ed-9cb5-4d1e-8a44-459f577509eb", - "OrganizationName": "Pain GPS Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", + "OrganizationName": "Danny Benmoshe M.D. Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d5f3da6-c59c-4276-9a42-d6d67d924077", + "OrganizationName": "Abundant Health and Vitality Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d5f3da6-c59c-4276-9a42-d6d67d924077", + "OrganizationName": "Abundant Health and Vitality Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -3349,14 +3289,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", - "OrganizationName": "Ramon Sanchez MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", + "OrganizationName": "Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", - "OrganizationName": "Ramon Sanchez MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", + "OrganizationName": "Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -3373,26 +3313,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", - "OrganizationName": "Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fe10845a-906b-4174-b593-03ac1882cd50", + "OrganizationName": "Little Lantern Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", - "OrganizationName": "Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fe10845a-906b-4174-b593-03ac1882cd50", + "OrganizationName": "Little Lantern Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fe10845a-906b-4174-b593-03ac1882cd50", - "OrganizationName": "Little Lantern Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", + "OrganizationName": "Ramon Sanchez MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fe10845a-906b-4174-b593-03ac1882cd50", - "OrganizationName": "Little Lantern Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", + "OrganizationName": "Ramon Sanchez MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -3409,50 +3349,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20e6697f-6b40-48ed-ba29-c401bea9c172", - "OrganizationName": "ClientFirst Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", + "OrganizationName": "Dugan Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20e6697f-6b40-48ed-ba29-c401bea9c172", - "OrganizationName": "ClientFirst Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", + "OrganizationName": "Dugan Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b66c2663-b90d-4131-938b-a6290678e2bc", - "OrganizationName": "Ijeoma Nwuju, DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b66c2663-b90d-4131-938b-a6290678e2bc", - "OrganizationName": "Ijeoma Nwuju, DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", - "OrganizationName": "Clinica M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/20e6697f-6b40-48ed-ba29-c401bea9c172", + "OrganizationName": "ClientFirst Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", - "OrganizationName": "Clinica M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/20e6697f-6b40-48ed-ba29-c401bea9c172", + "OrganizationName": "ClientFirst Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", - "OrganizationName": "Dugan Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b66c2663-b90d-4131-938b-a6290678e2bc", + "OrganizationName": "Ijeoma Nwuju, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", - "OrganizationName": "Dugan Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b66c2663-b90d-4131-938b-a6290678e2bc", + "OrganizationName": "Ijeoma Nwuju, DPM", "NPIID": "", "OrganizationZipCode": "" }, @@ -3480,18 +3420,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4cd6b73-c2b2-4a26-af7a-8666a5f888b4", - "OrganizationName": "James Sayegh", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4cd6b73-c2b2-4a26-af7a-8666a5f888b4", - "OrganizationName": "James Sayegh", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3bdf6cf5-a033-41d2-b3e5-e12dac1a3f04", "OrganizationName": "Family Physicians Associates", @@ -3517,14 +3445,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5872807e-08f4-4fcf-b13c-b0f720ca6a68", - "OrganizationName": "SUNLIFE PEDIATRIC NETWORK, INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4cd6b73-c2b2-4a26-af7a-8666a5f888b4", + "OrganizationName": "James Sayegh", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5872807e-08f4-4fcf-b13c-b0f720ca6a68", - "OrganizationName": "SUNLIFE PEDIATRIC NETWORK, INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4cd6b73-c2b2-4a26-af7a-8666a5f888b4", + "OrganizationName": "James Sayegh", "NPIID": "", "OrganizationZipCode": "" }, @@ -3540,6 +3468,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", + "OrganizationName": "Hunter Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", + "OrganizationName": "Hunter Neurology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", "OrganizationName": "Hyde Park Neurology", @@ -3553,14 +3493,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", - "OrganizationName": "Hunter Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5872807e-08f4-4fcf-b13c-b0f720ca6a68", + "OrganizationName": "SUNLIFE PEDIATRIC NETWORK, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", - "OrganizationName": "Hunter Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5872807e-08f4-4fcf-b13c-b0f720ca6a68", + "OrganizationName": "SUNLIFE PEDIATRIC NETWORK, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ff82376-9d46-451e-bb54-0cfe2e5c6fbe", + "OrganizationName": "BridgeCare Specialists of Michigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ff82376-9d46-451e-bb54-0cfe2e5c6fbe", + "OrganizationName": "BridgeCare Specialists of Michigan", "NPIID": "", "OrganizationZipCode": "" }, @@ -3589,14 +3541,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ff82376-9d46-451e-bb54-0cfe2e5c6fbe", - "OrganizationName": "BridgeCare Specialists of Michigan", + "URL": "https://api.patientfusion.com/fhir/r4/v1/07fcf25b-90d0-429e-b447-93df24206c3e", + "OrganizationName": "SIMC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ff82376-9d46-451e-bb54-0cfe2e5c6fbe", - "OrganizationName": "BridgeCare Specialists of Michigan", + "URL": "https://api.practicefusion.com/fhir/r4/v1/07fcf25b-90d0-429e-b447-93df24206c3e", + "OrganizationName": "SIMC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3613,14 +3565,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8d2724d-879c-4467-a3d0-401db95fe97c", - "OrganizationName": "Amaris P Murray", + "URL": "https://api.patientfusion.com/fhir/r4/v1/997ebfee-1cf8-4d35-ae59-30c83a754a17", + "OrganizationName": "EKM PSYCHIATRY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8d2724d-879c-4467-a3d0-401db95fe97c", - "OrganizationName": "Amaris P Murray", + "URL": "https://api.practicefusion.com/fhir/r4/v1/997ebfee-1cf8-4d35-ae59-30c83a754a17", + "OrganizationName": "EKM PSYCHIATRY", "NPIID": "", "OrganizationZipCode": "" }, @@ -3636,18 +3588,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/997ebfee-1cf8-4d35-ae59-30c83a754a17", - "OrganizationName": "EKM PSYCHIATRY", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/997ebfee-1cf8-4d35-ae59-30c83a754a17", - "OrganizationName": "EKM PSYCHIATRY", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", "OrganizationName": "Restoring Minds Center for Behavioral Health", @@ -3661,26 +3601,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07fcf25b-90d0-429e-b447-93df24206c3e", - "OrganizationName": "SIMC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07fcf25b-90d0-429e-b447-93df24206c3e", - "OrganizationName": "SIMC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d8c72b42-094c-4498-9a59-528425da1a3d", - "OrganizationName": "Maria’s Angels Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", + "OrganizationName": "Gables Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d8c72b42-094c-4498-9a59-528425da1a3d", - "OrganizationName": "Maria’s Angels Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", + "OrganizationName": "Gables Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3697,26 +3625,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/94ebc37b-e1d6-4c91-b02b-1db12f08361b", - "OrganizationName": "B-C OBGYN LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/94ebc37b-e1d6-4c91-b02b-1db12f08361b", - "OrganizationName": "B-C OBGYN LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", - "OrganizationName": "Gables Medical LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2521893e-334e-4540-9024-394902d214ec", + "OrganizationName": "Nader Rahmanian, MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", - "OrganizationName": "Gables Medical LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2521893e-334e-4540-9024-394902d214ec", + "OrganizationName": "Nader Rahmanian, MD LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3733,26 +3649,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/406cb608-5d18-44e9-a3b7-f2a2b308d61a", - "OrganizationName": "Hobson Healthcare Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a77852f0-edac-426e-ba9f-068c09ba8fc5", + "OrganizationName": "My Omni Housecalls, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/406cb608-5d18-44e9-a3b7-f2a2b308d61a", - "OrganizationName": "Hobson Healthcare Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a77852f0-edac-426e-ba9f-068c09ba8fc5", + "OrganizationName": "My Omni Housecalls, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2521893e-334e-4540-9024-394902d214ec", - "OrganizationName": "Nader Rahmanian, MD LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/19f9b6d0-1f24-401b-806b-c367c71d28cb", + "OrganizationName": "InterPedia SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2521893e-334e-4540-9024-394902d214ec", - "OrganizationName": "Nader Rahmanian, MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/19f9b6d0-1f24-401b-806b-c367c71d28cb", + "OrganizationName": "InterPedia SC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3769,14 +3685,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/19f9b6d0-1f24-401b-806b-c367c71d28cb", - "OrganizationName": "InterPedia SC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/94ebc37b-e1d6-4c91-b02b-1db12f08361b", + "OrganizationName": "B-C OBGYN LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/19f9b6d0-1f24-401b-806b-c367c71d28cb", - "OrganizationName": "InterPedia SC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/94ebc37b-e1d6-4c91-b02b-1db12f08361b", + "OrganizationName": "B-C OBGYN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/406cb608-5d18-44e9-a3b7-f2a2b308d61a", + "OrganizationName": "Hobson Healthcare Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/406cb608-5d18-44e9-a3b7-f2a2b308d61a", + "OrganizationName": "Hobson Healthcare Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", + "OrganizationName": "Ianua Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", + "OrganizationName": "Ianua Health LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3793,14 +3733,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a77852f0-edac-426e-ba9f-068c09ba8fc5", - "OrganizationName": "My Omni Housecalls, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b31c226e-60bb-4afe-a4ee-db1d05eee899", + "OrganizationName": "Taral Sharma, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a77852f0-edac-426e-ba9f-068c09ba8fc5", - "OrganizationName": "My Omni Housecalls, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b31c226e-60bb-4afe-a4ee-db1d05eee899", + "OrganizationName": "Taral Sharma, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3817,26 +3757,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", - "OrganizationName": "Ianua Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1c069c60-7633-47f6-a0bd-4b27afb77334", + "OrganizationName": "GoPrivateMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", - "OrganizationName": "Ianua Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1c069c60-7633-47f6-a0bd-4b27afb77334", + "OrganizationName": "GoPrivateMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01ece804-65a8-4099-86ff-2257ed5be26b", - "OrganizationName": "Tyson Quy MD, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", + "OrganizationName": "Diane Cuff-Carney Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01ece804-65a8-4099-86ff-2257ed5be26b", - "OrganizationName": "Tyson Quy MD, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", + "OrganizationName": "Diane Cuff-Carney Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -3853,26 +3793,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d0408b3f-047c-4390-a743-680678e268b3", - "OrganizationName": "Dr Jessica Kiss D.O. family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01ece804-65a8-4099-86ff-2257ed5be26b", + "OrganizationName": "Tyson Quy MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d0408b3f-047c-4390-a743-680678e268b3", - "OrganizationName": "Dr Jessica Kiss D.O. family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01ece804-65a8-4099-86ff-2257ed5be26b", + "OrganizationName": "Tyson Quy MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1c069c60-7633-47f6-a0bd-4b27afb77334", - "OrganizationName": "GoPrivateMD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d0408b3f-047c-4390-a743-680678e268b3", + "OrganizationName": "Dr Jessica Kiss D.O. family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1c069c60-7633-47f6-a0bd-4b27afb77334", - "OrganizationName": "GoPrivateMD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d0408b3f-047c-4390-a743-680678e268b3", + "OrganizationName": "Dr Jessica Kiss D.O. family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -3888,18 +3828,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", - "OrganizationName": "Diane Cuff-Carney Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", - "OrganizationName": "Diane Cuff-Carney Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", @@ -3924,18 +3852,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b63ca40-cd78-439f-97f9-bd10de1fff44", - "OrganizationName": "Chaparral Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b63ca40-cd78-439f-97f9-bd10de1fff44", - "OrganizationName": "Chaparral Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b76c6d4f-b4a0-45a9-b34d-c8d3f87f7c94", "OrganizationName": "O2H Solutions LLC", @@ -3949,14 +3865,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/061ed4b6-45f3-4397-9d82-874efb7061bd", - "OrganizationName": "RAIQA MUNIS MD.PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b63ca40-cd78-439f-97f9-bd10de1fff44", + "OrganizationName": "Chaparral Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/061ed4b6-45f3-4397-9d82-874efb7061bd", - "OrganizationName": "RAIQA MUNIS MD.PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b63ca40-cd78-439f-97f9-bd10de1fff44", + "OrganizationName": "Chaparral Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -3985,38 +3901,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6de30929-48f2-4846-acaa-1332eed80ab6", - "OrganizationName": "CareFront Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6de30929-48f2-4846-acaa-1332eed80ab6", - "OrganizationName": "CareFront Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", - "OrganizationName": "nesheiwat medical practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/061ed4b6-45f3-4397-9d82-874efb7061bd", + "OrganizationName": "RAIQA MUNIS MD.PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", - "OrganizationName": "nesheiwat medical practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/061ed4b6-45f3-4397-9d82-874efb7061bd", + "OrganizationName": "RAIQA MUNIS MD.PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4dae27b3-511a-4531-b473-8515a4009cbd", - "OrganizationName": "Jimmy Liu MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6de30929-48f2-4846-acaa-1332eed80ab6", + "OrganizationName": "CareFront Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4dae27b3-511a-4531-b473-8515a4009cbd", - "OrganizationName": "Jimmy Liu MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6de30929-48f2-4846-acaa-1332eed80ab6", + "OrganizationName": "CareFront Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -4057,26 +3961,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/136232be-382a-43fc-9fba-3dd5fb1e20d3", - "OrganizationName": "B\u0026W Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", + "OrganizationName": "nesheiwat medical practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/136232be-382a-43fc-9fba-3dd5fb1e20d3", - "OrganizationName": "B\u0026W Healthcare Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", + "OrganizationName": "nesheiwat medical practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1d2ea195-d7ba-4e1e-97e4-97ff7e568271", - "OrganizationName": "R S ASHRF MD.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4dae27b3-511a-4531-b473-8515a4009cbd", + "OrganizationName": "Jimmy Liu MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1d2ea195-d7ba-4e1e-97e4-97ff7e568271", - "OrganizationName": "R S ASHRF MD.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4dae27b3-511a-4531-b473-8515a4009cbd", + "OrganizationName": "Jimmy Liu MD, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -4093,38 +3997,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/66e2c33f-4eae-42f3-a676-0148cccbd374", - "OrganizationName": "SATNAM MEDICAL", + "URL": "https://api.patientfusion.com/fhir/r4/v1/136232be-382a-43fc-9fba-3dd5fb1e20d3", + "OrganizationName": "B\u0026W Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/66e2c33f-4eae-42f3-a676-0148cccbd374", - "OrganizationName": "SATNAM MEDICAL", + "URL": "https://api.practicefusion.com/fhir/r4/v1/136232be-382a-43fc-9fba-3dd5fb1e20d3", + "OrganizationName": "B\u0026W Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/58b16d08-dd13-45fb-8ddd-e49834549c61", - "OrganizationName": "Idaho Joint and Spine, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d2ea195-d7ba-4e1e-97e4-97ff7e568271", + "OrganizationName": "R S ASHRF MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/58b16d08-dd13-45fb-8ddd-e49834549c61", - "OrganizationName": "Idaho Joint and Spine, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d2ea195-d7ba-4e1e-97e4-97ff7e568271", + "OrganizationName": "R S ASHRF MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e3c765e-32aa-460c-9894-b1c076ea0524", - "OrganizationName": "Total Access Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/58b16d08-dd13-45fb-8ddd-e49834549c61", + "OrganizationName": "Idaho Joint and Spine, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6e3c765e-32aa-460c-9894-b1c076ea0524", - "OrganizationName": "Total Access Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/58b16d08-dd13-45fb-8ddd-e49834549c61", + "OrganizationName": "Idaho Joint and Spine, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4141,26 +4045,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d7e766db-f055-4d17-993b-82db5e18edd8", - "OrganizationName": "Clear Vision Medical Center , Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e3c765e-32aa-460c-9894-b1c076ea0524", + "OrganizationName": "Total Access Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d7e766db-f055-4d17-993b-82db5e18edd8", - "OrganizationName": "Clear Vision Medical Center , Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6e3c765e-32aa-460c-9894-b1c076ea0524", + "OrganizationName": "Total Access Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e81d67dc-e415-4444-b1c9-88e8ff74458a", - "OrganizationName": "PRIMARY MEDICINE, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/66e2c33f-4eae-42f3-a676-0148cccbd374", + "OrganizationName": "SATNAM MEDICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e81d67dc-e415-4444-b1c9-88e8ff74458a", - "OrganizationName": "PRIMARY MEDICINE, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/66e2c33f-4eae-42f3-a676-0148cccbd374", + "OrganizationName": "SATNAM MEDICAL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -4177,38 +4093,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", - "OrganizationName": "Kolibri", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d7e766db-f055-4d17-993b-82db5e18edd8", + "OrganizationName": "Clear Vision Medical Center , Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", - "OrganizationName": "Kolibri", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d7e766db-f055-4d17-993b-82db5e18edd8", + "OrganizationName": "Clear Vision Medical Center , Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", - "OrganizationName": "Mark Bornstein Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e81d67dc-e415-4444-b1c9-88e8ff74458a", + "OrganizationName": "PRIMARY MEDICINE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", - "OrganizationName": "Mark Bornstein Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e81d67dc-e415-4444-b1c9-88e8ff74458a", + "OrganizationName": "PRIMARY MEDICINE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0ca8-5298-4095-9ef2-7807f134a1b8", - "OrganizationName": "SAFE SUBSTANCE ABUSE COALITION", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1941a4a5-50a1-45c9-b687-9a2e62b50487", + "OrganizationName": "Myriam Allende Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0ca8-5298-4095-9ef2-7807f134a1b8", - "OrganizationName": "SAFE SUBSTANCE ABUSE COALITION", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1941a4a5-50a1-45c9-b687-9a2e62b50487", + "OrganizationName": "Myriam Allende Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -4225,26 +4141,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1941a4a5-50a1-45c9-b687-9a2e62b50487", - "OrganizationName": "Myriam Allende Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1941a4a5-50a1-45c9-b687-9a2e62b50487", - "OrganizationName": "Myriam Allende Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", - "OrganizationName": "Radulovic family practice and weight loss center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0ca8-5298-4095-9ef2-7807f134a1b8", + "OrganizationName": "SAFE SUBSTANCE ABUSE COALITION", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", - "OrganizationName": "Radulovic family practice and weight loss center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0ca8-5298-4095-9ef2-7807f134a1b8", + "OrganizationName": "SAFE SUBSTANCE ABUSE COALITION", "NPIID": "", "OrganizationZipCode": "" }, @@ -4261,26 +4177,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f63bd1a8-812f-48ee-8f16-a9df6e23bc24", - "OrganizationName": "Praxis Urogynecology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", + "OrganizationName": "Michigan Nutrigenetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f63bd1a8-812f-48ee-8f16-a9df6e23bc24", - "OrganizationName": "Praxis Urogynecology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", + "OrganizationName": "Michigan Nutrigenetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", - "OrganizationName": "Ferdinand Armas, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", + "OrganizationName": "Radulovic family practice and weight loss center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", - "OrganizationName": "Ferdinand Armas, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", + "OrganizationName": "Radulovic family practice and weight loss center", "NPIID": "", "OrganizationZipCode": "" }, @@ -4297,14 +4213,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", - "OrganizationName": "Michigan Nutrigenetics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f63bd1a8-812f-48ee-8f16-a9df6e23bc24", + "OrganizationName": "Praxis Urogynecology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", - "OrganizationName": "Michigan Nutrigenetics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f63bd1a8-812f-48ee-8f16-a9df6e23bc24", + "OrganizationName": "Praxis Urogynecology", "NPIID": "", "OrganizationZipCode": "" }, @@ -4321,50 +4237,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b112cac8-1076-4f6a-b0c8-a308489a11e5", - "OrganizationName": "Ponya Care LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b112cac8-1076-4f6a-b0c8-a308489a11e5", - "OrganizationName": "Ponya Care LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e1e834b-8886-4729-a1f1-28484753631b", - "OrganizationName": "Hometown Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a74fa912-fdb2-4073-b3c2-736f65b7c376", + "OrganizationName": "Kirtida N. Ringwala MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6e1e834b-8886-4729-a1f1-28484753631b", - "OrganizationName": "Hometown Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a74fa912-fdb2-4073-b3c2-736f65b7c376", + "OrganizationName": "Kirtida N. Ringwala MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8c362e64-eed5-41b5-81e6-28c914edd1e0", - "OrganizationName": "Firdos Sheikh Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/02854b87-c60f-4922-9fac-508f58f5bfa6", + "OrganizationName": "Aberdeen Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8c362e64-eed5-41b5-81e6-28c914edd1e0", - "OrganizationName": "Firdos Sheikh Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/02854b87-c60f-4922-9fac-508f58f5bfa6", + "OrganizationName": "Aberdeen Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/02854b87-c60f-4922-9fac-508f58f5bfa6", - "OrganizationName": "Aberdeen Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", + "OrganizationName": "Ferdinand Armas, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/02854b87-c60f-4922-9fac-508f58f5bfa6", - "OrganizationName": "Aberdeen Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", + "OrganizationName": "Ferdinand Armas, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -4381,38 +4285,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a74fa912-fdb2-4073-b3c2-736f65b7c376", - "OrganizationName": "Kirtida N. Ringwala MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8c362e64-eed5-41b5-81e6-28c914edd1e0", + "OrganizationName": "Firdos Sheikh Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a74fa912-fdb2-4073-b3c2-736f65b7c376", - "OrganizationName": "Kirtida N. Ringwala MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8c362e64-eed5-41b5-81e6-28c914edd1e0", + "OrganizationName": "Firdos Sheikh Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1f2d7b30-47cd-4ea9-a521-35c27e405a1f", - "OrganizationName": "C GUROL ERBAY MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e1e834b-8886-4729-a1f1-28484753631b", + "OrganizationName": "Hometown Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1f2d7b30-47cd-4ea9-a521-35c27e405a1f", - "OrganizationName": "C GUROL ERBAY MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6e1e834b-8886-4729-a1f1-28484753631b", + "OrganizationName": "Hometown Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8888b12f-e54c-47ab-b090-bb1c1b53cfcb", - "OrganizationName": "Ana Castellanos Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b112cac8-1076-4f6a-b0c8-a308489a11e5", + "OrganizationName": "Ponya Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8888b12f-e54c-47ab-b090-bb1c1b53cfcb", - "OrganizationName": "Ana Castellanos Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b112cac8-1076-4f6a-b0c8-a308489a11e5", + "OrganizationName": "Ponya Care LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4429,14 +4333,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ca01eec-89bb-44a5-b0d2-4fcc048d606f", - "OrganizationName": "B. Bryant Parson, NP Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1f2d7b30-47cd-4ea9-a521-35c27e405a1f", + "OrganizationName": "C GUROL ERBAY MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ca01eec-89bb-44a5-b0d2-4fcc048d606f", - "OrganizationName": "B. Bryant Parson, NP Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1f2d7b30-47cd-4ea9-a521-35c27e405a1f", + "OrganizationName": "C GUROL ERBAY MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -4453,14 +4357,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fe879af9-4b64-4d52-8d94-6533eb12d642", - "OrganizationName": "Daniel Sipple Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ca01eec-89bb-44a5-b0d2-4fcc048d606f", + "OrganizationName": "B. Bryant Parson, NP Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fe879af9-4b64-4d52-8d94-6533eb12d642", - "OrganizationName": "Daniel Sipple Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ca01eec-89bb-44a5-b0d2-4fcc048d606f", + "OrganizationName": "B. Bryant Parson, NP Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -4488,6 +4392,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f7c2ea9a-bb8f-44fa-b32a-b3479e2eefbb", + "OrganizationName": "Emerge Baltimore Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f7c2ea9a-bb8f-44fa-b32a-b3479e2eefbb", + "OrganizationName": "Emerge Baltimore Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/366c9fbf-bf35-4944-93b6-9cddd5257aff", "OrganizationName": "Frank Choe, D.O.", @@ -4501,38 +4417,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d6ae451a-c3be-43a2-a15e-8bad8e153ec7", - "OrganizationName": "NP Care Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fe879af9-4b64-4d52-8d94-6533eb12d642", + "OrganizationName": "Daniel Sipple Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d6ae451a-c3be-43a2-a15e-8bad8e153ec7", - "OrganizationName": "NP Care Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fe879af9-4b64-4d52-8d94-6533eb12d642", + "OrganizationName": "Daniel Sipple Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cf3953db-2476-4bc8-adae-bff6f4f799ed", - "OrganizationName": "Olney Medical Associates LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d6ae451a-c3be-43a2-a15e-8bad8e153ec7", + "OrganizationName": "NP Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cf3953db-2476-4bc8-adae-bff6f4f799ed", - "OrganizationName": "Olney Medical Associates LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d6ae451a-c3be-43a2-a15e-8bad8e153ec7", + "OrganizationName": "NP Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f7c2ea9a-bb8f-44fa-b32a-b3479e2eefbb", - "OrganizationName": "Emerge Baltimore Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cf3953db-2476-4bc8-adae-bff6f4f799ed", + "OrganizationName": "Olney Medical Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f7c2ea9a-bb8f-44fa-b32a-b3479e2eefbb", - "OrganizationName": "Emerge Baltimore Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cf3953db-2476-4bc8-adae-bff6f4f799ed", + "OrganizationName": "Olney Medical Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4573,14 +4489,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", - "OrganizationName": "Coastal Podiatry Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c5d86978-c772-4329-9c7e-0952b471fa98", + "OrganizationName": "Kidney \u0026 Hypertension Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", - "OrganizationName": "Coastal Podiatry Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c5d86978-c772-4329-9c7e-0952b471fa98", + "OrganizationName": "Kidney \u0026 Hypertension Consultants", "NPIID": "", "OrganizationZipCode": "" }, @@ -4597,26 +4513,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3cbb4207-f011-42c4-9326-cf78d1484299", - "OrganizationName": "Colorado ProHealth Rehab- Kids \u0026 Adults", + "URL": "https://api.patientfusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3cbb4207-f011-42c4-9326-cf78d1484299", - "OrganizationName": "Colorado ProHealth Rehab- Kids \u0026 Adults", + "URL": "https://api.practicefusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c5d86978-c772-4329-9c7e-0952b471fa98", - "OrganizationName": "Kidney \u0026 Hypertension Consultants", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3cbb4207-f011-42c4-9326-cf78d1484299", + "OrganizationName": "Colorado ProHealth Rehab- Kids \u0026 Adults", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c5d86978-c772-4329-9c7e-0952b471fa98", - "OrganizationName": "Kidney \u0026 Hypertension Consultants", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3cbb4207-f011-42c4-9326-cf78d1484299", + "OrganizationName": "Colorado ProHealth Rehab- Kids \u0026 Adults", "NPIID": "", "OrganizationZipCode": "" }, @@ -4644,18 +4560,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", - "OrganizationName": "Katzal Consultants", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", - "OrganizationName": "Katzal Consultants", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/120edcea-fb92-4e08-ade7-0e771417d3c0", "OrganizationName": "Cendant Health Center", @@ -4669,14 +4573,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", - "OrganizationName": "PrimeCare Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", + "OrganizationName": "Katzal Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", - "OrganizationName": "PrimeCare Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", + "OrganizationName": "Katzal Consultants", "NPIID": "", "OrganizationZipCode": "" }, @@ -4692,6 +4596,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", + "OrganizationName": "PrimeCare Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", + "OrganizationName": "PrimeCare Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", "OrganizationName": "Chad Brock- Shrink Savannah", @@ -4740,6 +4656,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", + "OrganizationName": "Adriana Arcila", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", + "OrganizationName": "Adriana Arcila", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", "OrganizationName": "Comprehensive Care Behavioral Health", @@ -4753,14 +4681,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", - "OrganizationName": "Adriana Arcila", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b6a30ce-adf7-461b-9b1f-884e99aa6ae3", + "OrganizationName": "East Florida Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", - "OrganizationName": "Adriana Arcila", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b6a30ce-adf7-461b-9b1f-884e99aa6ae3", + "OrganizationName": "East Florida Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -4788,18 +4716,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b6a30ce-adf7-461b-9b1f-884e99aa6ae3", - "OrganizationName": "East Florida Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b6a30ce-adf7-461b-9b1f-884e99aa6ae3", - "OrganizationName": "East Florida Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8d14b0d1-d14d-4107-a437-3f7f26f7dcef", "OrganizationName": "ANAND BALASUBRAMANIAN MD PA", @@ -4836,18 +4752,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", - "OrganizationName": "Harmony Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", - "OrganizationName": "Harmony Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/eeff2186-45cc-4f75-a092-711b81ccbec1", "OrganizationName": "Essence Health Medical Group", @@ -4860,18 +4764,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99f24268-0b08-4d34-8626-00cad588a88e", - "OrganizationName": "Taylor Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99f24268-0b08-4d34-8626-00cad588a88e", - "OrganizationName": "Taylor Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a6878932-7f73-4985-81ed-3a1487bf6e13", "OrganizationName": "TOPHEALTH FAMILY CLINIC", @@ -4909,26 +4801,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", - "OrganizationName": "Dariush Zandi MD Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", + "OrganizationName": "Harmony Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", - "OrganizationName": "Dariush Zandi MD Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", + "OrganizationName": "Harmony Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", - "OrganizationName": "MZF MEDICAL SERVICES, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/99f24268-0b08-4d34-8626-00cad588a88e", + "OrganizationName": "Taylor Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", - "OrganizationName": "MZF MEDICAL SERVICES, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/99f24268-0b08-4d34-8626-00cad588a88e", + "OrganizationName": "Taylor Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", + "OrganizationName": "Dariush Zandi MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", + "OrganizationName": "Dariush Zandi MD Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", + "OrganizationName": "MZF MEDICAL SERVICES, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", + "OrganizationName": "MZF MEDICAL SERVICES, P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -5028,18 +4944,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", - "OrganizationName": "Transcend Company", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", - "OrganizationName": "Transcend Company", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", @@ -5053,74 +4957,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c88ff882-e8d2-49bd-bded-c22aec3faafc", - "OrganizationName": "ALBERT D CHAN MD INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", + "OrganizationName": "Transcend Company", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c88ff882-e8d2-49bd-bded-c22aec3faafc", - "OrganizationName": "ALBERT D CHAN MD INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", + "OrganizationName": "Transcend Company", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ae7001a4-52eb-43ae-9b82-271403457810", - "OrganizationName": "Wah Psychiatry Clinic PLLC Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/df60b09f-80db-41ed-b9d5-fdd21f408604", + "OrganizationName": "Grandview Primary Care \u0026 Performance Medicine Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ae7001a4-52eb-43ae-9b82-271403457810", - "OrganizationName": "Wah Psychiatry Clinic PLLC Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/df60b09f-80db-41ed-b9d5-fdd21f408604", + "OrganizationName": "Grandview Primary Care \u0026 Performance Medicine Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/df60b09f-80db-41ed-b9d5-fdd21f408604", - "OrganizationName": "Grandview Primary Care \u0026 Performance Medicine Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c88ff882-e8d2-49bd-bded-c22aec3faafc", + "OrganizationName": "ALBERT D CHAN MD INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/df60b09f-80db-41ed-b9d5-fdd21f408604", - "OrganizationName": "Grandview Primary Care \u0026 Performance Medicine Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c88ff882-e8d2-49bd-bded-c22aec3faafc", + "OrganizationName": "ALBERT D CHAN MD INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/11c7afc6-b4d8-4748-a14f-a00acd42cf9b", - "OrganizationName": "Maniya Health Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1c89b058-362e-4853-89b2-74a3cd058a23", + "OrganizationName": "Altru Acute Neurosurgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/11c7afc6-b4d8-4748-a14f-a00acd42cf9b", - "OrganizationName": "Maniya Health Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1c89b058-362e-4853-89b2-74a3cd058a23", + "OrganizationName": "Altru Acute Neurosurgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", - "OrganizationName": "HealthFirst", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d5b222fd-cf67-4be6-aabd-50716c05b9cc", + "OrganizationName": "Horizon View Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", - "OrganizationName": "HealthFirst", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d5b222fd-cf67-4be6-aabd-50716c05b9cc", + "OrganizationName": "Horizon View Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", - "OrganizationName": "South Florida Internists Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ae7001a4-52eb-43ae-9b82-271403457810", + "OrganizationName": "Wah Psychiatry Clinic PLLC Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", - "OrganizationName": "South Florida Internists Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ae7001a4-52eb-43ae-9b82-271403457810", + "OrganizationName": "Wah Psychiatry Clinic PLLC Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -5137,38 +5041,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1c89b058-362e-4853-89b2-74a3cd058a23", - "OrganizationName": "Altru Acute Neurosurgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", + "OrganizationName": "HealthFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1c89b058-362e-4853-89b2-74a3cd058a23", - "OrganizationName": "Altru Acute Neurosurgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", + "OrganizationName": "HealthFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d5b222fd-cf67-4be6-aabd-50716c05b9cc", - "OrganizationName": "Horizon View Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/11c7afc6-b4d8-4748-a14f-a00acd42cf9b", + "OrganizationName": "Maniya Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d5b222fd-cf67-4be6-aabd-50716c05b9cc", - "OrganizationName": "Horizon View Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/11c7afc6-b4d8-4748-a14f-a00acd42cf9b", + "OrganizationName": "Maniya Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", - "OrganizationName": "Carlos Carrion Lorenzo Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", + "OrganizationName": "South Florida Internists Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", - "OrganizationName": "Carlos Carrion Lorenzo Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", + "OrganizationName": "South Florida Internists Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -5185,26 +5089,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", - "OrganizationName": "Pulaski County Health Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", - "OrganizationName": "Pulaski County Health Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a1d020b2-b62f-4ea5-8527-4b180f278871", - "OrganizationName": "Brain Resource Network, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", + "OrganizationName": "Carlos Carrion Lorenzo Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a1d020b2-b62f-4ea5-8527-4b180f278871", - "OrganizationName": "Brain Resource Network, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", + "OrganizationName": "Carlos Carrion Lorenzo Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -5221,38 +5113,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", - "OrganizationName": "Wellspring", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0e90ecee-97a9-48a3-a689-9c5f17f04327", + "OrganizationName": "Charles N. Rudolph, MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", - "OrganizationName": "Wellspring", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0e90ecee-97a9-48a3-a689-9c5f17f04327", + "OrganizationName": "Charles N. Rudolph, MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0e90ecee-97a9-48a3-a689-9c5f17f04327", - "OrganizationName": "Charles N. Rudolph, MD Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", + "OrganizationName": "Pulaski County Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0e90ecee-97a9-48a3-a689-9c5f17f04327", - "OrganizationName": "Charles N. Rudolph, MD Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", + "OrganizationName": "Pulaski County Health Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b880ac0b-a9a6-4444-8805-5ca0779dacba", - "OrganizationName": "Wellbein orthopedic Xpress", + "OrganizationName": "Wellbein Orthopedic Xpress", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/b880ac0b-a9a6-4444-8805-5ca0779dacba", - "OrganizationName": "Wellbein orthopedic Xpress", + "OrganizationName": "Wellbein Orthopedic Xpress", "NPIID": "", "OrganizationZipCode": "" }, @@ -5281,26 +5173,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", - "OrganizationName": "Paradise Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1d020b2-b62f-4ea5-8527-4b180f278871", + "OrganizationName": "Brain Resource Network, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", - "OrganizationName": "Paradise Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1d020b2-b62f-4ea5-8527-4b180f278871", + "OrganizationName": "Brain Resource Network, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3f5aace2-d3e8-4013-9c02-a16e7f733d74", - "OrganizationName": "Avalin Health Medical Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", + "OrganizationName": "Wellspring", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3f5aace2-d3e8-4013-9c02-a16e7f733d74", - "OrganizationName": "Avalin Health Medical Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e53f9b3-af0d-4ebd-bfbd-b46a79c88923", + "OrganizationName": "Wellspring", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9137a705-8d05-406a-8391-76ee819b2a5d", + "OrganizationName": "Nowobilska Medical Practice LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9137a705-8d05-406a-8391-76ee819b2a5d", + "OrganizationName": "Nowobilska Medical Practice LTD", "NPIID": "", "OrganizationZipCode": "" }, @@ -5317,14 +5221,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/937b801c-de5f-4bd9-9a7a-4a710ddb89bf", - "OrganizationName": "Smart Health and Wellness, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3f5aace2-d3e8-4013-9c02-a16e7f733d74", + "OrganizationName": "Avalin Health Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/937b801c-de5f-4bd9-9a7a-4a710ddb89bf", - "OrganizationName": "Smart Health and Wellness, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3f5aace2-d3e8-4013-9c02-a16e7f733d74", + "OrganizationName": "Avalin Health Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, @@ -5341,38 +5245,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9137a705-8d05-406a-8391-76ee819b2a5d", - "OrganizationName": "Nowobilska Medical Practice LTD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", + "OrganizationName": "Paradise Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9137a705-8d05-406a-8391-76ee819b2a5d", - "OrganizationName": "Nowobilska Medical Practice LTD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", + "OrganizationName": "Paradise Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/54728d1b-4e46-47e2-b9fa-e6f73896da83", - "OrganizationName": "Brain and Body Health Institute PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/937b801c-de5f-4bd9-9a7a-4a710ddb89bf", + "OrganizationName": "Smart Health and Wellness, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/54728d1b-4e46-47e2-b9fa-e6f73896da83", - "OrganizationName": "Brain and Body Health Institute PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/937b801c-de5f-4bd9-9a7a-4a710ddb89bf", + "OrganizationName": "Smart Health and Wellness, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ed5c30ce-1352-4643-b891-8d29336315b8", - "OrganizationName": "KEM Physical INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ed5c30ce-1352-4643-b891-8d29336315b8", - "OrganizationName": "KEM Physical INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -5389,50 +5293,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", - "OrganizationName": "Rene Lee Medical Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ed5c30ce-1352-4643-b891-8d29336315b8", + "OrganizationName": "KEM Physical INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", - "OrganizationName": "Rene Lee Medical Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ed5c30ce-1352-4643-b891-8d29336315b8", + "OrganizationName": "KEM Physical INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/49b9a16b-4a7f-4425-aaad-18096cff2bf9", - "OrganizationName": "Amelia Respiratory and Sleep Medicine LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/54728d1b-4e46-47e2-b9fa-e6f73896da83", + "OrganizationName": "Brain and Body Health Institute PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/49b9a16b-4a7f-4425-aaad-18096cff2bf9", - "OrganizationName": "Amelia Respiratory and Sleep Medicine LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/54728d1b-4e46-47e2-b9fa-e6f73896da83", + "OrganizationName": "Brain and Body Health Institute PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f626bfc9-efee-4cb2-8a27-13d02346386c", - "OrganizationName": "BOSC Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/49b9a16b-4a7f-4425-aaad-18096cff2bf9", + "OrganizationName": "Amelia Respiratory and Sleep Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f626bfc9-efee-4cb2-8a27-13d02346386c", - "OrganizationName": "BOSC Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/49b9a16b-4a7f-4425-aaad-18096cff2bf9", + "OrganizationName": "Amelia Respiratory and Sleep Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", - "OrganizationName": "BEST HEALTHCARE ACCESS Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f626bfc9-efee-4cb2-8a27-13d02346386c", + "OrganizationName": "BOSC Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", - "OrganizationName": "BEST HEALTHCARE ACCESS Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f626bfc9-efee-4cb2-8a27-13d02346386c", + "OrganizationName": "BOSC Mental Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -5449,14 +5353,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aec71917-91cf-4ea7-bd47-b58cde57aa9f", - "OrganizationName": "Genesis Medical Diagnostics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7de0b9c3-0ba4-42e7-a278-2027387274fd", + "OrganizationName": "Debdeep Nath PNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aec71917-91cf-4ea7-bd47-b58cde57aa9f", - "OrganizationName": "Genesis Medical Diagnostics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7de0b9c3-0ba4-42e7-a278-2027387274fd", + "OrganizationName": "Debdeep Nath PNP", "NPIID": "", "OrganizationZipCode": "" }, @@ -5485,14 +5389,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7de0b9c3-0ba4-42e7-a278-2027387274fd", - "OrganizationName": "Debdeep Nath PNP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", + "OrganizationName": "BEST HEALTHCARE ACCESS Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7de0b9c3-0ba4-42e7-a278-2027387274fd", - "OrganizationName": "Debdeep Nath PNP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", + "OrganizationName": "BEST HEALTHCARE ACCESS Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -5521,38 +5425,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", - "OrganizationName": "Hassan Alsabbak MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1dafc9e-be64-45b5-b202-d7ba4c23bb3e", + "OrganizationName": "Central Family Care \u0026 Weight Loss Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", - "OrganizationName": "Hassan Alsabbak MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1c4eae3d-05fa-419e-a870-c8053c9fe898", - "OrganizationName": "Orthopedic Physical Therapy and Rehab", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1c4eae3d-05fa-419e-a870-c8053c9fe898", - "OrganizationName": "Orthopedic Physical Therapy and Rehab", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1dafc9e-be64-45b5-b202-d7ba4c23bb3e", - "OrganizationName": "Central Family Care \u0026 Weight Loss Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1dafc9e-be64-45b5-b202-d7ba4c23bb3e", - "OrganizationName": "Central Family Care \u0026 Weight Loss Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1dafc9e-be64-45b5-b202-d7ba4c23bb3e", + "OrganizationName": "Central Family Care \u0026 Weight Loss Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -5569,14 +5449,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", - "OrganizationName": "Visiting Medical Group LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", + "OrganizationName": "Hassan Alsabbak MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", - "OrganizationName": "Visiting Medical Group LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", + "OrganizationName": "Hassan Alsabbak MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -5616,6 +5496,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", + "OrganizationName": "Visiting Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", + "OrganizationName": "Visiting Medical Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/160cf964-e74c-4b95-b317-b20415321b5d", "OrganizationName": "GAOD Medical Services", @@ -5652,6 +5544,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", + "OrganizationName": "Integrity Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", + "OrganizationName": "Integrity Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5edad73f-6c22-4ee5-9280-a8033b7c6648", "OrganizationName": "Butzin, Matoshko and Assoc. Chiropractic Clinics P.L.L.C", @@ -5688,30 +5592,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", - "OrganizationName": "Integrity Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", - "OrganizationName": "Integrity Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e5dfbac0-e250-4bb3-b37d-063dab342043", - "OrganizationName": "Carol Paras, M.D.P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e5dfbac0-e250-4bb3-b37d-063dab342043", - "OrganizationName": "Carol Paras, M.D.P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7bfd4f39-dae9-4eba-baa8-91ec4c762f8d", "OrganizationName": "Simone Van-Horne, MD", @@ -5832,6 +5712,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d673651b-b6cd-42d7-9397-a85604a7a61b", + "OrganizationName": "Wilson Integrated Psychiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d673651b-b6cd-42d7-9397-a85604a7a61b", + "OrganizationName": "Wilson Integrated Psychiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ac148ea1-0516-4206-a3c8-42dd6fb04b9c", "OrganizationName": "The MeSCO Free Community Clinic", @@ -5869,26 +5761,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d673651b-b6cd-42d7-9397-a85604a7a61b", - "OrganizationName": "Wilson Integrated Psychiatry LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", + "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d673651b-b6cd-42d7-9397-a85604a7a61b", - "OrganizationName": "Wilson Integrated Psychiatry LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", + "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", - "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", + "OrganizationName": "Calata Medical Group, INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", - "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", + "OrganizationName": "Calata Medical Group, INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -5964,18 +5856,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", - "OrganizationName": "Calata Medical Group, INC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", - "OrganizationName": "Calata Medical Group, INC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/95430825-8d63-4f4b-ae69-9fb881ed71de", "OrganizationName": "Integrative Urgent Care", @@ -6024,6 +5904,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4f2eda-b19b-4fb7-a9a1-10f7e9cd07e1", + "OrganizationName": "Dr. Morgenstern Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4f2eda-b19b-4fb7-a9a1-10f7e9cd07e1", + "OrganizationName": "Dr. Morgenstern Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", "OrganizationName": "Curify Urgent Care", @@ -6037,26 +5929,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4f2eda-b19b-4fb7-a9a1-10f7e9cd07e1", - "OrganizationName": "Dr. Morgenstern Medical PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/52d8a017-6b8d-4011-a010-17bb48e48ea2", + "OrganizationName": "Riverview Psychiatric Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4f2eda-b19b-4fb7-a9a1-10f7e9cd07e1", - "OrganizationName": "Dr. Morgenstern Medical PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/52d8a017-6b8d-4011-a010-17bb48e48ea2", + "OrganizationName": "Riverview Psychiatric Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", - "OrganizationName": "Summers County Health Department", + "URL": "https://api.patientfusion.com/fhir/r4/v1/642343c3-84c0-4861-9566-5df1c747c655", + "OrganizationName": "J. Stephen Jaramillo, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", - "OrganizationName": "Summers County Health Department", + "URL": "https://api.practicefusion.com/fhir/r4/v1/642343c3-84c0-4861-9566-5df1c747c655", + "OrganizationName": "J. Stephen Jaramillo, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -6073,26 +5965,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/52d8a017-6b8d-4011-a010-17bb48e48ea2", - "OrganizationName": "Riverview Psychiatric Medicine, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", + "OrganizationName": "Summers County Health Department", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/52d8a017-6b8d-4011-a010-17bb48e48ea2", - "OrganizationName": "Riverview Psychiatric Medicine, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", + "OrganizationName": "Summers County Health Department", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/642343c3-84c0-4861-9566-5df1c747c655", - "OrganizationName": "J. Stephen Jaramillo, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", + "OrganizationName": "Si-hoi Lam MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/642343c3-84c0-4861-9566-5df1c747c655", - "OrganizationName": "J. Stephen Jaramillo, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", + "OrganizationName": "Si-hoi Lam MD LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6108,18 +6000,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", - "OrganizationName": "Si-hoi Lam MD LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", - "OrganizationName": "Si-hoi Lam MD LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", "OrganizationName": "Center for Colon and Digestive Diseases", @@ -6133,74 +6013,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", - "OrganizationName": "Radiant", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c6037ea4-6402-4fb3-a314-62c62babff93", + "OrganizationName": "Health Styles Medical Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", - "OrganizationName": "Radiant", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c6037ea4-6402-4fb3-a314-62c62babff93", + "OrganizationName": "Health Styles Medical Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", - "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6aab7eab-75fa-452e-beb0-f4f0238472f9", + "OrganizationName": "Timothy Walker, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", - "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6aab7eab-75fa-452e-beb0-f4f0238472f9", + "OrganizationName": "Timothy Walker, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/679662f1-9b45-4400-b720-307cc75cb9c2", - "OrganizationName": "PEDRO P CARBALLO MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4c1b112b-31bc-4caa-a4dc-131c77c23235", + "OrganizationName": "LONG ISLAND MEDICAL AND SPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/679662f1-9b45-4400-b720-307cc75cb9c2", - "OrganizationName": "PEDRO P CARBALLO MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4c1b112b-31bc-4caa-a4dc-131c77c23235", + "OrganizationName": "LONG ISLAND MEDICAL AND SPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c6037ea4-6402-4fb3-a314-62c62babff93", - "OrganizationName": "Health Styles Medical Care PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", + "OrganizationName": "Radiant", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c6037ea4-6402-4fb3-a314-62c62babff93", - "OrganizationName": "Health Styles Medical Care PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", + "OrganizationName": "Radiant", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6aab7eab-75fa-452e-beb0-f4f0238472f9", - "OrganizationName": "Timothy Walker, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", + "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6aab7eab-75fa-452e-beb0-f4f0238472f9", - "OrganizationName": "Timothy Walker, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", + "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4c1b112b-31bc-4caa-a4dc-131c77c23235", - "OrganizationName": "LONG ISLAND MEDICAL AND SPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/679662f1-9b45-4400-b720-307cc75cb9c2", + "OrganizationName": "PEDRO P CARBALLO MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4c1b112b-31bc-4caa-a4dc-131c77c23235", - "OrganizationName": "LONG ISLAND MEDICAL AND SPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/679662f1-9b45-4400-b720-307cc75cb9c2", + "OrganizationName": "PEDRO P CARBALLO MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -6216,18 +6096,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90e870a1-0437-4df8-a9d9-e0606466b5f7", - "OrganizationName": "Julita Jastrzab Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90e870a1-0437-4df8-a9d9-e0606466b5f7", - "OrganizationName": "Julita Jastrzab Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a7c48115-833b-47a9-90d6-da2ee71969f4", "OrganizationName": "New Sunrise Mental Health", @@ -6396,18 +6264,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1ede903-e8e0-4eca-b015-1504db2504a3", - "OrganizationName": "ViaScan of Las Colinas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1ede903-e8e0-4eca-b015-1504db2504a3", - "OrganizationName": "ViaScan of Las Colinas", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/436e724a-01a0-4a85-958c-8a2a53c8ef50", "OrganizationName": "Payman Vahedifar,M.D.", @@ -6421,74 +6277,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e06c3c95-1a18-40c8-8466-56b2831e2b62", - "OrganizationName": "Neurology Alliance", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1ede903-e8e0-4eca-b015-1504db2504a3", + "OrganizationName": "ViaScan of Las Colinas", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e06c3c95-1a18-40c8-8466-56b2831e2b62", - "OrganizationName": "Neurology Alliance", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1ede903-e8e0-4eca-b015-1504db2504a3", + "OrganizationName": "ViaScan of Las Colinas", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/12cee67a-804a-460f-80cb-ea4a82378cfe", - "OrganizationName": "CHI Lifestyle Medical Center, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/17de51a7-4cb2-4b72-a820-69ea152247e5", + "OrganizationName": "Saint Moscati Community Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/12cee67a-804a-460f-80cb-ea4a82378cfe", - "OrganizationName": "CHI Lifestyle Medical Center, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/17de51a7-4cb2-4b72-a820-69ea152247e5", + "OrganizationName": "Saint Moscati Community Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", - "OrganizationName": "Comprehensive Pain Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a5c5745-ec73-4c9d-bb6e-82bcd90e7f19", + "OrganizationName": "Wholly Wounds", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", - "OrganizationName": "Comprehensive Pain Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a5c5745-ec73-4c9d-bb6e-82bcd90e7f19", + "OrganizationName": "Wholly Wounds", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/17de51a7-4cb2-4b72-a820-69ea152247e5", - "OrganizationName": "Saint Moscati Community Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e06c3c95-1a18-40c8-8466-56b2831e2b62", + "OrganizationName": "Neurology Alliance", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/17de51a7-4cb2-4b72-a820-69ea152247e5", - "OrganizationName": "Saint Moscati Community Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e06c3c95-1a18-40c8-8466-56b2831e2b62", + "OrganizationName": "Neurology Alliance", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a5c5745-ec73-4c9d-bb6e-82bcd90e7f19", - "OrganizationName": "Wholly Wounds", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4e14306-492d-452b-a42d-3fcc024711dc", + "OrganizationName": "ENRIQUE A ROBLES MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a5c5745-ec73-4c9d-bb6e-82bcd90e7f19", - "OrganizationName": "Wholly Wounds", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4e14306-492d-452b-a42d-3fcc024711dc", + "OrganizationName": "ENRIQUE A ROBLES MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4e14306-492d-452b-a42d-3fcc024711dc", - "OrganizationName": "ENRIQUE A ROBLES MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/12cee67a-804a-460f-80cb-ea4a82378cfe", + "OrganizationName": "CHI Lifestyle Medical Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4e14306-492d-452b-a42d-3fcc024711dc", - "OrganizationName": "ENRIQUE A ROBLES MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/12cee67a-804a-460f-80cb-ea4a82378cfe", + "OrganizationName": "CHI Lifestyle Medical Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", + "OrganizationName": "Comprehensive Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", + "OrganizationName": "Comprehensive Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -6529,26 +6397,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1536742a-9d55-42e5-b3a0-a8977e39f307", - "OrganizationName": "Evolve Foot and Wound care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4116b335-7fad-4bdc-b2c7-17b3c2dba70b", + "OrganizationName": "Massachusetts Mind Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1536742a-9d55-42e5-b3a0-a8977e39f307", - "OrganizationName": "Evolve Foot and Wound care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4116b335-7fad-4bdc-b2c7-17b3c2dba70b", + "OrganizationName": "Massachusetts Mind Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4116b335-7fad-4bdc-b2c7-17b3c2dba70b", - "OrganizationName": "Massachusetts Mind Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1536742a-9d55-42e5-b3a0-a8977e39f307", + "OrganizationName": "Evolve Foot and Wound care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4116b335-7fad-4bdc-b2c7-17b3c2dba70b", - "OrganizationName": "Massachusetts Mind Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1536742a-9d55-42e5-b3a0-a8977e39f307", + "OrganizationName": "Evolve Foot and Wound care", "NPIID": "", "OrganizationZipCode": "" }, @@ -6577,38 +6445,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e7ee7652-088d-4493-aee1-7b122687ba8d", - "OrganizationName": "Hartland Medicine PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee2fb683-7350-4187-8f0e-24b6a6a6d1e0", + "OrganizationName": "Prairie State Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e7ee7652-088d-4493-aee1-7b122687ba8d", - "OrganizationName": "Hartland Medicine PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee2fb683-7350-4187-8f0e-24b6a6a6d1e0", + "OrganizationName": "Prairie State Rehab", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9dc0825a-125f-459d-96a0-16acc144cc9c", - "OrganizationName": "Downtown Medical Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e7ee7652-088d-4493-aee1-7b122687ba8d", + "OrganizationName": "Hartland Medicine PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9dc0825a-125f-459d-96a0-16acc144cc9c", - "OrganizationName": "Downtown Medical Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e7ee7652-088d-4493-aee1-7b122687ba8d", + "OrganizationName": "Hartland Medicine PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee2fb683-7350-4187-8f0e-24b6a6a6d1e0", - "OrganizationName": "Prairie State Rehab", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9dc0825a-125f-459d-96a0-16acc144cc9c", + "OrganizationName": "Downtown Medical Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee2fb683-7350-4187-8f0e-24b6a6a6d1e0", - "OrganizationName": "Prairie State Rehab", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9dc0825a-125f-459d-96a0-16acc144cc9c", + "OrganizationName": "Downtown Medical Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6625,26 +6493,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", - "OrganizationName": "At Your Door Physician Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/25be337a-60d2-4e4a-aac1-03f7dd5918e3", + "OrganizationName": "Nicholas E. Nomicos, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", - "OrganizationName": "At Your Door Physician Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/25be337a-60d2-4e4a-aac1-03f7dd5918e3", + "OrganizationName": "Nicholas E. Nomicos, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/25be337a-60d2-4e4a-aac1-03f7dd5918e3", - "OrganizationName": "Nicholas E. Nomicos, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", + "OrganizationName": "At Your Door Physician Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/25be337a-60d2-4e4a-aac1-03f7dd5918e3", - "OrganizationName": "Nicholas E. Nomicos, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", + "OrganizationName": "At Your Door Physician Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -6685,50 +6553,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", - "OrganizationName": "Salsberry Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", + "OrganizationName": "Freeway Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", - "OrganizationName": "Salsberry Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", + "OrganizationName": "Freeway Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", - "OrganizationName": "Faith Healthcare and Healing, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", + "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", - "OrganizationName": "Faith Healthcare and Healing, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", + "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", - "OrganizationName": "Freeway Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", + "OrganizationName": "Salsberry Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", - "OrganizationName": "Freeway Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", + "OrganizationName": "Salsberry Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", - "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", + "OrganizationName": "Faith Healthcare and Healing, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", - "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", + "OrganizationName": "Faith Healthcare and Healing, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6829,26 +6697,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e6ac7eb-4623-470e-9378-90bf00ca358a", - "OrganizationName": "YEP Clinic and Lasting Impressions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/34eeee7b-82f2-4f4c-bfc8-1a9095e53f64", + "OrganizationName": "NouVo Med", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e6ac7eb-4623-470e-9378-90bf00ca358a", - "OrganizationName": "YEP Clinic and Lasting Impressions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/34eeee7b-82f2-4f4c-bfc8-1a9095e53f64", + "OrganizationName": "NouVo Med", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34eeee7b-82f2-4f4c-bfc8-1a9095e53f64", - "OrganizationName": "NouVo Med", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e6ac7eb-4623-470e-9378-90bf00ca358a", + "OrganizationName": "YEP Clinic and Lasting Impressions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34eeee7b-82f2-4f4c-bfc8-1a9095e53f64", - "OrganizationName": "NouVo Med", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e6ac7eb-4623-470e-9378-90bf00ca358a", + "OrganizationName": "YEP Clinic and Lasting Impressions", "NPIID": "", "OrganizationZipCode": "" }, @@ -6876,18 +6744,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", - "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", - "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1fdfe93e-5d15-4e1c-bc02-72d5d90d8d21", "OrganizationName": "L Tan MD LC", @@ -6901,14 +6757,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", - "OrganizationName": "Arca Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", + "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", - "OrganizationName": "Arca Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", + "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -6925,50 +6781,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", - "OrganizationName": "Zullimary Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c274b3bc-243d-40e5-a50d-1fa59c00c7fe", + "OrganizationName": "Insiteflow Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", - "OrganizationName": "Zullimary Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c274b3bc-243d-40e5-a50d-1fa59c00c7fe", + "OrganizationName": "Insiteflow Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c274b3bc-243d-40e5-a50d-1fa59c00c7fe", - "OrganizationName": "Insiteflow Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", + "OrganizationName": "Shahab Mokhtare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c274b3bc-243d-40e5-a50d-1fa59c00c7fe", - "OrganizationName": "Insiteflow Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", + "OrganizationName": "Shahab Mokhtare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", - "OrganizationName": "West Boise Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", - "OrganizationName": "West Boise Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", - "OrganizationName": "Shahab Mokhtare Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Zullimary Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", - "OrganizationName": "Shahab Mokhtare Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Zullimary Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", + "OrganizationName": "West Boise Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", + "OrganizationName": "West Boise Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -6996,6 +6864,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9bb1fd57-ba01-4449-9e00-cf08a95f4948", + "OrganizationName": "Primary Care NPS, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9bb1fd57-ba01-4449-9e00-cf08a95f4948", + "OrganizationName": "Primary Care NPS, INC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/dc93ea47-1cbe-4b49-abbb-fafa376ae7c8", "OrganizationName": "Wholistic Perspective", @@ -7009,14 +6889,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9bb1fd57-ba01-4449-9e00-cf08a95f4948", - "OrganizationName": "Primary Care NPS, INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/385759d8-ab77-4f84-a86c-5290a3a418b3", + "OrganizationName": "Center for Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9bb1fd57-ba01-4449-9e00-cf08a95f4948", - "OrganizationName": "Primary Care NPS, INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/385759d8-ab77-4f84-a86c-5290a3a418b3", + "OrganizationName": "Center for Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, @@ -7080,18 +6960,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/385759d8-ab77-4f84-a86c-5290a3a418b3", - "OrganizationName": "Center for Nephrology \u0026 Hypertension", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/385759d8-ab77-4f84-a86c-5290a3a418b3", - "OrganizationName": "Center for Nephrology \u0026 Hypertension", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", "OrganizationName": "Vitality Medical Associates", @@ -7117,26 +6985,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", - "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", + "URL": "https://api.patientfusion.com/fhir/r4/v1/802ce909-cf9e-4aa1-8139-998856c72308", + "OrganizationName": "UpBeat Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", - "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", + "URL": "https://api.practicefusion.com/fhir/r4/v1/802ce909-cf9e-4aa1-8139-998856c72308", + "OrganizationName": "UpBeat Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb202375-5be7-4456-9534-addb2b0c2054", - "OrganizationName": "Carlos Delgado MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", + "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb202375-5be7-4456-9534-addb2b0c2054", - "OrganizationName": "Carlos Delgado MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", + "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", "NPIID": "", "OrganizationZipCode": "" }, @@ -7177,26 +7045,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f8e198-8c7a-4bfc-81b8-330e9e9e1a63", - "OrganizationName": "CHAM CLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb202375-5be7-4456-9534-addb2b0c2054", + "OrganizationName": "Carlos Delgado MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f8e198-8c7a-4bfc-81b8-330e9e9e1a63", - "OrganizationName": "CHAM CLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb202375-5be7-4456-9534-addb2b0c2054", + "OrganizationName": "Carlos Delgado MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/802ce909-cf9e-4aa1-8139-998856c72308", - "OrganizationName": "UpBeat Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f8e198-8c7a-4bfc-81b8-330e9e9e1a63", + "OrganizationName": "CHAM CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/802ce909-cf9e-4aa1-8139-998856c72308", - "OrganizationName": "UpBeat Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f8e198-8c7a-4bfc-81b8-330e9e9e1a63", + "OrganizationName": "CHAM CLINIC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7261,74 +7129,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c18cab98-25f8-4a6f-866a-202969815ddf", - "OrganizationName": "Recovering Hope Treatment Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ace65d3-2ccc-4b20-905d-d1e95b5397e3", + "OrganizationName": "Institute of Modern Pulmonary and Sleep Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c18cab98-25f8-4a6f-866a-202969815ddf", - "OrganizationName": "Recovering Hope Treatment Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ace65d3-2ccc-4b20-905d-d1e95b5397e3", + "OrganizationName": "Institute of Modern Pulmonary and Sleep Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", - "OrganizationName": "StatCare Urgent Care Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c18cab98-25f8-4a6f-866a-202969815ddf", + "OrganizationName": "Recovering Hope Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", - "OrganizationName": "StatCare Urgent Care Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c18cab98-25f8-4a6f-866a-202969815ddf", + "OrganizationName": "Recovering Hope Treatment Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ace65d3-2ccc-4b20-905d-d1e95b5397e3", - "OrganizationName": "Institute of Modern Pulmonary and Sleep Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ef96bec6-5f1c-4018-a6f8-6140b9d39968", + "OrganizationName": "EMILY WANYOIKE Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ace65d3-2ccc-4b20-905d-d1e95b5397e3", - "OrganizationName": "Institute of Modern Pulmonary and Sleep Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ef96bec6-5f1c-4018-a6f8-6140b9d39968", + "OrganizationName": "EMILY WANYOIKE Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9e430b-3638-4f3d-a298-6a35a56722f4", - "OrganizationName": "Medical Rehab Clinic of Broward", + "URL": "https://api.patientfusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", + "OrganizationName": "StatCare Urgent Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9e430b-3638-4f3d-a298-6a35a56722f4", - "OrganizationName": "Medical Rehab Clinic of Broward", + "URL": "https://api.practicefusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", + "OrganizationName": "StatCare Urgent Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ef96bec6-5f1c-4018-a6f8-6140b9d39968", - "OrganizationName": "EMILY WANYOIKE Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", + "OrganizationName": "Reliance Medical Associates of Jax, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ef96bec6-5f1c-4018-a6f8-6140b9d39968", - "OrganizationName": "EMILY WANYOIKE Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", + "OrganizationName": "Reliance Medical Associates of Jax, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", - "OrganizationName": "Reliance Medical Associates of Jax, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9e430b-3638-4f3d-a298-6a35a56722f4", + "OrganizationName": "Medical Rehab Clinic of Broward", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", - "OrganizationName": "Reliance Medical Associates of Jax, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9e430b-3638-4f3d-a298-6a35a56722f4", + "OrganizationName": "Medical Rehab Clinic of Broward", "NPIID": "", "OrganizationZipCode": "" }, @@ -7368,6 +7236,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ebb2979-74ce-459a-b50d-1ed0aee11773", + "OrganizationName": "Las Vegas Pediatric Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ebb2979-74ce-459a-b50d-1ed0aee11773", + "OrganizationName": "Las Vegas Pediatric Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", "OrganizationName": "Dr. Jose M. Ortega Velez", @@ -7381,14 +7261,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ebb2979-74ce-459a-b50d-1ed0aee11773", - "OrganizationName": "Las Vegas Pediatric Urology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", + "OrganizationName": "The Family Practice of Madison", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ebb2979-74ce-459a-b50d-1ed0aee11773", - "OrganizationName": "Las Vegas Pediatric Urology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", + "OrganizationName": "The Family Practice of Madison", "NPIID": "", "OrganizationZipCode": "" }, @@ -7440,18 +7320,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", - "OrganizationName": "The Family Practice of Madison", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", - "OrganizationName": "The Family Practice of Madison", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", "OrganizationName": "Nova Medica PLLC", @@ -7489,74 +7357,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", - "OrganizationName": "Juli A.Weitzen DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4fc6c205-4569-430b-b386-d71b381b1646", + "OrganizationName": "Suhattai Gamnerdsiri,M.D.,LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", - "OrganizationName": "Juli A.Weitzen DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4fc6c205-4569-430b-b386-d71b381b1646", + "OrganizationName": "Suhattai Gamnerdsiri,M.D.,LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a93974e2-4f96-40a1-9627-7f5e611e679e", - "OrganizationName": "Susan E. Jenkins, M.D., P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c37b5cc-61cf-4c82-bd46-a8238797df61", + "OrganizationName": "Lisa J. Trigg PhD ARNP PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a93974e2-4f96-40a1-9627-7f5e611e679e", - "OrganizationName": "Susan E. Jenkins, M.D., P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c37b5cc-61cf-4c82-bd46-a8238797df61", + "OrganizationName": "Lisa J. Trigg PhD ARNP PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/739de3b2-dfe6-4bf9-802e-1799922e761a", - "OrganizationName": "CAROLINA MERCY MEDICAL CLINIC PC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", + "OrganizationName": "Boston Psychiatric Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/739de3b2-dfe6-4bf9-802e-1799922e761a", - "OrganizationName": "CAROLINA MERCY MEDICAL CLINIC PC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", + "OrganizationName": "Boston Psychiatric Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4fc6c205-4569-430b-b386-d71b381b1646", - "OrganizationName": "Suhattai Gamnerdsiri,M.D.,LTD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", + "OrganizationName": "Juli A.Weitzen DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4fc6c205-4569-430b-b386-d71b381b1646", - "OrganizationName": "Suhattai Gamnerdsiri,M.D.,LTD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", + "OrganizationName": "Juli A.Weitzen DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c37b5cc-61cf-4c82-bd46-a8238797df61", - "OrganizationName": "Lisa J. Trigg PhD ARNP PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a93974e2-4f96-40a1-9627-7f5e611e679e", + "OrganizationName": "Susan E. Jenkins, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c37b5cc-61cf-4c82-bd46-a8238797df61", - "OrganizationName": "Lisa J. Trigg PhD ARNP PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a93974e2-4f96-40a1-9627-7f5e611e679e", + "OrganizationName": "Susan E. Jenkins, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", - "OrganizationName": "Boston Psychiatric Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/739de3b2-dfe6-4bf9-802e-1799922e761a", + "OrganizationName": "CAROLINA MERCY MEDICAL CLINIC PC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", - "OrganizationName": "Boston Psychiatric Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/739de3b2-dfe6-4bf9-802e-1799922e761a", + "OrganizationName": "CAROLINA MERCY MEDICAL CLINIC PC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -7584,6 +7452,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/48f9a586-f1c2-45e8-9bce-7a83be766ffc", + "OrganizationName": "Woodstock Medicinal Doctors of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/48f9a586-f1c2-45e8-9bce-7a83be766ffc", + "OrganizationName": "Woodstock Medicinal Doctors of Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", @@ -7597,14 +7489,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2eeb9733-ed3a-4ce3-813e-b3559482efe0", - "OrganizationName": "GRAND RAPIDS MEN'S CLINIC PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", + "OrganizationName": "Family Healthcare of Jackson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2eeb9733-ed3a-4ce3-813e-b3559482efe0", - "OrganizationName": "GRAND RAPIDS MEN'S CLINIC PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", + "OrganizationName": "Family Healthcare of Jackson", "NPIID": "", "OrganizationZipCode": "" }, @@ -7621,14 +7513,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/48f9a586-f1c2-45e8-9bce-7a83be766ffc", - "OrganizationName": "Woodstock Medicinal Doctors of Florida", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", + "OrganizationName": "Carine Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/48f9a586-f1c2-45e8-9bce-7a83be766ffc", - "OrganizationName": "Woodstock Medicinal Doctors of Florida", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", + "OrganizationName": "Carine Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -7644,18 +7536,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", - "OrganizationName": "Aspire Wellness Center, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", - "OrganizationName": "Aspire Wellness Center, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", "OrganizationName": "Brugman Attention Associates, PLLC", @@ -7680,30 +7560,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", - "OrganizationName": "Carine Family Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", - "OrganizationName": "Carine Family Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", - "OrganizationName": "Family Healthcare of Jackson", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", - "OrganizationName": "Family Healthcare of Jackson", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4a5c55ab-722d-4627-be6b-33f977995189", "OrganizationName": "Rapido Clinica Familiar", @@ -7741,26 +7597,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/822f9af9-93a4-41d0-bfae-ef20f696be75", - "OrganizationName": "LactationMD, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b0eb4826-4ebb-48af-8376-b4b8f30dce4c", + "OrganizationName": "Rightplace Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/822f9af9-93a4-41d0-bfae-ef20f696be75", - "OrganizationName": "LactationMD, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b0eb4826-4ebb-48af-8376-b4b8f30dce4c", + "OrganizationName": "Rightplace Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b0eb4826-4ebb-48af-8376-b4b8f30dce4c", - "OrganizationName": "Rightplace Family Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/822f9af9-93a4-41d0-bfae-ef20f696be75", + "OrganizationName": "LactationMD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b0eb4826-4ebb-48af-8376-b4b8f30dce4c", - "OrganizationName": "Rightplace Family Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/822f9af9-93a4-41d0-bfae-ef20f696be75", + "OrganizationName": "LactationMD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7788,18 +7644,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b500487-1148-432f-ae48-c7c0a8a7385b", - "OrganizationName": "Victor Levitan, MD, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4b500487-1148-432f-ae48-c7c0a8a7385b", - "OrganizationName": "Victor Levitan, MD, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c1f2aea3-40ea-4b70-a0ad-d1fc089bbc7c", "OrganizationName": "Prime Healthcare Center", @@ -7813,38 +7657,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", - "OrganizationName": "Island Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36c86322-b04c-4640-be5a-e2422c3533fa", + "OrganizationName": "Hurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", - "OrganizationName": "Island Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36c86322-b04c-4640-be5a-e2422c3533fa", + "OrganizationName": "Hurst Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", - "OrganizationName": "Deepak Seth M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4b500487-1148-432f-ae48-c7c0a8a7385b", + "OrganizationName": "Victor Levitan, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", - "OrganizationName": "Deepak Seth M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b500487-1148-432f-ae48-c7c0a8a7385b", + "OrganizationName": "Victor Levitan, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7649f8bc-6e92-47f0-badc-bfa091309c8a", - "OrganizationName": "Concierge Endocrinology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7649f8bc-6e92-47f0-badc-bfa091309c8a", - "OrganizationName": "Concierge Endocrinology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -7861,50 +7705,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9f3b072a-9199-4c31-a094-d59eb48fd239", - "OrganizationName": "Northern Lights Health, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7649f8bc-6e92-47f0-badc-bfa091309c8a", + "OrganizationName": "Concierge Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9f3b072a-9199-4c31-a094-d59eb48fd239", - "OrganizationName": "Northern Lights Health, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7649f8bc-6e92-47f0-badc-bfa091309c8a", + "OrganizationName": "Concierge Endocrinology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/08416fbf-b404-4d77-adaf-9a5e1f7649a2", - "OrganizationName": "Alpha DNA Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ed0136da-bae8-47cc-bfb2-6ccdb383dbfd", + "OrganizationName": "Premium Practitioners Plus INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/08416fbf-b404-4d77-adaf-9a5e1f7649a2", - "OrganizationName": "Alpha DNA Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ed0136da-bae8-47cc-bfb2-6ccdb383dbfd", + "OrganizationName": "Premium Practitioners Plus INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ed0136da-bae8-47cc-bfb2-6ccdb383dbfd", - "OrganizationName": "Premium Practitioners Plus INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ed0136da-bae8-47cc-bfb2-6ccdb383dbfd", - "OrganizationName": "Premium Practitioners Plus INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36c86322-b04c-4640-be5a-e2422c3533fa", - "OrganizationName": "Hurst Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9f3b072a-9199-4c31-a094-d59eb48fd239", + "OrganizationName": "Northern Lights Health, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36c86322-b04c-4640-be5a-e2422c3533fa", - "OrganizationName": "Hurst Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9f3b072a-9199-4c31-a094-d59eb48fd239", + "OrganizationName": "Northern Lights Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/08416fbf-b404-4d77-adaf-9a5e1f7649a2", + "OrganizationName": "Alpha DNA Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/08416fbf-b404-4d77-adaf-9a5e1f7649a2", + "OrganizationName": "Alpha DNA Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -7968,18 +7824,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9579548e-9219-4471-b697-c3f54129bc7f", - "OrganizationName": "SELEST HEALTH CENTER, INC.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9579548e-9219-4471-b697-c3f54129bc7f", - "OrganizationName": "SELEST HEALTH CENTER, INC.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9ef6eecf-e697-4538-9cbd-1948027b0793", "OrganizationName": "Gutierrez Medical Center", @@ -7993,14 +7837,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", - "OrganizationName": "Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9579548e-9219-4471-b697-c3f54129bc7f", + "OrganizationName": "SELEST HEALTH CENTER, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", - "OrganizationName": "Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9579548e-9219-4471-b697-c3f54129bc7f", + "OrganizationName": "SELEST HEALTH CENTER, INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -8041,14 +7885,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", - "OrganizationName": "Delta pain consultant", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", + "OrganizationName": "Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", - "OrganizationName": "Delta pain consultant", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", + "OrganizationName": "Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -8064,6 +7908,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", + "OrganizationName": "Delta pain consultant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", + "OrganizationName": "Delta pain consultant", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", "OrganizationName": "365 On Call, LLC", @@ -8112,18 +7968,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b1c87020-678f-4582-8598-1249d7f0fd72", - "OrganizationName": "Mahesh Kottapalli MD, PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b1c87020-678f-4582-8598-1249d7f0fd72", - "OrganizationName": "Mahesh Kottapalli MD, PA", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d578b4cd-07ab-4e00-b024-6fb3164aa9be", "OrganizationName": "Haris Medical Group", @@ -8137,26 +7981,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", - "OrganizationName": "Connie D. Chappel, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b1c87020-678f-4582-8598-1249d7f0fd72", + "OrganizationName": "Mahesh Kottapalli MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", - "OrganizationName": "Connie D. Chappel, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b1c87020-678f-4582-8598-1249d7f0fd72", + "OrganizationName": "Mahesh Kottapalli MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", - "OrganizationName": "kimberly miletti Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e808b9cb-482f-4576-b0eb-b294fa199b49", + "OrganizationName": "Family First Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", - "OrganizationName": "kimberly miletti Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e808b9cb-482f-4576-b0eb-b294fa199b49", + "OrganizationName": "Family First Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -8173,14 +8017,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e808b9cb-482f-4576-b0eb-b294fa199b49", - "OrganizationName": "Family First Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", + "OrganizationName": "Connie D. Chappel, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e808b9cb-482f-4576-b0eb-b294fa199b49", - "OrganizationName": "Family First Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", + "OrganizationName": "Connie D. Chappel, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", + "OrganizationName": "kimberly miletti Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", + "OrganizationName": "kimberly miletti Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -8197,14 +8053,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", - "OrganizationName": "Advanced Surgical Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", + "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", - "OrganizationName": "Advanced Surgical Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", + "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -8221,26 +8077,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9956fe3c-aa41-4fe2-9dde-f616207a438d", - "OrganizationName": "Primary Care and Preventive Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", + "OrganizationName": "Advanced Surgical Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9956fe3c-aa41-4fe2-9dde-f616207a438d", - "OrganizationName": "Primary Care and Preventive Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", + "OrganizationName": "Advanced Surgical Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", - "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9956fe3c-aa41-4fe2-9dde-f616207a438d", + "OrganizationName": "Primary Care and Preventive Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", - "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9956fe3c-aa41-4fe2-9dde-f616207a438d", + "OrganizationName": "Primary Care and Preventive Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -8329,14 +8185,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/826cc644-e83d-4291-893a-d3fb67d925c8", - "OrganizationName": "Iriarte Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/62989d10-4f1d-4261-97b7-f35401dc76c4", + "OrganizationName": "Allied Foot \u0026 Ankle", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/826cc644-e83d-4291-893a-d3fb67d925c8", - "OrganizationName": "Iriarte Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62989d10-4f1d-4261-97b7-f35401dc76c4", + "OrganizationName": "Allied Foot \u0026 Ankle", "NPIID": "", "OrganizationZipCode": "" }, @@ -8353,14 +8209,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62989d10-4f1d-4261-97b7-f35401dc76c4", - "OrganizationName": "Allied Foot \u0026 Ankle", + "URL": "https://api.patientfusion.com/fhir/r4/v1/826cc644-e83d-4291-893a-d3fb67d925c8", + "OrganizationName": "Iriarte Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/62989d10-4f1d-4261-97b7-f35401dc76c4", - "OrganizationName": "Allied Foot \u0026 Ankle", + "URL": "https://api.practicefusion.com/fhir/r4/v1/826cc644-e83d-4291-893a-d3fb67d925c8", + "OrganizationName": "Iriarte Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -8388,18 +8244,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", - "OrganizationName": "Bernard Rose, Beavertown Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", - "OrganizationName": "Bernard Rose, Beavertown Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e81eb3c7-6191-4be8-bbcb-b4146b1bc29c", "OrganizationName": "Betty Cooper Practice 2", @@ -8425,26 +8269,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", - "OrganizationName": "Body RX Gables", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", + "OrganizationName": "Bernard Rose, Beavertown Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", - "OrganizationName": "Body RX Gables", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", + "OrganizationName": "Bernard Rose, Beavertown Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", + "OrganizationName": "Body RX Gables", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", + "OrganizationName": "Body RX Gables", "NPIID": "", "OrganizationZipCode": "" }, @@ -8461,26 +8305,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", - "OrganizationName": "DHMR Clinics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/17690985-668b-465d-9978-a98490552d0a", + "OrganizationName": "Bridgeway Behavioral Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", - "OrganizationName": "DHMR Clinics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/17690985-668b-465d-9978-a98490552d0a", + "OrganizationName": "Bridgeway Behavioral Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/17690985-668b-465d-9978-a98490552d0a", - "OrganizationName": "Bridgeway Behavioral Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", + "OrganizationName": "Carlos F. Fuster, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/17690985-668b-465d-9978-a98490552d0a", - "OrganizationName": "Bridgeway Behavioral Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", + "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", + "OrganizationName": "DHMR Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", + "OrganizationName": "DHMR Clinics", "NPIID": "", "OrganizationZipCode": "" }, @@ -8556,18 +8412,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1fd61e0e-41cf-4a81-b56d-a6717f158b32", "OrganizationName": "Elaina Vayntrub, MD", @@ -8593,8 +8437,20 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7058c7fe-0766-40fd-8ea2-26f1dd67c175", - "OrganizationName": "Firstfruits Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", + "OrganizationName": "Ed Matthews Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", + "OrganizationName": "Ed Matthews Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7058c7fe-0766-40fd-8ea2-26f1dd67c175", + "OrganizationName": "Firstfruits Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -8641,26 +8497,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80a3c4f0-1c23-45a2-a015-72e741c5bc03", - "OrganizationName": "Fresh Start Psychiatry and Recovery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", + "OrganizationName": "Galenos Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80a3c4f0-1c23-45a2-a015-72e741c5bc03", - "OrganizationName": "Fresh Start Psychiatry and Recovery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", + "OrganizationName": "Galenos Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", - "OrganizationName": "Galenos Medical Centers", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80a3c4f0-1c23-45a2-a015-72e741c5bc03", + "OrganizationName": "Fresh Start Psychiatry and Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", - "OrganizationName": "Galenos Medical Centers", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80a3c4f0-1c23-45a2-a015-72e741c5bc03", + "OrganizationName": "Fresh Start Psychiatry and Recovery", "NPIID": "", "OrganizationZipCode": "" }, @@ -8676,6 +8532,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e2a5c057-7acd-4724-b191-567e65f2d5b3", "OrganizationName": "Satish Cheti Practice", @@ -8690,13 +8558,13 @@ }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", - "OrganizationName": "VitalBridge Health", + "OrganizationName": "VitalBridge Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", - "OrganizationName": "VitalBridge Health", + "OrganizationName": "VitalBridge Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -8736,18 +8604,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", "OrganizationName": "Infinity Group Health", @@ -8761,14 +8617,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", - "OrganizationName": "The Kroll Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", - "OrganizationName": "The Kroll Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -8785,14 +8641,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", - "OrganizationName": "Kinghaven Medical System, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/28361e78-3cf8-4ce8-bbf4-a372fab85d8c", + "OrganizationName": "Integracare DBA Doctors Unlimited SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", - "OrganizationName": "Kinghaven Medical System, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/28361e78-3cf8-4ce8-bbf4-a372fab85d8c", + "OrganizationName": "Integracare DBA Doctors Unlimited SC", "NPIID": "", "OrganizationZipCode": "" }, @@ -8809,74 +8665,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b4da675f-c031-48c1-9b03-4072f97fc8c3", - "OrganizationName": "Virginia Pulmonary Associates, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", + "OrganizationName": "Thierry Jacquemin DO PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b4da675f-c031-48c1-9b03-4072f97fc8c3", - "OrganizationName": "Virginia Pulmonary Associates, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", + "OrganizationName": "Thierry Jacquemin DO PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/28361e78-3cf8-4ce8-bbf4-a372fab85d8c", - "OrganizationName": "Integracare DBA Doctors Unlimited SC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", + "OrganizationName": "West Orange Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/28361e78-3cf8-4ce8-bbf4-a372fab85d8c", - "OrganizationName": "Integracare DBA Doctors Unlimited SC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", + "OrganizationName": "West Orange Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", - "OrganizationName": "Thierry Jacquemin DO PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", + "OrganizationName": "Kinghaven Medical System, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", - "OrganizationName": "Thierry Jacquemin DO PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", + "OrganizationName": "Kinghaven Medical System, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", - "OrganizationName": "West Orange Family Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a28bdb41-5506-4edd-ba56-91c5f9bcdda2", + "OrganizationName": "Pivotal Health and Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", - "OrganizationName": "West Orange Family Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a28bdb41-5506-4edd-ba56-91c5f9bcdda2", + "OrganizationName": "Pivotal Health and Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a28bdb41-5506-4edd-ba56-91c5f9bcdda2", - "OrganizationName": "Pivotal Health and Wellness Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4da675f-c031-48c1-9b03-4072f97fc8c3", + "OrganizationName": "Virginia Pulmonary Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a28bdb41-5506-4edd-ba56-91c5f9bcdda2", - "OrganizationName": "Pivotal Health and Wellness Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4da675f-c031-48c1-9b03-4072f97fc8c3", + "OrganizationName": "Virginia Pulmonary Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/813f71cc-67db-4a61-bf1d-c1ec0878f400", - "OrganizationName": "Rubina Aqeel Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/40bee5df-dc13-470d-b473-46b7cefa4229", + "OrganizationName": "Internal Medicine, Geriatrics and Oncology Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/813f71cc-67db-4a61-bf1d-c1ec0878f400", - "OrganizationName": "Rubina Aqeel Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/40bee5df-dc13-470d-b473-46b7cefa4229", + "OrganizationName": "Internal Medicine, Geriatrics and Oncology Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -8893,50 +8749,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/40bee5df-dc13-470d-b473-46b7cefa4229", - "OrganizationName": "Internal Medicine, Geriatrics and Oncology Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/813f71cc-67db-4a61-bf1d-c1ec0878f400", + "OrganizationName": "Rubina Aqeel Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/40bee5df-dc13-470d-b473-46b7cefa4229", - "OrganizationName": "Internal Medicine, Geriatrics and Oncology Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/813f71cc-67db-4a61-bf1d-c1ec0878f400", + "OrganizationName": "Rubina Aqeel Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", - "OrganizationName": "Total Support Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0555bfe3-1ed9-4782-819d-f77e72b77e4e", + "OrganizationName": "Dr. Jorge A Roman Gonzalez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", - "OrganizationName": "Total Support Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0555bfe3-1ed9-4782-819d-f77e72b77e4e", + "OrganizationName": "Dr. Jorge A Roman Gonzalez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4f15a03a-cc12-4a53-bd66-15e63ccb8b1a", - "OrganizationName": "MCO WELLNESS CENTER LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67c5e3b0-cae1-433c-94a0-7da9f1f8efae", + "OrganizationName": "Ivan Irizarry Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4f15a03a-cc12-4a53-bd66-15e63ccb8b1a", - "OrganizationName": "MCO WELLNESS CENTER LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67c5e3b0-cae1-433c-94a0-7da9f1f8efae", + "OrganizationName": "Ivan Irizarry Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67c5e3b0-cae1-433c-94a0-7da9f1f8efae", - "OrganizationName": "Ivan Irizarry Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4f15a03a-cc12-4a53-bd66-15e63ccb8b1a", + "OrganizationName": "MCO WELLNESS CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67c5e3b0-cae1-433c-94a0-7da9f1f8efae", - "OrganizationName": "Ivan Irizarry Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4f15a03a-cc12-4a53-bd66-15e63ccb8b1a", + "OrganizationName": "MCO WELLNESS CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -8953,26 +8809,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0555bfe3-1ed9-4782-819d-f77e72b77e4e", - "OrganizationName": "Dr. Jorge A Roman Gonzalez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b5048fdb-b8ff-44d6-a796-bb714497e57f", + "OrganizationName": "Dr. Michael Fitzgibbons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0555bfe3-1ed9-4782-819d-f77e72b77e4e", - "OrganizationName": "Dr. Jorge A Roman Gonzalez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5048fdb-b8ff-44d6-a796-bb714497e57f", + "OrganizationName": "Dr. Michael Fitzgibbons", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b5048fdb-b8ff-44d6-a796-bb714497e57f", - "OrganizationName": "Dr. Michael Fitzgibbons", + "URL": "https://api.patientfusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b5048fdb-b8ff-44d6-a796-bb714497e57f", - "OrganizationName": "Dr. Michael Fitzgibbons", + "URL": "https://api.practicefusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -9001,14 +8857,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1a7472cc-c610-47fb-912b-f5f1f22d9904", - "OrganizationName": "Frank Costa Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/98b16d92-35b5-4c81-af0d-158c44ccd052", + "OrganizationName": "Internal Medicine \u0026 Primary Care Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1a7472cc-c610-47fb-912b-f5f1f22d9904", - "OrganizationName": "Frank Costa Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/98b16d92-35b5-4c81-af0d-158c44ccd052", + "OrganizationName": "Internal Medicine \u0026 Primary Care Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -9025,26 +8881,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/98b16d92-35b5-4c81-af0d-158c44ccd052", - "OrganizationName": "Internal Medicine \u0026 Primary Care Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/98b16d92-35b5-4c81-af0d-158c44ccd052", - "OrganizationName": "Internal Medicine \u0026 Primary Care Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dab6fc62-0249-4232-93ac-63b74a10d1d4", - "OrganizationName": "M. Chavez, MD, SC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", + "OrganizationName": "Invictus Health Partners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dab6fc62-0249-4232-93ac-63b74a10d1d4", - "OrganizationName": "M. Chavez, MD, SC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", + "OrganizationName": "Invictus Health Partners", "NPIID": "", "OrganizationZipCode": "" }, @@ -9073,74 +8917,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", - "OrganizationName": "La Dona LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dab6fc62-0249-4232-93ac-63b74a10d1d4", + "OrganizationName": "M. Chavez, MD, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", - "OrganizationName": "La Dona LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab6fc62-0249-4232-93ac-63b74a10d1d4", + "OrganizationName": "M. Chavez, MD, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/655a3894-1f51-4f1c-bd4f-618d559dccf1", - "OrganizationName": "Maryam Khan MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/85254202-07e3-455e-9e35-0410bdeba849", + "OrganizationName": "MidValley Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/655a3894-1f51-4f1c-bd4f-618d559dccf1", - "OrganizationName": "Maryam Khan MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/85254202-07e3-455e-9e35-0410bdeba849", + "OrganizationName": "MidValley Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/939fba74-8224-4f76-a0ce-55feef3012fe", - "OrganizationName": "Kimberly McDermott Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0fef80-ce2b-4ca5-83e7-0aca0a16294e", + "OrganizationName": "McMinnville Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/939fba74-8224-4f76-a0ce-55feef3012fe", - "OrganizationName": "Kimberly McDermott Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0fef80-ce2b-4ca5-83e7-0aca0a16294e", + "OrganizationName": "McMinnville Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", - "OrganizationName": "Invictus Health Partners", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", + "OrganizationName": "La Dona LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", - "OrganizationName": "Invictus Health Partners", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", + "OrganizationName": "La Dona LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0fef80-ce2b-4ca5-83e7-0aca0a16294e", - "OrganizationName": "McMinnville Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/655a3894-1f51-4f1c-bd4f-618d559dccf1", + "OrganizationName": "Maryam Khan MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0fef80-ce2b-4ca5-83e7-0aca0a16294e", - "OrganizationName": "McMinnville Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/655a3894-1f51-4f1c-bd4f-618d559dccf1", + "OrganizationName": "Maryam Khan MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/85254202-07e3-455e-9e35-0410bdeba849", - "OrganizationName": "MidValley Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/939fba74-8224-4f76-a0ce-55feef3012fe", + "OrganizationName": "North Idaho Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/85254202-07e3-455e-9e35-0410bdeba849", - "OrganizationName": "MidValley Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/939fba74-8224-4f76-a0ce-55feef3012fe", + "OrganizationName": "North Idaho Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -9180,18 +9024,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2052561f-ba87-4b7d-8b51-98591513079a", - "OrganizationName": "Precision ENT (Kadkade MD PLLC)", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2052561f-ba87-4b7d-8b51-98591513079a", - "OrganizationName": "Precision ENT (Kadkade MD PLLC)", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/68d07136-0519-444e-9345-801dcfc9b0ab", "OrganizationName": "Oculoplastic Eye Surgeons of Phoenix", @@ -9205,38 +9037,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da7039de-aed8-4e51-b724-82f35e8467e5", - "OrganizationName": "Richard Ingram MD Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2052561f-ba87-4b7d-8b51-98591513079a", + "OrganizationName": "Precision ENT (Kadkade MD PLLC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da7039de-aed8-4e51-b724-82f35e8467e5", - "OrganizationName": "Richard Ingram MD Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2052561f-ba87-4b7d-8b51-98591513079a", + "OrganizationName": "Precision ENT (Kadkade MD PLLC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d96e726f-ecf0-484b-bcc8-b6994ed7de9f", - "OrganizationName": "RP Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f7d3f2c-6ea8-471a-83f3-abe4f9aadeef", + "OrganizationName": "SAROJ SEHGAL MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d96e726f-ecf0-484b-bcc8-b6994ed7de9f", - "OrganizationName": "RP Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", - "OrganizationName": "Resiliency MindBody Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", - "OrganizationName": "Resiliency MindBody Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f7d3f2c-6ea8-471a-83f3-abe4f9aadeef", + "OrganizationName": "SAROJ SEHGAL MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -9253,62 +9073,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2f7d3f2c-6ea8-471a-83f3-abe4f9aadeef", - "OrganizationName": "SAROJ SEHGAL MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/da7039de-aed8-4e51-b724-82f35e8467e5", + "OrganizationName": "Richard Ingram MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2f7d3f2c-6ea8-471a-83f3-abe4f9aadeef", - "OrganizationName": "SAROJ SEHGAL MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/da7039de-aed8-4e51-b724-82f35e8467e5", + "OrganizationName": "Richard Ingram MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f2d9a7eb-135a-4a64-863d-6cbe329d3c8c", - "OrganizationName": "Terrero Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d96e726f-ecf0-484b-bcc8-b6994ed7de9f", + "OrganizationName": "RP Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f2d9a7eb-135a-4a64-863d-6cbe329d3c8c", - "OrganizationName": "Terrero Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d96e726f-ecf0-484b-bcc8-b6994ed7de9f", + "OrganizationName": "RP Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e338ccbb-0bb0-4e75-ad43-1803befd5002", - "OrganizationName": "Vibrant Health Family Clinic APRN PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/08494156-cbaf-4933-8cf7-1b1d5ecce69d", + "OrganizationName": "South Atlanta Neurology and Diagnostic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e338ccbb-0bb0-4e75-ad43-1803befd5002", - "OrganizationName": "Vibrant Health Family Clinic APRN PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/08494156-cbaf-4933-8cf7-1b1d5ecce69d", + "OrganizationName": "South Atlanta Neurology and Diagnostic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30f21cf3-5cda-42c9-9f59-8dde0731c089", - "OrganizationName": "Ultimate Medical Care PC DBA Premiere Family Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", + "OrganizationName": "Resiliency MindBody Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30f21cf3-5cda-42c9-9f59-8dde0731c089", - "OrganizationName": "Ultimate Medical Care PC DBA Premiere Family Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", + "OrganizationName": "Resiliency MindBody Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/08494156-cbaf-4933-8cf7-1b1d5ecce69d", - "OrganizationName": "South Atlanta Neurology and Diagnostic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0330798c-2249-40bc-b59d-f8a2b950df32", + "OrganizationName": "Compassionate Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/08494156-cbaf-4933-8cf7-1b1d5ecce69d", - "OrganizationName": "South Atlanta Neurology and Diagnostic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0330798c-2249-40bc-b59d-f8a2b950df32", + "OrganizationName": "Compassionate Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -9325,50 +9145,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", - "OrganizationName": "United Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f2d9a7eb-135a-4a64-863d-6cbe329d3c8c", + "OrganizationName": "Terrero Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", - "OrganizationName": "United Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f2d9a7eb-135a-4a64-863d-6cbe329d3c8c", + "OrganizationName": "Terrero Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0330798c-2249-40bc-b59d-f8a2b950df32", - "OrganizationName": "Compassionate Care Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30f21cf3-5cda-42c9-9f59-8dde0731c089", + "OrganizationName": "Ultimate Medical Care PC DBA Premiere Family Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0330798c-2249-40bc-b59d-f8a2b950df32", - "OrganizationName": "Compassionate Care Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30f21cf3-5cda-42c9-9f59-8dde0731c089", + "OrganizationName": "Ultimate Medical Care PC DBA Premiere Family Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b6c9bc54-8cc3-43a6-add7-2b2992f4a8a0", - "OrganizationName": "Yahweh Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/12f54de6-88c8-4eeb-acd6-457469aed9f0", + "OrganizationName": "BlueSky Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b6c9bc54-8cc3-43a6-add7-2b2992f4a8a0", - "OrganizationName": "Yahweh Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/12f54de6-88c8-4eeb-acd6-457469aed9f0", + "OrganizationName": "BlueSky Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/12f54de6-88c8-4eeb-acd6-457469aed9f0", - "OrganizationName": "BlueSky Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e338ccbb-0bb0-4e75-ad43-1803befd5002", + "OrganizationName": "Vibrant Health Family Clinic APRN PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/12f54de6-88c8-4eeb-acd6-457469aed9f0", - "OrganizationName": "BlueSky Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e338ccbb-0bb0-4e75-ad43-1803befd5002", + "OrganizationName": "Vibrant Health Family Clinic APRN PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -9397,26 +9217,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f45f377e-1904-4962-b4b6-8275a86aafe2", - "OrganizationName": "Urgent Care Surgery Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f45f377e-1904-4962-b4b6-8275a86aafe2", - "OrganizationName": "Urgent Care Surgery Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", - "OrganizationName": "Palm Coast Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b6c9bc54-8cc3-43a6-add7-2b2992f4a8a0", + "OrganizationName": "Yahweh Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", - "OrganizationName": "Palm Coast Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b6c9bc54-8cc3-43a6-add7-2b2992f4a8a0", + "OrganizationName": "Yahweh Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f45f377e-1904-4962-b4b6-8275a86aafe2", + "OrganizationName": "Urgent Care Surgery Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f45f377e-1904-4962-b4b6-8275a86aafe2", + "OrganizationName": "Urgent Care Surgery Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -9432,6 +9264,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", + "OrganizationName": "Palm Coast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", + "OrganizationName": "Palm Coast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c60fa67d-2b2c-41e1-ad2a-c8b5f2d6006f", "OrganizationName": "Natalie Beyeler and Associates, Internal Medicine", @@ -9457,50 +9301,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eaab3080-e3fa-4ce3-96e1-6e7f40901bcc", - "OrganizationName": "Lonny Elson Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/035b4e94-1324-4c45-975e-9028dc3bd250", + "OrganizationName": "Aviation Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eaab3080-e3fa-4ce3-96e1-6e7f40901bcc", - "OrganizationName": "Lonny Elson Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/035b4e94-1324-4c45-975e-9028dc3bd250", + "OrganizationName": "Aviation Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", - "OrganizationName": "bradley tourtlotte Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/56cfac4b-68ff-4706-a3f3-6e1f562f6f7d", + "OrganizationName": "Best NP Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", - "OrganizationName": "bradley tourtlotte Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/56cfac4b-68ff-4706-a3f3-6e1f562f6f7d", + "OrganizationName": "Best NP Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/56cfac4b-68ff-4706-a3f3-6e1f562f6f7d", - "OrganizationName": "Best NP Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eaab3080-e3fa-4ce3-96e1-6e7f40901bcc", + "OrganizationName": "Lonny Elson Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/56cfac4b-68ff-4706-a3f3-6e1f562f6f7d", - "OrganizationName": "Best NP Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eaab3080-e3fa-4ce3-96e1-6e7f40901bcc", + "OrganizationName": "Lonny Elson Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/035b4e94-1324-4c45-975e-9028dc3bd250", - "OrganizationName": "Aviation Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", + "OrganizationName": "bradley tourtlotte Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/035b4e94-1324-4c45-975e-9028dc3bd250", - "OrganizationName": "Aviation Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", + "OrganizationName": "bradley tourtlotte Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -9540,6 +9384,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", + "OrganizationName": "Joel F. Berman, DPM, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", + "OrganizationName": "Joel F. Berman, DPM, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", "OrganizationName": "True Gynecology PLLC", @@ -9565,14 +9421,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", - "OrganizationName": "Joel F. Berman, DPM, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8c18825a-46dc-4e22-bb72-95494324dd70", + "OrganizationName": "Jeffery M. Hubbard, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", - "OrganizationName": "Joel F. Berman, DPM, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8c18825a-46dc-4e22-bb72-95494324dd70", + "OrganizationName": "Jeffery M. Hubbard, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -9589,14 +9445,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", - "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", + "OrganizationName": "Amos Dare MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", - "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", + "OrganizationName": "Amos Dare MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -9613,26 +9469,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", - "OrganizationName": "Amos Dare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", - "OrganizationName": "Amos Dare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8c18825a-46dc-4e22-bb72-95494324dd70", - "OrganizationName": "Jeffery M. Hubbard, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", + "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8c18825a-46dc-4e22-bb72-95494324dd70", - "OrganizationName": "Jeffery M. Hubbard, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", + "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -9661,38 +9505,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e5daa5b5-f7fc-4022-ad69-e0e3275186b3", - "OrganizationName": "Valley View Health Services Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", + "OrganizationName": "Riverbank Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e5daa5b5-f7fc-4022-ad69-e0e3275186b3", - "OrganizationName": "Valley View Health Services Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", + "OrganizationName": "Riverbank Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa4bc841-f9da-470e-9919-ba7af5129bc8", - "OrganizationName": "Gastroenterologists Ltd", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e5daa5b5-f7fc-4022-ad69-e0e3275186b3", + "OrganizationName": "Valley View Health Services Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa4bc841-f9da-470e-9919-ba7af5129bc8", - "OrganizationName": "Gastroenterologists Ltd", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e5daa5b5-f7fc-4022-ad69-e0e3275186b3", + "OrganizationName": "Valley View Health Services Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", - "OrganizationName": "Riverbank Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa4bc841-f9da-470e-9919-ba7af5129bc8", + "OrganizationName": "Gastroenterologists Ltd", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", - "OrganizationName": "Riverbank Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa4bc841-f9da-470e-9919-ba7af5129bc8", + "OrganizationName": "Gastroenterologists Ltd", "NPIID": "", "OrganizationZipCode": "" }, @@ -9709,14 +9553,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", - "OrganizationName": "Well By Messer", + "URL": "https://api.patientfusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", + "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", - "OrganizationName": "Well By Messer", + "URL": "https://api.practicefusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", + "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", "NPIID": "", "OrganizationZipCode": "" }, @@ -9733,26 +9577,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", - "OrganizationName": "Anti-Aging Center of Excellence", + "URL": "https://api.patientfusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", + "OrganizationName": "Well By Messer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", - "OrganizationName": "Anti-Aging Center of Excellence", + "URL": "https://api.practicefusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", + "OrganizationName": "Well By Messer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", - "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", + "URL": "https://api.patientfusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", + "OrganizationName": "Anti-Aging Center of Excellence", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", - "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", + "URL": "https://api.practicefusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", + "OrganizationName": "Anti-Aging Center of Excellence", "NPIID": "", "OrganizationZipCode": "" }, @@ -9793,26 +9637,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb3fc04-39d8-4288-85e8-0737d9feba66", - "OrganizationName": "Howard M Mintz MD, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6890313f-09d3-477e-86cf-20c730d08d80", + "OrganizationName": "FL Neuro Pain and Spine Center, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffb3fc04-39d8-4288-85e8-0737d9feba66", - "OrganizationName": "Howard M Mintz MD, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6890313f-09d3-477e-86cf-20c730d08d80", + "OrganizationName": "FL Neuro Pain and Spine Center, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6890313f-09d3-477e-86cf-20c730d08d80", - "OrganizationName": "FL Neuro Pain and Spine Center, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", + "OrganizationName": "Restorative Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6890313f-09d3-477e-86cf-20c730d08d80", - "OrganizationName": "FL Neuro Pain and Spine Center, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", + "OrganizationName": "Restorative Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", + "OrganizationName": "Gary Holland MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", + "OrganizationName": "Gary Holland MD PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -9852,18 +9708,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", - "OrganizationName": "Restorative Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", - "OrganizationName": "Restorative Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", "OrganizationName": "Nephro Health Clinic", @@ -9876,18 +9720,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", - "OrganizationName": "Gary Holland MD PC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", - "OrganizationName": "Gary Holland MD PC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", "OrganizationName": "Oza Family Care and Wellness Center", @@ -9913,14 +9745,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", - "OrganizationName": "Grace P Tamesis MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d94cd51b-de1e-428e-b236-7b8332288ba1", + "OrganizationName": "Black Oxyx", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", - "OrganizationName": "Grace P Tamesis MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d94cd51b-de1e-428e-b236-7b8332288ba1", + "OrganizationName": "Black Oxyx", "NPIID": "", "OrganizationZipCode": "" }, @@ -9937,26 +9769,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce8588a3-2a97-4fc7-a148-afa9b21079f3", - "OrganizationName": "Teekam Lohano, MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", + "OrganizationName": "Grace P Tamesis MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce8588a3-2a97-4fc7-a148-afa9b21079f3", - "OrganizationName": "Teekam Lohano, MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", + "OrganizationName": "Grace P Tamesis MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d94cd51b-de1e-428e-b236-7b8332288ba1", - "OrganizationName": "Black Oxyx", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce8588a3-2a97-4fc7-a148-afa9b21079f3", + "OrganizationName": "Teekam Lohano, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d94cd51b-de1e-428e-b236-7b8332288ba1", - "OrganizationName": "Black Oxyx", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce8588a3-2a97-4fc7-a148-afa9b21079f3", + "OrganizationName": "Teekam Lohano, MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -10008,18 +9840,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", - "OrganizationName": "San Gabriel Valley Health Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", - "OrganizationName": "San Gabriel Valley Health Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", @@ -10032,18 +9852,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4da59f67-2dcf-4ed0-b5e4-5d6f81be8bfc", - "OrganizationName": "PR MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4da59f67-2dcf-4ed0-b5e4-5d6f81be8bfc", - "OrganizationName": "PR MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", "OrganizationName": "Westlake Physical Medicine and Rehabilitation", @@ -10057,14 +9865,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", - "OrganizationName": "Victermahealth.CORP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", + "OrganizationName": "San Gabriel Valley Health Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", - "OrganizationName": "Victermahealth.CORP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", + "OrganizationName": "San Gabriel Valley Health Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -10080,6 +9888,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4da59f67-2dcf-4ed0-b5e4-5d6f81be8bfc", + "OrganizationName": "PR MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4da59f67-2dcf-4ed0-b5e4-5d6f81be8bfc", + "OrganizationName": "PR MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7dc0ea85-d725-4278-a3ef-4740f069a85d", "OrganizationName": "Jean P. Carrasquillo, MD, FACS, Astrid R. Soares Medina MD, FEBPS", @@ -10092,6 +9912,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", + "OrganizationName": "Mingo County Family Wellness Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", + "OrganizationName": "Mingo County Family Wellness Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", "OrganizationName": "Reflections Counseling Center", @@ -10105,26 +9937,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", - "OrganizationName": "303 I.V. \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", + "OrganizationName": "Victermahealth.CORP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", - "OrganizationName": "303 I.V. \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", + "OrganizationName": "Victermahealth.CORP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", - "OrganizationName": "Mingo County Family Wellness Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", + "OrganizationName": "303 I.V. \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", - "OrganizationName": "Mingo County Family Wellness Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", + "OrganizationName": "303 I.V. \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -10152,6 +9984,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", + "OrganizationName": "Vortex Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", + "OrganizationName": "Vortex Mental Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f9347948-8109-4952-a33b-5a42bc7bf45c", "OrganizationName": "Refine By Dr. Nazia", @@ -10201,38 +10045,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", - "OrganizationName": "Vortex Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57d1322f-7974-4453-8bb5-1ee15e4a7c48", + "OrganizationName": "Ahwatukee Family Medical Center Dr James Nichols MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", - "OrganizationName": "Vortex Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57d1322f-7974-4453-8bb5-1ee15e4a7c48", + "OrganizationName": "Ahwatukee Family Medical Center Dr James Nichols MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4518e4f6-f23c-42d5-8910-a8ff406b7e53", - "OrganizationName": "Nishith Gami Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/060ff2e3-979e-4b70-a386-63b01fa4fa92", + "OrganizationName": "Imperial Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4518e4f6-f23c-42d5-8910-a8ff406b7e53", - "OrganizationName": "Nishith Gami Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/060ff2e3-979e-4b70-a386-63b01fa4fa92", + "OrganizationName": "Imperial Health Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/57d1322f-7974-4453-8bb5-1ee15e4a7c48", - "OrganizationName": "Ahwatukee Family Medical Center Dr James Nichols MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7da5587c-f4f2-48c3-851e-196396994c00", + "OrganizationName": "Alivio Pain and Orthopedics Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/57d1322f-7974-4453-8bb5-1ee15e4a7c48", - "OrganizationName": "Ahwatukee Family Medical Center Dr James Nichols MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7da5587c-f4f2-48c3-851e-196396994c00", + "OrganizationName": "Alivio Pain and Orthopedics Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -10248,6 +10092,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c87c6093-e655-4848-a147-fe6f67a4baf3", + "OrganizationName": "Mensana Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c87c6093-e655-4848-a147-fe6f67a4baf3", + "OrganizationName": "Mensana Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4518e4f6-f23c-42d5-8910-a8ff406b7e53", + "OrganizationName": "Nishith Gami Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4518e4f6-f23c-42d5-8910-a8ff406b7e53", + "OrganizationName": "Nishith Gami Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", @@ -10285,26 +10153,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/060ff2e3-979e-4b70-a386-63b01fa4fa92", - "OrganizationName": "Imperial Health Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/060ff2e3-979e-4b70-a386-63b01fa4fa92", - "OrganizationName": "Imperial Health Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7da5587c-f4f2-48c3-851e-196396994c00", - "OrganizationName": "Alivio Pain and Orthopedics Center, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af0d0309-b2de-44ba-a79d-dccfcb66e582", + "OrganizationName": "Greenwood Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7da5587c-f4f2-48c3-851e-196396994c00", - "OrganizationName": "Alivio Pain and Orthopedics Center, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af0d0309-b2de-44ba-a79d-dccfcb66e582", + "OrganizationName": "Greenwood Medical Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -10321,14 +10177,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c87c6093-e655-4848-a147-fe6f67a4baf3", - "OrganizationName": "Mensana Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/512f8fab-c225-4732-87af-d0bc40cb5b53", + "OrganizationName": "Bella Vita Integrated Healing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c87c6093-e655-4848-a147-fe6f67a4baf3", - "OrganizationName": "Mensana Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/512f8fab-c225-4732-87af-d0bc40cb5b53", + "OrganizationName": "Bella Vita Integrated Healing", "NPIID": "", "OrganizationZipCode": "" }, @@ -10344,30 +10200,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af0d0309-b2de-44ba-a79d-dccfcb66e582", - "OrganizationName": "Greenwood Medical Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af0d0309-b2de-44ba-a79d-dccfcb66e582", - "OrganizationName": "Greenwood Medical Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/512f8fab-c225-4732-87af-d0bc40cb5b53", - "OrganizationName": "Bella Vita Integrated Healing", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/512f8fab-c225-4732-87af-d0bc40cb5b53", - "OrganizationName": "Bella Vita Integrated Healing", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", "OrganizationName": "Anderson Medical Services", @@ -10404,18 +10236,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", - "OrganizationName": "Dr Cody Geddes", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", - "OrganizationName": "Dr Cody Geddes", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5c5b8483-b7d2-43ac-a46c-5b0a7b767ae6", "OrganizationName": "Belly", @@ -10441,14 +10261,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2f522a1-4ed3-46b9-b049-79c0dd2ee276", + "OrganizationName": "Nan Jiang Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2f522a1-4ed3-46b9-b049-79c0dd2ee276", + "OrganizationName": "Nan Jiang Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -10477,14 +10297,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2f522a1-4ed3-46b9-b049-79c0dd2ee276", - "OrganizationName": "Nan Jiang Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", + "OrganizationName": "Dr Cody Geddes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2f522a1-4ed3-46b9-b049-79c0dd2ee276", - "OrganizationName": "Nan Jiang Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", + "OrganizationName": "Dr Cody Geddes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", + "OrganizationName": "NSIPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", + "OrganizationName": "NSIPA", "NPIID": "", "OrganizationZipCode": "" }, @@ -10524,18 +10356,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8ab3331-da9f-477c-8718-2c7117751d7e", - "OrganizationName": "Durant CPD Integrated Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f8ab3331-da9f-477c-8718-2c7117751d7e", - "OrganizationName": "Durant CPD Integrated Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2a5ef7db-dc84-4abf-ae5e-5d6d54f4fea2", "OrganizationName": "Moderne Body", @@ -10549,38 +10369,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee5ec7e9-fab3-4f59-ab7f-88586a02efbf", - "OrganizationName": "Raysa Raysa Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", + "OrganizationName": "Manhattan Pain Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee5ec7e9-fab3-4f59-ab7f-88586a02efbf", - "OrganizationName": "Raysa Raysa Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", + "OrganizationName": "Manhattan Pain Medicine, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", - "OrganizationName": "Manhattan Pain Medicine, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f8ab3331-da9f-477c-8718-2c7117751d7e", + "OrganizationName": "Durant CPD Integrated Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", - "OrganizationName": "Manhattan Pain Medicine, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f8ab3331-da9f-477c-8718-2c7117751d7e", + "OrganizationName": "Durant CPD Integrated Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2f3b1ed6-4aea-4805-a479-701057d27110", - "OrganizationName": "Thrive Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee5ec7e9-fab3-4f59-ab7f-88586a02efbf", + "OrganizationName": "Raysa Raysa Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2f3b1ed6-4aea-4805-a479-701057d27110", - "OrganizationName": "Thrive Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee5ec7e9-fab3-4f59-ab7f-88586a02efbf", + "OrganizationName": "Raysa Raysa Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -10620,6 +10440,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f3b1ed6-4aea-4805-a479-701057d27110", + "OrganizationName": "Thrive Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f3b1ed6-4aea-4805-a479-701057d27110", + "OrganizationName": "Thrive Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5147b470-0d04-4529-be5a-95f90c89fb0b", "OrganizationName": "Sunset Neurological Group", @@ -10669,14 +10501,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bc9a3bea-8f57-4773-bff4-46c05e07706f", - "OrganizationName": "Terio Psychotherapy Services LCSW PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/13999e2a-35cc-408f-8116-2d8182a61f7c", + "OrganizationName": "Eugene D Day MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bc9a3bea-8f57-4773-bff4-46c05e07706f", - "OrganizationName": "Terio Psychotherapy Services LCSW PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/13999e2a-35cc-408f-8116-2d8182a61f7c", + "OrganizationName": "Eugene D Day MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", + "OrganizationName": "1st Responder HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", + "OrganizationName": "1st Responder HealthCare", "NPIID": "", "OrganizationZipCode": "" }, @@ -10705,38 +10549,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/13999e2a-35cc-408f-8116-2d8182a61f7c", - "OrganizationName": "Eugene D Day MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc9a3bea-8f57-4773-bff4-46c05e07706f", + "OrganizationName": "Terio Psychotherapy Services LCSW PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/13999e2a-35cc-408f-8116-2d8182a61f7c", - "OrganizationName": "Eugene D Day MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc9a3bea-8f57-4773-bff4-46c05e07706f", + "OrganizationName": "Terio Psychotherapy Services LCSW PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", - "OrganizationName": "1st Responder HealthCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1c0dfc79-b9b2-44ff-b21c-05bf606e00e1", + "OrganizationName": "MemoryCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", - "OrganizationName": "1st Responder HealthCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1c0dfc79-b9b2-44ff-b21c-05bf606e00e1", + "OrganizationName": "MemoryCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1c0dfc79-b9b2-44ff-b21c-05bf606e00e1", - "OrganizationName": "MemoryCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/77d5ea63-537b-473c-a1b8-52e9e1160756", + "OrganizationName": "Doctors Associates of West Hills", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1c0dfc79-b9b2-44ff-b21c-05bf606e00e1", - "OrganizationName": "MemoryCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/77d5ea63-537b-473c-a1b8-52e9e1160756", + "OrganizationName": "Doctors Associates of West Hills", "NPIID": "", "OrganizationZipCode": "" }, @@ -10764,18 +10608,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/77d5ea63-537b-473c-a1b8-52e9e1160756", - "OrganizationName": "Doctors Associates of West Hills", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/77d5ea63-537b-473c-a1b8-52e9e1160756", - "OrganizationName": "Doctors Associates of West Hills", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", "OrganizationName": "Vive Vida Medical", @@ -10789,14 +10621,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", - "OrganizationName": "Women's Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/df87cd92-a9ad-4ca2-a1c7-c2cce18c285e", + "OrganizationName": "Elisabeth Horowitz, M.D., F.A.C.E.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", - "OrganizationName": "Women's Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/df87cd92-a9ad-4ca2-a1c7-c2cce18c285e", + "OrganizationName": "Elisabeth Horowitz, M.D., F.A.C.E.", "NPIID": "", "OrganizationZipCode": "" }, @@ -10813,14 +10645,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01412a71-cffa-4f69-945e-6a69a001aaf8", - "OrganizationName": "Karen Neurology PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", + "OrganizationName": "Women's Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01412a71-cffa-4f69-945e-6a69a001aaf8", - "OrganizationName": "Karen Neurology PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", + "OrganizationName": "Women's Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -10837,14 +10669,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/df87cd92-a9ad-4ca2-a1c7-c2cce18c285e", - "OrganizationName": "Elisabeth Horowitz, M.D., F.A.C.E.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01412a71-cffa-4f69-945e-6a69a001aaf8", + "OrganizationName": "Karen Neurology PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/df87cd92-a9ad-4ca2-a1c7-c2cce18c285e", - "OrganizationName": "Elisabeth Horowitz, M.D., F.A.C.E.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01412a71-cffa-4f69-945e-6a69a001aaf8", + "OrganizationName": "Karen Neurology PLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -10884,18 +10716,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", - "OrganizationName": "AHMAD SHANABLEH, MD.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", - "OrganizationName": "AHMAD SHANABLEH, MD.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", "OrganizationName": "Uzma Zafar MD Practice", @@ -10909,14 +10729,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", - "OrganizationName": "Florence Oladokun PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", + "OrganizationName": "AHMAD SHANABLEH, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", - "OrganizationName": "Florence Oladokun PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", + "OrganizationName": "AHMAD SHANABLEH, MD.", "NPIID": "", "OrganizationZipCode": "" }, @@ -10944,6 +10764,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", + "OrganizationName": "Florence Oladokun PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", + "OrganizationName": "Florence Oladokun PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", "OrganizationName": "Altar Health", @@ -10992,18 +10824,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", - "OrganizationName": "Optimal Health and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", - "OrganizationName": "Optimal Health and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d9053015-1eed-4823-8db7-38997be8f9ff", "OrganizationName": "Southern Nevada Internists", @@ -11017,26 +10837,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", - "OrganizationName": "Advanced Psychiatric Services, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", - "OrganizationName": "Advanced Psychiatric Services, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", - "OrganizationName": "406 Psychiatric Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", - "OrganizationName": "406 Psychiatric Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -11053,14 +10873,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", - "OrganizationName": "360HRT", + "URL": "https://api.patientfusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", + "OrganizationName": "Advanced Psychiatric Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", - "OrganizationName": "360HRT", + "URL": "https://api.practicefusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", + "OrganizationName": "Advanced Psychiatric Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -11077,14 +10909,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", - "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", + "OrganizationName": "360HRT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", - "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", + "OrganizationName": "360HRT", "NPIID": "", "OrganizationZipCode": "" }, @@ -11149,26 +10981,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2738be52-7b56-458c-a2fa-243cae96b157", - "OrganizationName": "Dr. Dee Neurology Consulting LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9efd82e9-7be3-452e-acbe-f8e7c97f2965", + "OrganizationName": "Community Physicians", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2738be52-7b56-458c-a2fa-243cae96b157", - "OrganizationName": "Dr. Dee Neurology Consulting LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9efd82e9-7be3-452e-acbe-f8e7c97f2965", + "OrganizationName": "Community Physicians", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9efd82e9-7be3-452e-acbe-f8e7c97f2965", - "OrganizationName": "Community Physicians", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2738be52-7b56-458c-a2fa-243cae96b157", + "OrganizationName": "Dr. Dee Neurology Consulting LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9efd82e9-7be3-452e-acbe-f8e7c97f2965", - "OrganizationName": "Community Physicians", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2738be52-7b56-458c-a2fa-243cae96b157", + "OrganizationName": "Dr. Dee Neurology Consulting LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11185,98 +11017,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", - "OrganizationName": "Intuitive Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1b24ab-641c-4828-a2a3-fc28dc179172", + "OrganizationName": "Derick Chae, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", - "OrganizationName": "Intuitive Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1b24ab-641c-4828-a2a3-fc28dc179172", + "OrganizationName": "Derick Chae, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a89aa2b7-c925-43f8-bc70-adee39681233", - "OrganizationName": "Elizabeth j Covington MD Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", + "OrganizationName": "Wound X Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a89aa2b7-c925-43f8-bc70-adee39681233", - "OrganizationName": "Elizabeth j Covington MD Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", + "OrganizationName": "Wound X Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", - "OrganizationName": "Adult and Pediatric Neurology, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", + "OrganizationName": "Intuitive Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", - "OrganizationName": "Adult and Pediatric Neurology, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", + "OrganizationName": "Intuitive Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1b24ab-641c-4828-a2a3-fc28dc179172", - "OrganizationName": "Derick Chae, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1b24ab-641c-4828-a2a3-fc28dc179172", - "OrganizationName": "Derick Chae, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", - "OrganizationName": "Lank Nursing Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a89aa2b7-c925-43f8-bc70-adee39681233", + "OrganizationName": "Elizabeth j Covington MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", - "OrganizationName": "Lank Nursing Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a89aa2b7-c925-43f8-bc70-adee39681233", + "OrganizationName": "Elizabeth j Covington MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a69c971f-882a-4481-b186-14573c06c803", - "OrganizationName": "Naperville Family Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", + "OrganizationName": "Lank Nursing Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a69c971f-882a-4481-b186-14573c06c803", - "OrganizationName": "Naperville Family Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", + "OrganizationName": "Lank Nursing Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", - "OrganizationName": "MC MEDICALCLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a69c971f-882a-4481-b186-14573c06c803", + "OrganizationName": "Naperville Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", - "OrganizationName": "MC MEDICALCLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a69c971f-882a-4481-b186-14573c06c803", + "OrganizationName": "Naperville Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", - "OrganizationName": "Wound X Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/14a1c5d0-b3f0-4010-a42b-7e980d3cbc70", + "OrganizationName": "Legacy Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", - "OrganizationName": "Wound X Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/14a1c5d0-b3f0-4010-a42b-7e980d3cbc70", + "OrganizationName": "Legacy Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -11293,38 +11125,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/14a1c5d0-b3f0-4010-a42b-7e980d3cbc70", - "OrganizationName": "Legacy Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", + "OrganizationName": "Adult and Pediatric Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/14a1c5d0-b3f0-4010-a42b-7e980d3cbc70", - "OrganizationName": "Legacy Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", + "OrganizationName": "Adult and Pediatric Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c05cce90-3a70-430e-a3db-01a1f09e8232", - "OrganizationName": "McMonigle Neurology Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3788306-d04d-44e5-a699-586dac173520", + "OrganizationName": "Inspyre Physical Medicine \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c05cce90-3a70-430e-a3db-01a1f09e8232", - "OrganizationName": "McMonigle Neurology Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3788306-d04d-44e5-a699-586dac173520", + "OrganizationName": "Inspyre Physical Medicine \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a3788306-d04d-44e5-a699-586dac173520", - "OrganizationName": "Inspyre Physical Medicine \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c05cce90-3a70-430e-a3db-01a1f09e8232", + "OrganizationName": "McMonigle Neurology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a3788306-d04d-44e5-a699-586dac173520", - "OrganizationName": "Inspyre Physical Medicine \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c05cce90-3a70-430e-a3db-01a1f09e8232", + "OrganizationName": "McMonigle Neurology Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -11365,26 +11197,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/249e567f-d02e-4bbb-bea7-fe8f57c7069f", - "OrganizationName": "Terence TZ Tan,M.D.INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2c9bdf7-5891-4444-9415-955accf1f4e5", + "OrganizationName": "Aspire Medical Group, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/249e567f-d02e-4bbb-bea7-fe8f57c7069f", - "OrganizationName": "Terence TZ Tan,M.D.INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2c9bdf7-5891-4444-9415-955accf1f4e5", + "OrganizationName": "Aspire Medical Group, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2c9bdf7-5891-4444-9415-955accf1f4e5", - "OrganizationName": "Aspire Medical Group, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/249e567f-d02e-4bbb-bea7-fe8f57c7069f", + "OrganizationName": "Terence TZ Tan,M.D.INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2c9bdf7-5891-4444-9415-955accf1f4e5", - "OrganizationName": "Aspire Medical Group, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/249e567f-d02e-4bbb-bea7-fe8f57c7069f", + "OrganizationName": "Terence TZ Tan,M.D.INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -11413,14 +11245,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", - "OrganizationName": "Sunset Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcb788dc-7533-45cb-bad4-fb6a1588032e", + "OrganizationName": "ROMEO E. ROJAS, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", - "OrganizationName": "Sunset Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcb788dc-7533-45cb-bad4-fb6a1588032e", + "OrganizationName": "ROMEO E. ROJAS, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, @@ -11437,14 +11269,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcb788dc-7533-45cb-bad4-fb6a1588032e", - "OrganizationName": "ROMEO E. ROJAS, M.D., P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcb788dc-7533-45cb-bad4-fb6a1588032e", - "OrganizationName": "ROMEO E. ROJAS, M.D., P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -11472,6 +11304,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", + "OrganizationName": "Point of the Spear Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", + "OrganizationName": "Point of the Spear Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b44ad159-14f6-4c95-b3ee-811fc80c7020", "OrganizationName": "Vitality Therapeutics and Infusions", @@ -11485,38 +11329,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", - "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f3e35a24-c719-4d28-b434-1cc1bd5d9450", + "OrganizationName": "Kutendo Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", - "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f3e35a24-c719-4d28-b434-1cc1bd5d9450", + "OrganizationName": "Kutendo Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", + "OrganizationName": "Pulmonary Medical Asso. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", + "OrganizationName": "Pulmonary Medical Asso. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f3e35a24-c719-4d28-b434-1cc1bd5d9450", - "OrganizationName": "Kutendo Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", + "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f3e35a24-c719-4d28-b434-1cc1bd5d9450", - "OrganizationName": "Kutendo Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", + "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11533,14 +11377,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", - "OrganizationName": "Pulmonary Medical Asso. Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4f14493-4cb2-445f-9b96-123ad724ec66", + "OrganizationName": "Gibson Psych Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", - "OrganizationName": "Pulmonary Medical Asso. Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4f14493-4cb2-445f-9b96-123ad724ec66", + "OrganizationName": "Gibson Psych Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -11556,18 +11400,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4f14493-4cb2-445f-9b96-123ad724ec66", - "OrganizationName": "Gibson Psych Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4f14493-4cb2-445f-9b96-123ad724ec66", - "OrganizationName": "Gibson Psych Services", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", "OrganizationName": "Hawkins Psychiatry, P.C.", @@ -11592,6 +11424,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", + "OrganizationName": "Devaraj Behavioral Helathcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", + "OrganizationName": "Devaraj Behavioral Helathcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/69f012d6-b5a8-4202-9812-55148baf4697", "OrganizationName": "PERFECTO MEDICAL CLINIC", @@ -11640,18 +11484,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", - "OrganizationName": "Devaraj Behavioral Helathcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", - "OrganizationName": "Devaraj Behavioral Helathcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4b7ed36e-bd7f-4f35-a00e-399df10193bb", "OrganizationName": "AgeWell", @@ -11700,18 +11532,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5fa572f5-9983-4cd6-b222-92bd6b111b5b", - "OrganizationName": "Internal Medicine Hudson", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5fa572f5-9983-4cd6-b222-92bd6b111b5b", - "OrganizationName": "Internal Medicine Hudson", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", "OrganizationName": "Advanced Wellness Consultants LLC", @@ -11724,30 +11544,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2695bded-1b42-4546-83da-8654ca542725", - "OrganizationName": "Optimal Sleep and Weight Loss Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2695bded-1b42-4546-83da-8654ca542725", - "OrganizationName": "Optimal Sleep and Weight Loss Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4cc5f485-9a41-45a3-b327-87d45cff7e27", - "OrganizationName": "JOURNEY TO WELLNESS Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4cc5f485-9a41-45a3-b327-87d45cff7e27", - "OrganizationName": "JOURNEY TO WELLNESS Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b78a87d0-e34c-41a1-a7c4-9404973e5f0b", "OrganizationName": "Lake Linganore Psychiatry", @@ -11773,14 +11569,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2bc5e968-4fb2-479e-a28c-5389c0248082", - "OrganizationName": "Quinn Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5fa572f5-9983-4cd6-b222-92bd6b111b5b", + "OrganizationName": "Internal Medicine Hudson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2bc5e968-4fb2-479e-a28c-5389c0248082", - "OrganizationName": "Quinn Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5fa572f5-9983-4cd6-b222-92bd6b111b5b", + "OrganizationName": "Internal Medicine Hudson", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2695bded-1b42-4546-83da-8654ca542725", + "OrganizationName": "Optimal Sleep and Weight Loss Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2695bded-1b42-4546-83da-8654ca542725", + "OrganizationName": "Optimal Sleep and Weight Loss Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4cc5f485-9a41-45a3-b327-87d45cff7e27", + "OrganizationName": "JOURNEY TO WELLNESS Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4cc5f485-9a41-45a3-b327-87d45cff7e27", + "OrganizationName": "JOURNEY TO WELLNESS Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -11797,62 +11617,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", - "OrganizationName": "Geriatric \u0026 Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2bc5e968-4fb2-479e-a28c-5389c0248082", + "OrganizationName": "Quinn Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", - "OrganizationName": "Geriatric \u0026 Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2bc5e968-4fb2-479e-a28c-5389c0248082", + "OrganizationName": "Quinn Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/353f53a5-5187-414c-87b0-6e4b2fac5dcf", - "OrganizationName": "Resonance Psychiatry", + "OrganizationName": "Resonance Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/353f53a5-5187-414c-87b0-6e4b2fac5dcf", - "OrganizationName": "Resonance Psychiatry", + "OrganizationName": "Resonance Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", - "OrganizationName": "Mobile Medical Mission PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7995ac3c-9292-451e-92d0-ed43b4746919", + "OrganizationName": "Finishline IV", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", - "OrganizationName": "Mobile Medical Mission PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7995ac3c-9292-451e-92d0-ed43b4746919", + "OrganizationName": "Finishline IV", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", - "OrganizationName": "OB GYN Womens Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", + "OrganizationName": "Geriatric \u0026 Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", - "OrganizationName": "OB GYN Womens Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", + "OrganizationName": "Geriatric \u0026 Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7995ac3c-9292-451e-92d0-ed43b4746919", - "OrganizationName": "Finishline IV", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", + "OrganizationName": "Ruth Lopez Valentin Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7995ac3c-9292-451e-92d0-ed43b4746919", - "OrganizationName": "Finishline IV", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", + "OrganizationName": "Ruth Lopez Valentin Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -11869,50 +11689,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d3419733-f256-43fe-bdf1-11210fadb6e7", - "OrganizationName": "Upstate Psychiatry, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", + "OrganizationName": "Mobile Medical Mission PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d3419733-f256-43fe-bdf1-11210fadb6e7", - "OrganizationName": "Upstate Psychiatry, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", + "OrganizationName": "Mobile Medical Mission PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", - "OrganizationName": "Ruth Lopez Valentin Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", + "OrganizationName": "OB GYN Womens Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", - "OrganizationName": "Ruth Lopez Valentin Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", + "OrganizationName": "OB GYN Womens Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", - "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d3419733-f256-43fe-bdf1-11210fadb6e7", + "OrganizationName": "Upstate Psychiatry, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", - "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d3419733-f256-43fe-bdf1-11210fadb6e7", + "OrganizationName": "Upstate Psychiatry, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", - "OrganizationName": "Primary Medicine LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", + "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", - "OrganizationName": "Primary Medicine LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", + "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11929,14 +11749,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", - "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", + "OrganizationName": "Primary Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", - "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", + "OrganizationName": "Primary Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11953,26 +11773,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", - "OrganizationName": "Amwell Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/576b7192-ebda-4777-9ca0-428ee3f916f8", + "OrganizationName": "Total Balance Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", - "OrganizationName": "Amwell Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/576b7192-ebda-4777-9ca0-428ee3f916f8", + "OrganizationName": "Total Balance Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/576b7192-ebda-4777-9ca0-428ee3f916f8", - "OrganizationName": "Total Balance Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", + "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/576b7192-ebda-4777-9ca0-428ee3f916f8", - "OrganizationName": "Total Balance Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", + "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", + "OrganizationName": "Amwell Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", + "OrganizationName": "Amwell Medical Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -12001,26 +11833,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/735b8908-2d18-405f-97f3-bf1908936dc6", - "OrganizationName": "Carol Whittington-Washington Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ddf26e0f-7b69-4406-90a5-244539db96ad", + "OrganizationName": "Neurology \u0026 Sleep Medicine Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/735b8908-2d18-405f-97f3-bf1908936dc6", - "OrganizationName": "Carol Whittington-Washington Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ddf26e0f-7b69-4406-90a5-244539db96ad", + "OrganizationName": "Neurology \u0026 Sleep Medicine Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/13a57acb-e0bd-4a13-bc6a-04130370d4ba", - "OrganizationName": "Kidney \u0026 Hypertension Associates of Nevada", + "URL": "https://api.patientfusion.com/fhir/r4/v1/735b8908-2d18-405f-97f3-bf1908936dc6", + "OrganizationName": "Carol Whittington-Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/13a57acb-e0bd-4a13-bc6a-04130370d4ba", - "OrganizationName": "Kidney \u0026 Hypertension Associates of Nevada", + "URL": "https://api.practicefusion.com/fhir/r4/v1/735b8908-2d18-405f-97f3-bf1908936dc6", + "OrganizationName": "Carol Whittington-Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -12037,14 +11869,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ddf26e0f-7b69-4406-90a5-244539db96ad", - "OrganizationName": "Neurology \u0026 Sleep Medicine Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/13a57acb-e0bd-4a13-bc6a-04130370d4ba", + "OrganizationName": "Kidney \u0026 Hypertension Associates of Nevada", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ddf26e0f-7b69-4406-90a5-244539db96ad", - "OrganizationName": "Neurology \u0026 Sleep Medicine Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/13a57acb-e0bd-4a13-bc6a-04130370d4ba", + "OrganizationName": "Kidney \u0026 Hypertension Associates of Nevada", "NPIID": "", "OrganizationZipCode": "" }, @@ -12109,26 +11941,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3a297dab-7dd4-4e29-9753-201ea42cc120", - "OrganizationName": "LifeWay Health \u0026 Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3a297dab-7dd4-4e29-9753-201ea42cc120", - "OrganizationName": "LifeWay Health \u0026 Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05a820e0-bfff-4380-b166-d42b34c94ad3", - "OrganizationName": "American Indian Health Service of Chicago", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bdc7f2bc-6539-4c5a-b560-9fb6e865881c", + "OrganizationName": "Healthcare of Greater Washington", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/05a820e0-bfff-4380-b166-d42b34c94ad3", - "OrganizationName": "American Indian Health Service of Chicago", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bdc7f2bc-6539-4c5a-b560-9fb6e865881c", + "OrganizationName": "Healthcare of Greater Washington", "NPIID": "", "OrganizationZipCode": "" }, @@ -12145,14 +11965,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bdc7f2bc-6539-4c5a-b560-9fb6e865881c", - "OrganizationName": "Healthcare of Greater Washington", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3a297dab-7dd4-4e29-9753-201ea42cc120", + "OrganizationName": "LifeWay Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bdc7f2bc-6539-4c5a-b560-9fb6e865881c", - "OrganizationName": "Healthcare of Greater Washington", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3a297dab-7dd4-4e29-9753-201ea42cc120", + "OrganizationName": "LifeWay Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -12169,14 +11989,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b427aa0-4fb7-450f-8ebd-694fa73b6776", - "OrganizationName": "Stacy Welsh Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/05a820e0-bfff-4380-b166-d42b34c94ad3", + "OrganizationName": "American Indian Health Service of Chicago", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b427aa0-4fb7-450f-8ebd-694fa73b6776", - "OrganizationName": "Stacy Welsh Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/05a820e0-bfff-4380-b166-d42b34c94ad3", + "OrganizationName": "American Indian Health Service of Chicago", "NPIID": "", "OrganizationZipCode": "" }, @@ -12193,26 +12013,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", - "OrganizationName": "Deric Ravsten Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", - "OrganizationName": "Deric Ravsten Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", - "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b427aa0-4fb7-450f-8ebd-694fa73b6776", + "OrganizationName": "Stacy Welsh Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", - "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b427aa0-4fb7-450f-8ebd-694fa73b6776", + "OrganizationName": "Stacy Welsh Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -12240,6 +12048,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", + "OrganizationName": "Deric Ravsten Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", + "OrganizationName": "Deric Ravsten Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/de57cbaa-2b85-4751-8f58-b7e9ba90d17f", "OrganizationName": "Safe Haven Medical Services", @@ -12253,14 +12073,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", - "OrganizationName": "All-In-One Clinic PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", + "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", - "OrganizationName": "All-In-One Clinic PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", + "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12277,14 +12097,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", - "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", + "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", - "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", + "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", + "OrganizationName": "All-In-One Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", + "OrganizationName": "All-In-One Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12325,86 +12157,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e34f946-d845-4d5f-bab6-a8e13c1cb19a", - "OrganizationName": "Steven Locke MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", + "OrganizationName": "Blue Rock Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e34f946-d845-4d5f-bab6-a8e13c1cb19a", - "OrganizationName": "Steven Locke MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", + "OrganizationName": "Blue Rock Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", - "OrganizationName": "Blue Rock Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e34f946-d845-4d5f-bab6-a8e13c1cb19a", + "OrganizationName": "Steven Locke MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", - "OrganizationName": "Blue Rock Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e34f946-d845-4d5f-bab6-a8e13c1cb19a", + "OrganizationName": "Steven Locke MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", - "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", + "OrganizationName": "Spirit Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", - "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", + "OrganizationName": "Spirit Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", - "OrganizationName": "Dra. Indira Barbosa Rios", + "URL": "https://api.patientfusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", + "OrganizationName": "Coastal Pulmonary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", - "OrganizationName": "Dra. Indira Barbosa Rios", + "URL": "https://api.practicefusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", + "OrganizationName": "Coastal Pulmonary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", - "OrganizationName": "Buffalo Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", + "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", - "OrganizationName": "Buffalo Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", + "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", - "OrganizationName": "Spirit Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", + "OrganizationName": "Buffalo Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", - "OrganizationName": "Spirit Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", + "OrganizationName": "Buffalo Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", - "OrganizationName": "Coastal Pulmonary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", - "OrganizationName": "Coastal Pulmonary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "NPIID": "", "OrganizationZipCode": "" }, @@ -12457,26 +12289,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/557eede6-85c4-4667-a77d-bbb5e644f833", - "OrganizationName": "M. Joshua Haber, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/557eede6-85c4-4667-a77d-bbb5e644f833", - "OrganizationName": "M. Joshua Haber, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", + "OrganizationName": "Northland Cares", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", + "OrganizationName": "Northland Cares", "NPIID": "", "OrganizationZipCode": "" }, @@ -12505,50 +12325,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", - "OrganizationName": "ADENA Health Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/557eede6-85c4-4667-a77d-bbb5e644f833", + "OrganizationName": "M. Joshua Haber, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", - "OrganizationName": "ADENA Health Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/557eede6-85c4-4667-a77d-bbb5e644f833", + "OrganizationName": "M. Joshua Haber, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", - "OrganizationName": "Northland Cares", + "URL": "https://api.patientfusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", + "OrganizationName": "ADENA Health Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", - "OrganizationName": "Northland Cares", + "URL": "https://api.practicefusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", + "OrganizationName": "ADENA Health Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", - "OrganizationName": "AllCare Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", + "OrganizationName": "Washington Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", - "OrganizationName": "AllCare Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", + "OrganizationName": "Washington Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/64a50f51-b758-42f0-90e4-bf97d0932f43", - "OrganizationName": "Sanjay T. Bhat MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", + "OrganizationName": "AllCare Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/64a50f51-b758-42f0-90e4-bf97d0932f43", - "OrganizationName": "Sanjay T. Bhat MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", + "OrganizationName": "AllCare Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -12564,18 +12384,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3d8d2e9d-1956-4f5e-a2bf-5d8310208012", - "OrganizationName": "Fidelity Health and Wellness Center, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3d8d2e9d-1956-4f5e-a2bf-5d8310208012", - "OrganizationName": "Fidelity Health and Wellness Center, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", "OrganizationName": "Julio Rodriguez Practice", @@ -12601,14 +12409,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a657998e-92b9-433b-8604-ff8f5d2936a0", - "OrganizationName": "Ali Alamar MD A Professional Corp.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/64a50f51-b758-42f0-90e4-bf97d0932f43", + "OrganizationName": "Sanjay T. Bhat MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a657998e-92b9-433b-8604-ff8f5d2936a0", - "OrganizationName": "Ali Alamar MD A Professional Corp.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/64a50f51-b758-42f0-90e4-bf97d0932f43", + "OrganizationName": "Sanjay T. Bhat MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3d8d2e9d-1956-4f5e-a2bf-5d8310208012", + "OrganizationName": "Fidelity Health and Wellness Center, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3d8d2e9d-1956-4f5e-a2bf-5d8310208012", + "OrganizationName": "Fidelity Health and Wellness Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12624,6 +12444,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a657998e-92b9-433b-8604-ff8f5d2936a0", + "OrganizationName": "Ali Alamar MD A Professional Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a657998e-92b9-433b-8604-ff8f5d2936a0", + "OrganizationName": "Ali Alamar MD A Professional Corp.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", "OrganizationName": "Elite Allergy and Asthma Clinic", @@ -12709,62 +12541,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", - "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", - "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", - "OrganizationName": "Alex Fridman Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", + "OrganizationName": "Rose Gold Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", - "OrganizationName": "Alex Fridman Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", + "OrganizationName": "Rose Gold Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", - "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", + "OrganizationName": "Alex Fridman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", - "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", + "OrganizationName": "Alex Fridman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", - "OrganizationName": "Reach for Recovery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", + "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", - "OrganizationName": "Reach for Recovery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", + "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", - "OrganizationName": "Rose Gold Health PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", + "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", - "OrganizationName": "Rose Gold Health PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", + "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", "NPIID": "", "OrganizationZipCode": "" }, @@ -12792,6 +12624,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9d383d9e-7519-4c43-a284-cc87ef19cdc9", "OrganizationName": "COASTAL CAROLINA BEHAVIORAL HEALTH", @@ -12805,14 +12649,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", - "OrganizationName": "Kinetic Foot and Ankle Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8fb1f29f-d293-466b-8961-c922717371a7", + "OrganizationName": "Dr. Z's Health, Wellness and Beauty Botique", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", - "OrganizationName": "Kinetic Foot and Ankle Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8fb1f29f-d293-466b-8961-c922717371a7", + "OrganizationName": "Dr. Z's Health, Wellness and Beauty Botique", "NPIID": "", "OrganizationZipCode": "" }, @@ -12829,26 +12673,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8fb1f29f-d293-466b-8961-c922717371a7", - "OrganizationName": "Dr. Z's Health, Wellness and Beauty Botique", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c39d9273-9cb2-4e0e-8200-5a26d8518301", + "OrganizationName": "Prestige Care Physician", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8fb1f29f-d293-466b-8961-c922717371a7", - "OrganizationName": "Dr. Z's Health, Wellness and Beauty Botique", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c39d9273-9cb2-4e0e-8200-5a26d8518301", + "OrganizationName": "Prestige Care Physician", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c39d9273-9cb2-4e0e-8200-5a26d8518301", - "OrganizationName": "Prestige Care Physician", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad69e049-05b8-4775-b2b0-9866ebfc8fe2", + "OrganizationName": "Henry Kaw M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c39d9273-9cb2-4e0e-8200-5a26d8518301", - "OrganizationName": "Prestige Care Physician", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad69e049-05b8-4775-b2b0-9866ebfc8fe2", + "OrganizationName": "Henry Kaw M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -12877,14 +12721,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad69e049-05b8-4775-b2b0-9866ebfc8fe2", - "OrganizationName": "Henry Kaw M.D. Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1358ec18-2768-4956-9610-ebeea25687f3", + "OrganizationName": "Semper Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad69e049-05b8-4775-b2b0-9866ebfc8fe2", - "OrganizationName": "Henry Kaw M.D. Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1358ec18-2768-4956-9610-ebeea25687f3", + "OrganizationName": "Semper Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", + "OrganizationName": "A Heartbeat Away ...", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", + "OrganizationName": "A Heartbeat Away ...", "NPIID": "", "OrganizationZipCode": "" }, @@ -12913,38 +12769,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", - "OrganizationName": "A Heartbeat Away ...", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", + "OrganizationName": "Mideastern Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", - "OrganizationName": "A Heartbeat Away ...", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", + "OrganizationName": "Mideastern Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1358ec18-2768-4956-9610-ebeea25687f3", - "OrganizationName": "Semper Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b69bef9b-0a11-456b-92a3-3ef46bcd336d", + "OrganizationName": "Linden Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1358ec18-2768-4956-9610-ebeea25687f3", - "OrganizationName": "Semper Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", - "OrganizationName": "Mideastern Primary Care PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", - "OrganizationName": "Mideastern Primary Care PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b69bef9b-0a11-456b-92a3-3ef46bcd336d", + "OrganizationName": "Linden Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -12961,38 +12805,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b69bef9b-0a11-456b-92a3-3ef46bcd336d", - "OrganizationName": "Linden Family Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b69bef9b-0a11-456b-92a3-3ef46bcd336d", - "OrganizationName": "Linden Family Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", - "OrganizationName": "Senior Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", + "OrganizationName": "Orthopedic Specialists of Oakland County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", - "OrganizationName": "Senior Healthcare Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", + "OrganizationName": "Orthopedic Specialists of Oakland County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", - "OrganizationName": "Orthopedic Specialists of Oakland County", + "URL": "https://api.patientfusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", + "OrganizationName": "Senior Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", - "OrganizationName": "Orthopedic Specialists of Oakland County", + "URL": "https://api.practicefusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", + "OrganizationName": "Senior Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -13009,14 +12853,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", - "OrganizationName": "North Shore Podiatry, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", + "OrganizationName": "Susan C. Warner, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", - "OrganizationName": "North Shore Podiatry, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", + "OrganizationName": "Susan C. Warner, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, @@ -13033,38 +12877,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d4baf05-955c-40d4-a5d8-705f4302f497", - "OrganizationName": "Celebra Med LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d4baf05-955c-40d4-a5d8-705f4302f497", - "OrganizationName": "Celebra Med LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0697fe64-b48b-4b14-a07c-4abaca59d97c", - "OrganizationName": "Pro Life Medical Center Corp", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0697fe64-b48b-4b14-a07c-4abaca59d97c", - "OrganizationName": "Pro Life Medical Center Corp", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", - "OrganizationName": "Susan C. Warner, D.P.M.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", + "OrganizationName": "Shariq J Rauf MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", - "OrganizationName": "Susan C. Warner, D.P.M.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", + "OrganizationName": "Shariq J Rauf MD, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -13080,18 +12900,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", - "OrganizationName": "Shariq J Rauf MD, PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", - "OrganizationName": "Shariq J Rauf MD, PA", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/25fa90ad-88a0-4992-a5a3-ac2656de76b6", "OrganizationName": "Healthy Alliance, LLC", @@ -13104,18 +12912,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/430db6bf-b48b-434e-bf72-8951fb49bdc0", - "OrganizationName": "DFW Kidney Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/430db6bf-b48b-434e-bf72-8951fb49bdc0", - "OrganizationName": "DFW Kidney Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e893106f-6cf1-4c3b-a5b4-b9e9567533e0", "OrganizationName": "Elizabeth Story Practice", @@ -13128,18 +12924,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", - "OrganizationName": "Pervis Enterprise LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", - "OrganizationName": "Pervis Enterprise LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/91c9a58d-e3da-472b-bb55-b2e4f24c1657", "OrganizationName": "AWAAM URGENT CARE CLINIC", @@ -13153,14 +12937,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/430db6bf-b48b-434e-bf72-8951fb49bdc0", + "OrganizationName": "DFW Kidney Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/430db6bf-b48b-434e-bf72-8951fb49bdc0", + "OrganizationName": "DFW Kidney Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -13177,86 +12961,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", - "OrganizationName": "Thrive IV Therpay And Holistic Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", + "OrganizationName": "Cardio View and Vascular Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", - "OrganizationName": "Thrive IV Therpay And Holistic Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", + "OrganizationName": "Cardio View and Vascular Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d4506b7e-1d2d-4278-b322-06f7e1967a9c", - "OrganizationName": "SonoMedSpa", + "URL": "https://api.patientfusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", + "OrganizationName": "Pervis Enterprise LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d4506b7e-1d2d-4278-b322-06f7e1967a9c", - "OrganizationName": "SonoMedSpa", + "URL": "https://api.practicefusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", + "OrganizationName": "Pervis Enterprise LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", - "OrganizationName": "WCM Sports Psych", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6549d21d-79c2-48e9-9a01-5e2a6b01e00c", + "OrganizationName": "Premier House Calls PLLC formerly Boyd House Calls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", - "OrganizationName": "WCM Sports Psych", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6549d21d-79c2-48e9-9a01-5e2a6b01e00c", + "OrganizationName": "Premier House Calls PLLC formerly Boyd House Calls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7fe5a656-182f-4292-9937-3070ef207bec", - "OrganizationName": "Mobile NP LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a549f4c2-271e-4b7a-bcc3-7294f93da07e", + "OrganizationName": "North Suburban Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7fe5a656-182f-4292-9937-3070ef207bec", - "OrganizationName": "Mobile NP LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a549f4c2-271e-4b7a-bcc3-7294f93da07e", + "OrganizationName": "North Suburban Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a549f4c2-271e-4b7a-bcc3-7294f93da07e", - "OrganizationName": "North Suburban Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7fe5a656-182f-4292-9937-3070ef207bec", + "OrganizationName": "Mobile NP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a549f4c2-271e-4b7a-bcc3-7294f93da07e", - "OrganizationName": "North Suburban Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7fe5a656-182f-4292-9937-3070ef207bec", + "OrganizationName": "Mobile NP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6549d21d-79c2-48e9-9a01-5e2a6b01e00c", - "OrganizationName": "Premier House Calls PLLC formerly Boyd House Calls", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", + "OrganizationName": "Thrive IV Therpay And Holistic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6549d21d-79c2-48e9-9a01-5e2a6b01e00c", - "OrganizationName": "Premier House Calls PLLC formerly Boyd House Calls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", + "OrganizationName": "Thrive IV Therpay And Holistic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", - "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", + "OrganizationName": "WCM Sports Psych", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", - "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", + "OrganizationName": "WCM Sports Psych", "NPIID": "", "OrganizationZipCode": "" }, @@ -13273,50 +13057,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", - "OrganizationName": "Wellspring Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/62f63fa6-a709-44d9-90d9-d630050d04e6", + "OrganizationName": "Evolve Wellness and Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", - "OrganizationName": "Wellspring Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62f63fa6-a709-44d9-90d9-d630050d04e6", + "OrganizationName": "Evolve Wellness and Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", - "OrganizationName": "The Melford Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c38bdf4e-9120-462a-8df0-6eef57aa798a", + "OrganizationName": "Brookyln Heights Internal Medicine PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", - "OrganizationName": "The Melford Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c38bdf4e-9120-462a-8df0-6eef57aa798a", + "OrganizationName": "Brookyln Heights Internal Medicine PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62f63fa6-a709-44d9-90d9-d630050d04e6", - "OrganizationName": "Evolve Wellness and Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/62f63fa6-a709-44d9-90d9-d630050d04e6", - "OrganizationName": "Evolve Wellness and Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c38bdf4e-9120-462a-8df0-6eef57aa798a", - "OrganizationName": "Brookyln Heights Internal Medicine PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", + "OrganizationName": "The Melford Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c38bdf4e-9120-462a-8df0-6eef57aa798a", - "OrganizationName": "Brookyln Heights Internal Medicine PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", + "OrganizationName": "The Melford Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -13333,38 +13117,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab142b39-9296-4af7-baa9-07497ac28b8d", - "OrganizationName": "Collier Eyecare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", + "OrganizationName": "Wellspring Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab142b39-9296-4af7-baa9-07497ac28b8d", - "OrganizationName": "Collier Eyecare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", + "OrganizationName": "Wellspring Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0f6dcb-cfba-4969-b365-01e182b1fbbd", - "OrganizationName": "PCVCAW - Phoenix Wellness Program", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab142b39-9296-4af7-baa9-07497ac28b8d", + "OrganizationName": "Collier Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0f6dcb-cfba-4969-b365-01e182b1fbbd", - "OrganizationName": "PCVCAW - Phoenix Wellness Program", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab142b39-9296-4af7-baa9-07497ac28b8d", + "OrganizationName": "Collier Eyecare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d45291d3-60d9-40d4-9f59-bc17aac53c13", - "OrganizationName": "Rockaway Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0f6dcb-cfba-4969-b365-01e182b1fbbd", + "OrganizationName": "PCVCAW - Phoenix Wellness Program", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d45291d3-60d9-40d4-9f59-bc17aac53c13", - "OrganizationName": "Rockaway Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0f6dcb-cfba-4969-b365-01e182b1fbbd", + "OrganizationName": "PCVCAW - Phoenix Wellness Program", "NPIID": "", "OrganizationZipCode": "" }, @@ -13392,18 +13176,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", - "OrganizationName": "ENC Peds PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", - "OrganizationName": "ENC Peds PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e3ffe5be-4255-470e-a02e-4c118d55a2ac", "OrganizationName": "Just Mental Health, Inc.", @@ -13441,26 +13213,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/707abe35-83d5-4313-94f8-900b407c2a2d", - "OrganizationName": "Liagnys Garcia DNP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d45291d3-60d9-40d4-9f59-bc17aac53c13", + "OrganizationName": "Rockaway Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/707abe35-83d5-4313-94f8-900b407c2a2d", - "OrganizationName": "Liagnys Garcia DNP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d45291d3-60d9-40d4-9f59-bc17aac53c13", + "OrganizationName": "Rockaway Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/48f5d1e8-ff70-41e1-a32d-46485ab77161", - "OrganizationName": "Tessman Psychiatric Care, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", + "OrganizationName": "ENC Peds PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/48f5d1e8-ff70-41e1-a32d-46485ab77161", - "OrganizationName": "Tessman Psychiatric Care, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", + "OrganizationName": "ENC Peds PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13477,50 +13249,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/043f50be-cf23-4acc-b3d9-30db22bae9b5", - "OrganizationName": "Psyche, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/48f5d1e8-ff70-41e1-a32d-46485ab77161", + "OrganizationName": "Tessman Psychiatric Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/043f50be-cf23-4acc-b3d9-30db22bae9b5", - "OrganizationName": "Psyche, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/48f5d1e8-ff70-41e1-a32d-46485ab77161", + "OrganizationName": "Tessman Psychiatric Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/707abe35-83d5-4313-94f8-900b407c2a2d", + "OrganizationName": "Liagnys Garcia DNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/707abe35-83d5-4313-94f8-900b407c2a2d", + "OrganizationName": "Liagnys Garcia DNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb358dcb-c321-4f45-80df-68d8da26d3e1", - "OrganizationName": "Hawkins Family Medicine, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/043f50be-cf23-4acc-b3d9-30db22bae9b5", + "OrganizationName": "Psyche, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb358dcb-c321-4f45-80df-68d8da26d3e1", - "OrganizationName": "Hawkins Family Medicine, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/043f50be-cf23-4acc-b3d9-30db22bae9b5", + "OrganizationName": "Psyche, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3684d4c3-4234-4e4b-b47d-c7d4a76042ff", - "OrganizationName": "Jorge Luis Rivera Herrera MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", + "OrganizationName": "Malitha Hettiarachchi MD FACP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3684d4c3-4234-4e4b-b47d-c7d4a76042ff", - "OrganizationName": "Jorge Luis Rivera Herrera MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", + "OrganizationName": "Malitha Hettiarachchi MD FACP", "NPIID": "", "OrganizationZipCode": "" }, @@ -13537,98 +13309,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b73b3393-d274-4055-b6fe-65935c05a58a", - "OrganizationName": "VITALITY HEALTHCARE GROUP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b73b3393-d274-4055-b6fe-65935c05a58a", - "OrganizationName": "VITALITY HEALTHCARE GROUP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb358dcb-c321-4f45-80df-68d8da26d3e1", + "OrganizationName": "Hawkins Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb358dcb-c321-4f45-80df-68d8da26d3e1", + "OrganizationName": "Hawkins Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", - "OrganizationName": "Cory L. Cashman, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3684d4c3-4234-4e4b-b47d-c7d4a76042ff", + "OrganizationName": "Grupo Medico San Jorge 401", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", - "OrganizationName": "Cory L. Cashman, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3684d4c3-4234-4e4b-b47d-c7d4a76042ff", + "OrganizationName": "Grupo Medico San Jorge 401", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e54446cb-9529-48f8-8ab1-d2363599a784", - "OrganizationName": "Forest Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", + "OrganizationName": "Cory L. Cashman, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e54446cb-9529-48f8-8ab1-d2363599a784", - "OrganizationName": "Forest Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", + "OrganizationName": "Cory L. Cashman, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1c38659c-d936-447a-8cdc-cfd5663d2ede", - "OrganizationName": "Sedra Medical Clinic PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b73b3393-d274-4055-b6fe-65935c05a58a", + "OrganizationName": "VITALITY HEALTHCARE GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1c38659c-d936-447a-8cdc-cfd5663d2ede", - "OrganizationName": "Sedra Medical Clinic PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b73b3393-d274-4055-b6fe-65935c05a58a", + "OrganizationName": "VITALITY HEALTHCARE GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36a0f3fa-649b-451c-9d4f-628506258765", - "OrganizationName": "SATISH ANGRA MD, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e54446cb-9529-48f8-8ab1-d2363599a784", + "OrganizationName": "Forest Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36a0f3fa-649b-451c-9d4f-628506258765", - "OrganizationName": "SATISH ANGRA MD, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e54446cb-9529-48f8-8ab1-d2363599a784", + "OrganizationName": "Forest Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", - "OrganizationName": "Osipova Surgical Service Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1c38659c-d936-447a-8cdc-cfd5663d2ede", + "OrganizationName": "Sedra Medical Clinic PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", - "OrganizationName": "Osipova Surgical Service Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1c38659c-d936-447a-8cdc-cfd5663d2ede", + "OrganizationName": "Sedra Medical Clinic PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", - "OrganizationName": "Best Life Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36a0f3fa-649b-451c-9d4f-628506258765", + "OrganizationName": "SATISH ANGRA MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", - "OrganizationName": "Best Life Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36a0f3fa-649b-451c-9d4f-628506258765", + "OrganizationName": "SATISH ANGRA MD, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13656,6 +13428,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", + "OrganizationName": "Beverly Wicks Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", + "OrganizationName": "Beverly Wicks Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", "OrganizationName": "Palm Valley Brain and Spine", @@ -13669,14 +13453,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", - "OrganizationName": "Beverly Wicks Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", + "OrganizationName": "Best Life Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", - "OrganizationName": "Beverly Wicks Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", + "OrganizationName": "Best Life Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -13692,6 +13476,42 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", + "OrganizationName": "Osipova Surgical Service Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", + "OrganizationName": "Osipova Surgical Service Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7dfebd52-f43e-4d58-8aae-14d23bd96d35", + "OrganizationName": "Adil pediatrics inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7dfebd52-f43e-4d58-8aae-14d23bd96d35", + "OrganizationName": "Adil pediatrics inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5ef2aaf8-2d13-4824-94ab-2d853fd2c8be", + "OrganizationName": "MILWAUKEE RHEUMATOLOGY CENTER SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5ef2aaf8-2d13-4824-94ab-2d853fd2c8be", + "OrganizationName": "MILWAUKEE RHEUMATOLOGY CENTER SC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", "OrganizationName": "Foot Care Center of Palm Beach", @@ -13728,18 +13548,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7dfebd52-f43e-4d58-8aae-14d23bd96d35", - "OrganizationName": "Adil pediatrics inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7dfebd52-f43e-4d58-8aae-14d23bd96d35", - "OrganizationName": "Adil pediatrics inc", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3a9c9dce-18cc-44ff-8234-b4b261cc1655", "OrganizationName": "V Home Family Practice", @@ -13753,14 +13561,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5ef2aaf8-2d13-4824-94ab-2d853fd2c8be", - "OrganizationName": "MILWAUKEE RHEUMATOLOGY CENTER SC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", + "OrganizationName": "MembersMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5ef2aaf8-2d13-4824-94ab-2d853fd2c8be", - "OrganizationName": "MILWAUKEE RHEUMATOLOGY CENTER SC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", + "OrganizationName": "MembersMD", "NPIID": "", "OrganizationZipCode": "" }, @@ -13789,62 +13597,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", - "OrganizationName": "MembersMD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", + "OrganizationName": "Tri County Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", - "OrganizationName": "MembersMD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", + "OrganizationName": "Tri County Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3d9842e2-69b1-4337-97bc-6b8865bedf6d", - "OrganizationName": "Lyrad Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", + "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3d9842e2-69b1-4337-97bc-6b8865bedf6d", - "OrganizationName": "Lyrad Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", + "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", - "OrganizationName": "The C.L.I.N.I.C. NY NJ", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", + "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", - "OrganizationName": "The C.L.I.N.I.C. NY NJ", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", + "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", - "OrganizationName": "Plena Integrative Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", + "OrganizationName": "Stillwater Consulting, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", - "OrganizationName": "Plena Integrative Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", + "OrganizationName": "Stillwater Consulting, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", - "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", + "OrganizationName": "The C.L.I.N.I.C. NY NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", - "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", + "OrganizationName": "The C.L.I.N.I.C. NY NJ", "NPIID": "", "OrganizationZipCode": "" }, @@ -13861,26 +13669,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", - "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", + "OrganizationName": "Plena Integrative Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", - "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", + "OrganizationName": "Plena Integrative Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", - "OrganizationName": "Tri County Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/060b601c-5618-4bd7-a216-da38245b2932", + "OrganizationName": "Frugaldoctor Anesthesia PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", - "OrganizationName": "Tri County Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/060b601c-5618-4bd7-a216-da38245b2932", + "OrganizationName": "Frugaldoctor Anesthesia PLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13897,26 +13705,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/060b601c-5618-4bd7-a216-da38245b2932", - "OrganizationName": "Frugaldoctor Anesthesia PLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/060b601c-5618-4bd7-a216-da38245b2932", - "OrganizationName": "Frugaldoctor Anesthesia PLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", - "OrganizationName": "Stillwater Consulting, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", + "OrganizationName": "Brockton Recovery Medical Associates, P. C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", - "OrganizationName": "Stillwater Consulting, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", + "OrganizationName": "Brockton Recovery Medical Associates, P. C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -13968,18 +13764,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", - "OrganizationName": "Brockton Recovery Medical Associates, P. C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", - "OrganizationName": "Brockton Recovery Medical Associates, P. C.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1ae699e0-890e-4ed4-af8a-03685c361ec1", "OrganizationName": "PROCENTURE HEALTHCARE SOLUTIONS", @@ -13992,18 +13776,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/79b6b3bd-8709-4847-b817-54a62d58f19b", "OrganizationName": "Findley Medical Clinic", @@ -14028,6 +13800,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", + "OrganizationName": "HatzakisMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", + "OrganizationName": "HatzakisMD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7f97c77f-1609-404f-9326-4657dc0cb7f6", "OrganizationName": "PCAF", @@ -14054,49 +13838,49 @@ }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/84a4b808-1910-4e25-beb3-6859a5186890", - "OrganizationName": "Oluwatoyin Aluko Practice", + "OrganizationName": "Mind-touch Psychiatry care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/84a4b808-1910-4e25-beb3-6859a5186890", - "OrganizationName": "Oluwatoyin Aluko Practice", + "OrganizationName": "Mind-touch Psychiatry care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", - "OrganizationName": "ConciergeCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", - "OrganizationName": "ConciergeCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a8ba867-0f1a-4a66-acb4-c57498e2620f", - "OrganizationName": "Freedom Wellness Physiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", + "OrganizationName": "ConciergeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a8ba867-0f1a-4a66-acb4-c57498e2620f", - "OrganizationName": "Freedom Wellness Physiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", + "OrganizationName": "ConciergeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", - "OrganizationName": "New York Medicine Doctors, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a8ba867-0f1a-4a66-acb4-c57498e2620f", + "OrganizationName": "Freedom Wellness Physiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", - "OrganizationName": "New York Medicine Doctors, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a8ba867-0f1a-4a66-acb4-c57498e2620f", + "OrganizationName": "Freedom Wellness Physiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -14136,18 +13920,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/61452447-72e8-4ad7-90f8-109086df4f6b", - "OrganizationName": "Appalachian Wellness, L.L.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/61452447-72e8-4ad7-90f8-109086df4f6b", - "OrganizationName": "Appalachian Wellness, L.L.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", "OrganizationName": "Blue Nile Clinic", @@ -14161,14 +13933,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f9fd0746-dee5-48e8-8302-466a9191b510", - "OrganizationName": "Integrative Health Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/61452447-72e8-4ad7-90f8-109086df4f6b", + "OrganizationName": "Appalachian Wellness, L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f9fd0746-dee5-48e8-8302-466a9191b510", - "OrganizationName": "Integrative Health Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/61452447-72e8-4ad7-90f8-109086df4f6b", + "OrganizationName": "Appalachian Wellness, L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -14185,26 +13957,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", - "OrganizationName": "Evan May MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", - "OrganizationName": "Evan May MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", - "OrganizationName": "Phillips Family Healthcare, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f9fd0746-dee5-48e8-8302-466a9191b510", + "OrganizationName": "Integrative Health Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", - "OrganizationName": "Phillips Family Healthcare, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f9fd0746-dee5-48e8-8302-466a9191b510", + "OrganizationName": "Integrative Health Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -14221,14 +13981,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", - "OrganizationName": "Yamilka Castillo Gongora Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", + "OrganizationName": "Phillips Family Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", - "OrganizationName": "Yamilka Castillo Gongora Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", + "OrganizationName": "Phillips Family Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14245,62 +14005,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", - "OrganizationName": "SANDY D Espinosa MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", + "OrganizationName": "Evan May MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", - "OrganizationName": "SANDY D Espinosa MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1cf88b-2a78-4a36-8d9c-350c58bb82db", + "OrganizationName": "Evan May MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", - "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", - "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6804f5a5-7225-45da-bcf0-90d52fbf1f9d", - "OrganizationName": "Premier Health Express Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6804f5a5-7225-45da-bcf0-90d52fbf1f9d", - "OrganizationName": "Premier Health Express Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", - "OrganizationName": "Ian Dy Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6804f5a5-7225-45da-bcf0-90d52fbf1f9d", + "OrganizationName": "Premier Health Express Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", - "OrganizationName": "Ian Dy Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6804f5a5-7225-45da-bcf0-90d52fbf1f9d", + "OrganizationName": "Premier Health Express Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/546c1ce1-0c4a-4e5e-adcd-8aa0d33f6c05", - "OrganizationName": "A1 urgent care, family and pediatric center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/546c1ce1-0c4a-4e5e-adcd-8aa0d33f6c05", - "OrganizationName": "A1 urgent care, family and pediatric center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -14317,38 +14077,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/54a3a020-e417-4034-a6bf-e3a14c50c05b", - "OrganizationName": "Dayal Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/546c1ce1-0c4a-4e5e-adcd-8aa0d33f6c05", + "OrganizationName": "A1 urgent care, family and pediatric center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/54a3a020-e417-4034-a6bf-e3a14c50c05b", - "OrganizationName": "Dayal Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/546c1ce1-0c4a-4e5e-adcd-8aa0d33f6c05", + "OrganizationName": "A1 urgent care, family and pediatric center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8d787472-f13f-413f-9b8d-b24429558e93", - "OrganizationName": "Arizona Rheumatology Consultants, PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8d787472-f13f-413f-9b8d-b24429558e93", - "OrganizationName": "Arizona Rheumatology Consultants, PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5a68cac0-bf67-4218-a621-860f8257f850", - "OrganizationName": "X-Med Healthcare Professionals", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d787472-f13f-413f-9b8d-b24429558e93", + "OrganizationName": "Arizona Rheumatology Consultants, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5a68cac0-bf67-4218-a621-860f8257f850", - "OrganizationName": "X-Med Healthcare Professionals", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d787472-f13f-413f-9b8d-b24429558e93", + "OrganizationName": "Arizona Rheumatology Consultants, PLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14365,26 +14125,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f54d9cda-af16-4f66-b24e-1b3ab9405715", - "OrganizationName": "Vantage Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/54a3a020-e417-4034-a6bf-e3a14c50c05b", + "OrganizationName": "Dayal Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f54d9cda-af16-4f66-b24e-1b3ab9405715", - "OrganizationName": "Vantage Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/54a3a020-e417-4034-a6bf-e3a14c50c05b", + "OrganizationName": "Dayal Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/75004cd1-f402-425e-a280-af24c1204d05", - "OrganizationName": "Evan T Belfer MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f54d9cda-af16-4f66-b24e-1b3ab9405715", + "OrganizationName": "Vantage Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/75004cd1-f402-425e-a280-af24c1204d05", - "OrganizationName": "Evan T Belfer MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f54d9cda-af16-4f66-b24e-1b3ab9405715", + "OrganizationName": "Vantage Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -14400,6 +14160,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/75004cd1-f402-425e-a280-af24c1204d05", + "OrganizationName": "Evan T Belfer MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/75004cd1-f402-425e-a280-af24c1204d05", + "OrganizationName": "Evan T Belfer MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b9210ce7-7741-46d8-aece-5d7804ba22ec", "OrganizationName": "Jofgrek Oliveras Practice", @@ -14412,6 +14184,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", + "OrganizationName": "Miami Brain and Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", + "OrganizationName": "Miami Brain and Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ba7b4caf-9765-4de6-8774-57c5b2ff5f20", "OrganizationName": "DAC HEALTH", @@ -14425,14 +14209,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", - "OrganizationName": "Miami Brain and Spine Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", - "OrganizationName": "Miami Brain and Spine Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14472,18 +14256,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", - "OrganizationName": "Doreen Zarfati Psychiatry PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", - "OrganizationName": "Doreen Zarfati Psychiatry PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", "OrganizationName": "T. C. Integrative Medicine", @@ -14532,30 +14304,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", - "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", - "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", - "OrganizationName": "SKIN CANCER TREATMENT CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", - "OrganizationName": "SKIN CANCER TREATMENT CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", "OrganizationName": "Balance Orthopedics", @@ -14569,26 +14317,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", - "OrganizationName": "Cohn Plastic Surgery, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", + "OrganizationName": "SKIN CANCER TREATMENT CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", - "OrganizationName": "Cohn Plastic Surgery, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", + "OrganizationName": "SKIN CANCER TREATMENT CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e79c3fa6-3f8b-4ccc-bb50-0acc8a49b90f", - "OrganizationName": "Bristol Primary Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e79c3fa6-3f8b-4ccc-bb50-0acc8a49b90f", - "OrganizationName": "Bristol Primary Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14617,26 +14365,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e0f166e-9e92-4f0e-9c2e-ac38e0120587", - "OrganizationName": "Angel Lopez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", + "OrganizationName": "EN LOVE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e0f166e-9e92-4f0e-9c2e-ac38e0120587", - "OrganizationName": "Angel Lopez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", + "OrganizationName": "EN LOVE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", - "OrganizationName": "EN LOVE, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", + "OrganizationName": "Cohn Plastic Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", - "OrganizationName": "EN LOVE, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", + "OrganizationName": "Cohn Plastic Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14689,20 +14437,8 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62e78e32-3a4b-414b-a247-87f8a95c0d73", - "OrganizationName": "Nurowav TMS PC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/62e78e32-3a4b-414b-a247-87f8a95c0d73", - "OrganizationName": "Nurowav TMS PC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", - "OrganizationName": "Red River Valley Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", + "OrganizationName": "Red River Valley Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -14713,14 +14449,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc55d108-9941-4da6-9e64-f607599cc1ca", - "OrganizationName": "Southwest Pain \u0026 Addiction Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/62e78e32-3a4b-414b-a247-87f8a95c0d73", + "OrganizationName": "Nurowav TMS PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc55d108-9941-4da6-9e64-f607599cc1ca", - "OrganizationName": "Southwest Pain \u0026 Addiction Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62e78e32-3a4b-414b-a247-87f8a95c0d73", + "OrganizationName": "Nurowav TMS PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14748,6 +14484,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc55d108-9941-4da6-9e64-f607599cc1ca", + "OrganizationName": "Southwest Pain \u0026 Addiction Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc55d108-9941-4da6-9e64-f607599cc1ca", + "OrganizationName": "Southwest Pain \u0026 Addiction Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", "OrganizationName": "ADHD Wellness Clinic of Hawai’i", @@ -14772,6 +14520,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a650af13-9f2f-4366-929b-d40956697a7a", + "OrganizationName": "VitaVia Telemedicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a650af13-9f2f-4366-929b-d40956697a7a", + "OrganizationName": "VitaVia Telemedicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5f34744e-0e5d-4f5f-80a8-46e4fd5da54d", + "OrganizationName": "Nicole Marchesani NP-Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5f34744e-0e5d-4f5f-80a8-46e4fd5da54d", + "OrganizationName": "Nicole Marchesani NP-Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", @@ -14821,26 +14593,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a650af13-9f2f-4366-929b-d40956697a7a", - "OrganizationName": "VitaVia Telemedicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a650af13-9f2f-4366-929b-d40956697a7a", - "OrganizationName": "VitaVia Telemedicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5f34744e-0e5d-4f5f-80a8-46e4fd5da54d", - "OrganizationName": "Nicole Marchesani NP-Family Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5488801a-bd2b-42a8-9791-a270708ee5ff", + "OrganizationName": "South Coast Sports and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5f34744e-0e5d-4f5f-80a8-46e4fd5da54d", - "OrganizationName": "Nicole Marchesani NP-Family Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5488801a-bd2b-42a8-9791-a270708ee5ff", + "OrganizationName": "South Coast Sports and Spine", "NPIID": "", "OrganizationZipCode": "" }, @@ -14857,38 +14617,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", - "OrganizationName": "Stanley Librach, M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", - "OrganizationName": "Stanley Librach, M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5488801a-bd2b-42a8-9791-a270708ee5ff", - "OrganizationName": "South Coast Sports and Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/317125e7-7ee5-4b7e-baee-e74a5eacb026", + "OrganizationName": "Jane Caplan, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5488801a-bd2b-42a8-9791-a270708ee5ff", - "OrganizationName": "South Coast Sports and Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/317125e7-7ee5-4b7e-baee-e74a5eacb026", + "OrganizationName": "Jane Caplan, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/317125e7-7ee5-4b7e-baee-e74a5eacb026", - "OrganizationName": "Jane Caplan, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", + "OrganizationName": "Stanley Librach, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/317125e7-7ee5-4b7e-baee-e74a5eacb026", - "OrganizationName": "Jane Caplan, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", + "OrganizationName": "Stanley Librach, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -14917,38 +14665,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", - "OrganizationName": "Imhotepcx Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", - "OrganizationName": "Imhotepcx Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d86c5471-d385-4119-9854-0a5b2aaca078", - "OrganizationName": "Roman Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4b6af5e5-703f-4dae-90e2-4205795fb414", + "OrganizationName": "Elizabeth Breedlove Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d86c5471-d385-4119-9854-0a5b2aaca078", - "OrganizationName": "Roman Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b6af5e5-703f-4dae-90e2-4205795fb414", + "OrganizationName": "Elizabeth Breedlove Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b6af5e5-703f-4dae-90e2-4205795fb414", - "OrganizationName": "Elizabeth Breedlove Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4b6af5e5-703f-4dae-90e2-4205795fb414", - "OrganizationName": "Elizabeth Breedlove Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -14977,38 +14713,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", - "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5cd5ad0f-4cd0-4838-99ec-3d9f0fc9ac70", + "OrganizationName": "Physicals Plus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", - "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5cd5ad0f-4cd0-4838-99ec-3d9f0fc9ac70", + "OrganizationName": "Physicals Plus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", - "OrganizationName": "Downtown Thyroid, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", + "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", - "OrganizationName": "Downtown Thyroid, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", + "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5cd5ad0f-4cd0-4838-99ec-3d9f0fc9ac70", - "OrganizationName": "Physicals Plus", + "URL": "https://api.patientfusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5cd5ad0f-4cd0-4838-99ec-3d9f0fc9ac70", - "OrganizationName": "Physicals Plus", + "URL": "https://api.practicefusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -15037,26 +14773,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", - "OrganizationName": "A1 Family Mediicine.PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4848500-09a3-4294-addb-bd9aadfd1a33", + "OrganizationName": "Elan Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", - "OrganizationName": "A1 Family Mediicine.PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4848500-09a3-4294-addb-bd9aadfd1a33", + "OrganizationName": "Elan Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4848500-09a3-4294-addb-bd9aadfd1a33", - "OrganizationName": "The Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", + "OrganizationName": "A1 Family Mediicine.PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4848500-09a3-4294-addb-bd9aadfd1a33", - "OrganizationName": "The Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", + "OrganizationName": "A1 Family Mediicine.PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15086,13 +14822,13 @@ }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f2e8dd06-5173-4cf9-970d-b6bcb9a2ef93", - "OrganizationName": "Linda Hawley llc", + "OrganizationName": "Access Nevada Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/f2e8dd06-5173-4cf9-970d-b6bcb9a2ef93", - "OrganizationName": "Linda Hawley llc", + "OrganizationName": "Access Nevada Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -15216,6 +14952,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", + "OrganizationName": "Stellar Healthcare, PLCC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", + "OrganizationName": "Stellar Healthcare, PLCC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a2fcf9e4-7a40-45b0-8cda-8d07a5500c19", "OrganizationName": "Macdremma Wellness", @@ -15252,18 +15000,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", - "OrganizationName": "Stellar Healthcare, PLCC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", - "OrganizationName": "Stellar Healthcare, PLCC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", "OrganizationName": "Victoria Kelly MD LLC", @@ -15288,18 +15024,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", - "OrganizationName": "LeKeytra Washington Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", - "OrganizationName": "LeKeytra Washington Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/85106c77-09bd-4f73-ad32-9ac4b90c7318", "OrganizationName": "LAKEFOREST CARDIOLOGY LLC", @@ -15313,14 +15037,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", - "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "URL": "https://api.patientfusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", + "OrganizationName": "LeKeytra Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", - "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "URL": "https://api.practicefusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", + "OrganizationName": "LeKeytra Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15348,6 +15072,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", + "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", + "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b30c75ce-636c-4f7e-b2a1-712307d23018", "OrganizationName": "Vyvo Spine and Pain Management", @@ -15373,14 +15109,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", - "OrganizationName": "SeniorSolutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", + "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", - "OrganizationName": "SeniorSolutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", + "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/51994af8-5d9c-4f5b-8bc2-6f8689ac3f12", + "OrganizationName": "SHIFT Specialized Healthcare In Full-body Transformation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/51994af8-5d9c-4f5b-8bc2-6f8689ac3f12", + "OrganizationName": "SHIFT Specialized Healthcare In Full-body Transformation", "NPIID": "", "OrganizationZipCode": "" }, @@ -15421,74 +15169,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/28ee4a37-758a-4551-9539-1ca8dcb867d3", - "OrganizationName": "Advanced Pain Neurology, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", + "OrganizationName": "SeniorSolutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/28ee4a37-758a-4551-9539-1ca8dcb867d3", - "OrganizationName": "Advanced Pain Neurology, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1f6d3ace-5a5e-4b77-b2f4-4b63a6ae4394", + "OrganizationName": "SeniorSolutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", - "OrganizationName": "Althera Alternative Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/28ee4a37-758a-4551-9539-1ca8dcb867d3", + "OrganizationName": "Advanced Pain Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", - "OrganizationName": "Althera Alternative Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/51994af8-5d9c-4f5b-8bc2-6f8689ac3f12", - "OrganizationName": "SHIFT Specialized Healthcare In Full-body Transformation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/51994af8-5d9c-4f5b-8bc2-6f8689ac3f12", - "OrganizationName": "SHIFT Specialized Healthcare In Full-body Transformation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/28ee4a37-758a-4551-9539-1ca8dcb867d3", + "OrganizationName": "Advanced Pain Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d443efe3-2eb8-40a4-ae56-9db1cc763de1", - "OrganizationName": "Good Samaritan Transitional Care and Wound Xpress", + "OrganizationName": "Good Samaritan Transitional Care DBA Wound Xpress", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/d443efe3-2eb8-40a4-ae56-9db1cc763de1", - "OrganizationName": "Good Samaritan Transitional Care and Wound Xpress", + "OrganizationName": "Good Samaritan Transitional Care DBA Wound Xpress", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", - "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", + "OrganizationName": "KING MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", - "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", + "OrganizationName": "KING MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", - "OrganizationName": "KING MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", + "OrganizationName": "Althera Alternative Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", - "OrganizationName": "KING MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", + "OrganizationName": "Althera Alternative Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -15601,26 +15337,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", - "OrganizationName": "Quality Care at Home", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", - "OrganizationName": "Quality Care at Home", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", - "OrganizationName": "Tri Cities Diabetes", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", + "OrganizationName": "Quality Care at Home", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", - "OrganizationName": "Tri Cities Diabetes", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", + "OrganizationName": "Quality Care at Home", "NPIID": "", "OrganizationZipCode": "" }, @@ -15648,6 +15384,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", "OrganizationName": "Ngozi Nnaji Practice", @@ -15661,14 +15409,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", - "OrganizationName": "Luarde I. Montano Soto, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", + "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", - "OrganizationName": "Luarde I. Montano Soto, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", + "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -15720,18 +15468,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", - "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/49e5ba3d-ce7f-48b5-9e09-77cb3ca9a7ac", - "OrganizationName": "PHSU Wellness Center, Academic Psychiatry Services", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", "OrganizationName": "Bridge Medical Consultants PC", @@ -15745,38 +15481,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e870e325-eac2-4419-9dc6-34bbd63ae610", - "OrganizationName": "G. William Salbador, MD, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0de11e83-ddec-4ffa-9021-454c0659da32", + "OrganizationName": "JCG NP-Adult Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e870e325-eac2-4419-9dc6-34bbd63ae610", - "OrganizationName": "G. William Salbador, MD, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0de11e83-ddec-4ffa-9021-454c0659da32", + "OrganizationName": "JCG NP-Adult Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97e4d912-2b2f-44eb-a11e-0f8389f7c743", - "OrganizationName": "Dr. Barbara Ann Scherer", + "URL": "https://api.patientfusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97e4d912-2b2f-44eb-a11e-0f8389f7c743", - "OrganizationName": "Dr. Barbara Ann Scherer", + "URL": "https://api.practicefusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d7ea5e3-baab-4a7e-8fd0-b9b529315965", - "OrganizationName": "Sofia M. Weigel, MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/97e4d912-2b2f-44eb-a11e-0f8389f7c743", + "OrganizationName": "Dr. Barbara Ann Scherer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d7ea5e3-baab-4a7e-8fd0-b9b529315965", - "OrganizationName": "Sofia M. Weigel, MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/97e4d912-2b2f-44eb-a11e-0f8389f7c743", + "OrganizationName": "Dr. Barbara Ann Scherer", "NPIID": "", "OrganizationZipCode": "" }, @@ -15793,62 +15529,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", - "OrganizationName": "Z MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", - "OrganizationName": "Z MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0de11e83-ddec-4ffa-9021-454c0659da32", - "OrganizationName": "JCG NP-Adult Health PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/685b98e7-39c5-45d8-accb-6060c987a219", + "OrganizationName": "Omnicare Anesthesia Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0de11e83-ddec-4ffa-9021-454c0659da32", - "OrganizationName": "JCG NP-Adult Health PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/685b98e7-39c5-45d8-accb-6060c987a219", + "OrganizationName": "Omnicare Anesthesia Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2af4ad9c-f4c0-4ed2-b63e-7e6139510f4d", - "OrganizationName": "ASH Family Medical Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e870e325-eac2-4419-9dc6-34bbd63ae610", + "OrganizationName": "G. William Salbador, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2af4ad9c-f4c0-4ed2-b63e-7e6139510f4d", - "OrganizationName": "ASH Family Medical Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e870e325-eac2-4419-9dc6-34bbd63ae610", + "OrganizationName": "G. William Salbador, MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", - "OrganizationName": "Victor Lopez de Mendoza Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d7ea5e3-baab-4a7e-8fd0-b9b529315965", + "OrganizationName": "Sofia M. Weigel, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", - "OrganizationName": "Victor Lopez de Mendoza Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d7ea5e3-baab-4a7e-8fd0-b9b529315965", + "OrganizationName": "Sofia M. Weigel, MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/685b98e7-39c5-45d8-accb-6060c987a219", - "OrganizationName": "Omnicare Anesthesia Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2af4ad9c-f4c0-4ed2-b63e-7e6139510f4d", + "OrganizationName": "ASH Family Medical Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/685b98e7-39c5-45d8-accb-6060c987a219", - "OrganizationName": "Omnicare Anesthesia Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2af4ad9c-f4c0-4ed2-b63e-7e6139510f4d", + "OrganizationName": "ASH Family Medical Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15889,74 +15625,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", - "OrganizationName": "Memphis Psychiatric Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a4150e1-037d-4175-a710-6e583334f4dd", + "OrganizationName": "Scoccia Medical Services PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", - "OrganizationName": "Memphis Psychiatric Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a4150e1-037d-4175-a710-6e583334f4dd", + "OrganizationName": "Scoccia Medical Services PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7979e254-4486-47d3-a278-c2d8f892a92c", - "OrganizationName": "Balance Hormone Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/77dac999-efa0-4be5-84eb-7acec04b8758", + "OrganizationName": "Wekiva Springs Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7979e254-4486-47d3-a278-c2d8f892a92c", - "OrganizationName": "Balance Hormone Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/77dac999-efa0-4be5-84eb-7acec04b8758", + "OrganizationName": "Wekiva Springs Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a4150e1-037d-4175-a710-6e583334f4dd", - "OrganizationName": "Scoccia Medical Services PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", + "OrganizationName": "Beverly medical care plcc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a4150e1-037d-4175-a710-6e583334f4dd", - "OrganizationName": "Scoccia Medical Services PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", + "OrganizationName": "Beverly medical care plcc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/77dac999-efa0-4be5-84eb-7acec04b8758", - "OrganizationName": "Wekiva Springs Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", + "OrganizationName": "Memphis Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/77dac999-efa0-4be5-84eb-7acec04b8758", - "OrganizationName": "Wekiva Springs Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", + "OrganizationName": "Memphis Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88bd2aad-ffa6-49ab-a50c-52e5eea9048c", - "OrganizationName": "Behavioral Health Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7979e254-4486-47d3-a278-c2d8f892a92c", + "OrganizationName": "Balance Hormone Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88bd2aad-ffa6-49ab-a50c-52e5eea9048c", - "OrganizationName": "Behavioral Health Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7979e254-4486-47d3-a278-c2d8f892a92c", + "OrganizationName": "Balance Hormone Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", - "OrganizationName": "Beverly medical care plcc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88bd2aad-ffa6-49ab-a50c-52e5eea9048c", + "OrganizationName": "Behavioral Health Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", - "OrganizationName": "Beverly medical care plcc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88bd2aad-ffa6-49ab-a50c-52e5eea9048c", + "OrganizationName": "Behavioral Health Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -16069,26 +15805,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8d59c40a-1e9f-4af2-9d52-95fa3bff80dd", - "OrganizationName": "Swedish American Health System", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8d59c40a-1e9f-4af2-9d52-95fa3bff80dd", - "OrganizationName": "Swedish American Health System", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", - "OrganizationName": "ubah gaani Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1343b38a-101a-4c0c-aea3-114546894de0", + "OrganizationName": "clarksville internal medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", - "OrganizationName": "ubah gaani Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1343b38a-101a-4c0c-aea3-114546894de0", + "OrganizationName": "clarksville internal medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -16105,14 +15829,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1343b38a-101a-4c0c-aea3-114546894de0", - "OrganizationName": "clarksville internal medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", + "OrganizationName": "ubah gaani Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1343b38a-101a-4c0c-aea3-114546894de0", - "OrganizationName": "clarksville internal medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", + "OrganizationName": "ubah gaani Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16152,6 +15876,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", + "OrganizationName": "Clinica Medica De la Mora Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", + "OrganizationName": "Clinica Medica De la Mora Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f527ef98-4845-462d-a379-aa91fc089b33", "OrganizationName": "Legacy Foot and Ankle Center", @@ -16189,26 +15925,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", - "OrganizationName": "Clinica Medica De la Mora Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", - "OrganizationName": "Clinica Medica De la Mora Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/63a7f8c2-c702-485a-bfd0-8ac5141f5cd6", - "OrganizationName": "Hackensack Cardiology Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", + "OrganizationName": "Ida Wallace Bennett Family Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/63a7f8c2-c702-485a-bfd0-8ac5141f5cd6", - "OrganizationName": "Hackensack Cardiology Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", + "OrganizationName": "Ida Wallace Bennett Family Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -16225,14 +15949,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", - "OrganizationName": "Ida Wallace Bennett Family Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/63a7f8c2-c702-485a-bfd0-8ac5141f5cd6", + "OrganizationName": "Hackensack Cardiology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", - "OrganizationName": "Ida Wallace Bennett Family Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/63a7f8c2-c702-485a-bfd0-8ac5141f5cd6", + "OrganizationName": "Hackensack Cardiology Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -16273,20 +15997,8 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/442e0978-ddef-4093-ba0b-409c597691f0", - "OrganizationName": "Patriot Medical P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/442e0978-ddef-4093-ba0b-409c597691f0", - "OrganizationName": "Patriot Medical P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b057c6d3-c332-4afb-a2a2-b1dec021c937", - "OrganizationName": "NEA Aesthetics Company", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b057c6d3-c332-4afb-a2a2-b1dec021c937", + "OrganizationName": "NEA Aesthetics Company", "NPIID": "", "OrganizationZipCode": "" }, @@ -16297,14 +16009,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/75f84f4b-2f88-474b-8b0a-1b83224b9599", - "OrganizationName": "TLC 4 Feet Podiatry PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/442e0978-ddef-4093-ba0b-409c597691f0", + "OrganizationName": "Patriot Medical P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/75f84f4b-2f88-474b-8b0a-1b83224b9599", - "OrganizationName": "TLC 4 Feet Podiatry PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/442e0978-ddef-4093-ba0b-409c597691f0", + "OrganizationName": "Patriot Medical P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -16321,14 +16033,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a86372fe-e0dd-45da-bda1-194c4b402414", - "OrganizationName": "Mark Quinlan MD, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/92a64e34-b149-47ab-a503-b6671b5b8691", + "OrganizationName": "Northcoast Pain Management Associates,inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a86372fe-e0dd-45da-bda1-194c4b402414", - "OrganizationName": "Mark Quinlan MD, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/92a64e34-b149-47ab-a503-b6671b5b8691", + "OrganizationName": "Northcoast Pain Management Associates,inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -16345,38 +16057,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/92a64e34-b149-47ab-a503-b6671b5b8691", - "OrganizationName": "Northcoast Pain Management Associates,inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a86372fe-e0dd-45da-bda1-194c4b402414", + "OrganizationName": "Mark Quinlan MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/92a64e34-b149-47ab-a503-b6671b5b8691", - "OrganizationName": "Northcoast Pain Management Associates,inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a86372fe-e0dd-45da-bda1-194c4b402414", + "OrganizationName": "Mark Quinlan MD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", - "OrganizationName": "Issan Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/75f84f4b-2f88-474b-8b0a-1b83224b9599", + "OrganizationName": "TLC 4 Feet Podiatry PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", - "OrganizationName": "Issan Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/75f84f4b-2f88-474b-8b0a-1b83224b9599", + "OrganizationName": "TLC 4 Feet Podiatry PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5436e149-e866-4b22-b3e8-9713d9bb03b7", - "OrganizationName": "John Villanueva MD Pain and Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", + "OrganizationName": "Issan Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5436e149-e866-4b22-b3e8-9713d9bb03b7", - "OrganizationName": "John Villanueva MD Pain and Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", + "OrganizationName": "Issan Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -16404,6 +16116,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5436e149-e866-4b22-b3e8-9713d9bb03b7", + "OrganizationName": "John Villanueva MD Pain and Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5436e149-e866-4b22-b3e8-9713d9bb03b7", + "OrganizationName": "John Villanueva MD Pain and Spine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6fc4ced4-5b1c-49c8-9701-1162e387ecec", "OrganizationName": "St. Luke Heart Institute", @@ -16416,6 +16140,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/11016a9a-668b-43fc-9588-cba105826a1c", + "OrganizationName": "Linda St. Martin DPM PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/11016a9a-668b-43fc-9588-cba105826a1c", + "OrganizationName": "Linda St. Martin DPM PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6b71b3b6-64c0-43ce-a7c3-9b4990f1691b", "OrganizationName": "Artery and Vein Institute", @@ -16453,26 +16189,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/11016a9a-668b-43fc-9588-cba105826a1c", - "OrganizationName": "Linda St. Martin DPM PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/11016a9a-668b-43fc-9588-cba105826a1c", - "OrganizationName": "Linda St. Martin DPM PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ba526eaf-14a7-4b76-a981-abb41739e241", - "OrganizationName": "Spartz Vein Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", + "OrganizationName": "Henry Miller, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ba526eaf-14a7-4b76-a981-abb41739e241", - "OrganizationName": "Spartz Vein Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", + "OrganizationName": "Henry Miller, DPM", "NPIID": "", "OrganizationZipCode": "" }, @@ -16501,98 +16225,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/27696e97-feab-46d1-8fa1-38928fc4a9f4", - "OrganizationName": "MediCo Healthcare, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ba526eaf-14a7-4b76-a981-abb41739e241", + "OrganizationName": "Spartz Vein Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/27696e97-feab-46d1-8fa1-38928fc4a9f4", - "OrganizationName": "MediCo Healthcare, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ba526eaf-14a7-4b76-a981-abb41739e241", + "OrganizationName": "Spartz Vein Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", - "OrganizationName": "Henry Miller, DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", - "OrganizationName": "Henry Miller, DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/db08d592-f9f5-4403-a3a7-2139ea007a5a", - "OrganizationName": "Magus Medical Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/db08d592-f9f5-4403-a3a7-2139ea007a5a", - "OrganizationName": "Magus Medical Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", - "OrganizationName": "Mercy Health Clinic of North Wake", + "URL": "https://api.patientfusion.com/fhir/r4/v1/27696e97-feab-46d1-8fa1-38928fc4a9f4", + "OrganizationName": "MediCo Healthcare, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", - "OrganizationName": "Mercy Health Clinic of North Wake", + "URL": "https://api.practicefusion.com/fhir/r4/v1/27696e97-feab-46d1-8fa1-38928fc4a9f4", + "OrganizationName": "MediCo Healthcare, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4d676030-1e4c-4652-bde1-d357fa2487c7", - "OrganizationName": "Grace Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/db08d592-f9f5-4403-a3a7-2139ea007a5a", + "OrganizationName": "Magus Medical Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4d676030-1e4c-4652-bde1-d357fa2487c7", - "OrganizationName": "Grace Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/db08d592-f9f5-4403-a3a7-2139ea007a5a", + "OrganizationName": "Magus Medical Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", - "OrganizationName": "McGinnis MICA Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4d676030-1e4c-4652-bde1-d357fa2487c7", + "OrganizationName": "Grace Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", - "OrganizationName": "McGinnis MICA Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4d676030-1e4c-4652-bde1-d357fa2487c7", + "OrganizationName": "Grace Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", - "OrganizationName": "Impact Psychiatric Care, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", + "OrganizationName": "My Endocrinologist PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", - "OrganizationName": "Impact Psychiatric Care, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", + "OrganizationName": "My Endocrinologist PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", - "OrganizationName": "My Endocrinologist PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", + "OrganizationName": "Impact Psychiatric Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", - "OrganizationName": "My Endocrinologist PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", + "OrganizationName": "Impact Psychiatric Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16609,14 +16333,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", - "OrganizationName": "Staton Southern Medical, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/48a5bd78-0b61-4846-bbd6-33e5fed3aeb8", + "OrganizationName": "Jana Antonelli Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", - "OrganizationName": "Staton Southern Medical, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/48a5bd78-0b61-4846-bbd6-33e5fed3aeb8", + "OrganizationName": "Jana Antonelli Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16632,18 +16356,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", - "OrganizationName": "Alltyr Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", - "OrganizationName": "Alltyr Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", "OrganizationName": "Florida New Vision Inc", @@ -16657,26 +16369,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", - "OrganizationName": "Get Well Family Practice Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", + "OrganizationName": "Staton Southern Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", - "OrganizationName": "Get Well Family Practice Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", + "OrganizationName": "Staton Southern Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/48a5bd78-0b61-4846-bbd6-33e5fed3aeb8", - "OrganizationName": "Jana Antonelli Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", + "OrganizationName": "Alltyr Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/48a5bd78-0b61-4846-bbd6-33e5fed3aeb8", - "OrganizationName": "Jana Antonelli Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", + "OrganizationName": "Alltyr Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -16692,6 +16404,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", + "OrganizationName": "Get Well Family Practice Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", + "OrganizationName": "Get Well Family Practice Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/25f17e16-5680-4138-9de8-6a062f29e842", "OrganizationName": "Northwest Endovascular Surgery", @@ -16728,6 +16452,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c6d34564-3932-4b1d-b69f-a7cfd3f5e425", "OrganizationName": "BAY AREA HOME CARE MEDICAL GROUP", @@ -16741,14 +16477,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", - "OrganizationName": "Stephen I. Proctor, MD FACOG", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", - "OrganizationName": "Stephen I. Proctor, MD FACOG", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", "NPIID": "", "OrganizationZipCode": "" }, @@ -16764,6 +16500,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", "OrganizationName": "Vivette Fletcher-Harriott Practice", @@ -16789,14 +16537,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", - "OrganizationName": "ascend mental health management", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e788aae7-a560-418d-bc3b-3d7529d5bb58", + "OrganizationName": "Preventative Medicine and Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", - "OrganizationName": "ascend mental health management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e788aae7-a560-418d-bc3b-3d7529d5bb58", + "OrganizationName": "Preventative Medicine and Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -16813,38 +16561,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", - "OrganizationName": "De Soto IMS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", - "OrganizationName": "De Soto IMS", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e788aae7-a560-418d-bc3b-3d7529d5bb58", - "OrganizationName": "Preventative Medicine and Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e788aae7-a560-418d-bc3b-3d7529d5bb58", - "OrganizationName": "Preventative Medicine and Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", - "OrganizationName": "Central Coast Housecalls", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", - "OrganizationName": "Central Coast Housecalls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "NPIID": "", "OrganizationZipCode": "" }, @@ -16896,6 +16620,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/fd693f1a-d3c8-49ad-ad36-dfba5f4afca9", + "OrganizationName": "Al Shehada", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fd693f1a-d3c8-49ad-ad36-dfba5f4afca9", + "OrganizationName": "Al Shehada", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", "OrganizationName": "Boden Health System", @@ -16932,18 +16668,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fd693f1a-d3c8-49ad-ad36-dfba5f4afca9", - "OrganizationName": "Al Shehada", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fd693f1a-d3c8-49ad-ad36-dfba5f4afca9", - "OrganizationName": "Al Shehada", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", "OrganizationName": "Margaret N Alexander MD PC", @@ -16980,18 +16704,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/143a1716-fa7a-48e7-b70b-dbb8ec113f1a", - "OrganizationName": "Greenlake Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/143a1716-fa7a-48e7-b70b-dbb8ec113f1a", - "OrganizationName": "Greenlake Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", "OrganizationName": "Tranquility Psychiatry and Counseling Services", @@ -17004,18 +16716,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", - "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", - "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", "OrganizationName": "Starting New Collaborative, LLC", @@ -17029,26 +16729,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a0cd3b0-3abe-4337-ae45-b677885eddf1", - "OrganizationName": "Heidi Goldberg MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/143a1716-fa7a-48e7-b70b-dbb8ec113f1a", + "OrganizationName": "Greenlake Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a0cd3b0-3abe-4337-ae45-b677885eddf1", - "OrganizationName": "Heidi Goldberg MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/143a1716-fa7a-48e7-b70b-dbb8ec113f1a", + "OrganizationName": "Greenlake Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be349116-094a-44fc-acfc-9359d7c0e7dd", - "OrganizationName": "Optimal Health Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a0cd3b0-3abe-4337-ae45-b677885eddf1", + "OrganizationName": "Heidi Goldberg MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be349116-094a-44fc-acfc-9359d7c0e7dd", - "OrganizationName": "Optimal Health Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a0cd3b0-3abe-4337-ae45-b677885eddf1", + "OrganizationName": "Heidi Goldberg MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -17076,6 +16776,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/be349116-094a-44fc-acfc-9359d7c0e7dd", + "OrganizationName": "Optimal Health Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/be349116-094a-44fc-acfc-9359d7c0e7dd", + "OrganizationName": "Optimal Health Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", + "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", + "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8c392a5e-fed0-42ac-bf9d-448967efa2a7", "OrganizationName": "Nader Doctors", @@ -17114,49 +16838,49 @@ }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/71effef3-941e-4d28-a38a-ba9f2edda332", - "OrganizationName": "Shelley Roby Practice", + "OrganizationName": "Mercy Family Medicine and Wellness Center (Shelley Roby NP)", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.practicefusion.com/fhir/r4/v1/71effef3-941e-4d28-a38a-ba9f2edda332", - "OrganizationName": "Shelley Roby Practice", + "OrganizationName": "Mercy Family Medicine and Wellness Center (Shelley Roby NP)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e72271c2-49c3-441a-912c-b79555382281", - "OrganizationName": "Frame Internal Medicine Group PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e1efa61-cedf-433f-b1f5-de6b45b7f6a1", + "OrganizationName": "Arbi Khodadadi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e72271c2-49c3-441a-912c-b79555382281", - "OrganizationName": "Frame Internal Medicine Group PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6e1efa61-cedf-433f-b1f5-de6b45b7f6a1", + "OrganizationName": "Arbi Khodadadi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e1efa61-cedf-433f-b1f5-de6b45b7f6a1", - "OrganizationName": "Arbi Khodadadi Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e72271c2-49c3-441a-912c-b79555382281", + "OrganizationName": "Frame Internal Medicine Group PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6e1efa61-cedf-433f-b1f5-de6b45b7f6a1", - "OrganizationName": "Arbi Khodadadi Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e72271c2-49c3-441a-912c-b79555382281", + "OrganizationName": "Frame Internal Medicine Group PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9d194b42-a5b9-4a58-a853-3567d2c58299", - "OrganizationName": "Lifehouse Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fea3e15e-4629-41ae-ae0a-a0cc24dc09b8", + "OrganizationName": "Mark H. Vine, MD, FACS Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9d194b42-a5b9-4a58-a853-3567d2c58299", - "OrganizationName": "Lifehouse Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fea3e15e-4629-41ae-ae0a-a0cc24dc09b8", + "OrganizationName": "Mark H. Vine, MD, FACS Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -17173,14 +16897,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fea3e15e-4629-41ae-ae0a-a0cc24dc09b8", - "OrganizationName": "Mark H. Vine, MD, FACS Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d194b42-a5b9-4a58-a853-3567d2c58299", + "OrganizationName": "Lifehouse Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fea3e15e-4629-41ae-ae0a-a0cc24dc09b8", - "OrganizationName": "Mark H. Vine, MD, FACS Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d194b42-a5b9-4a58-a853-3567d2c58299", + "OrganizationName": "Lifehouse Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -17197,14 +16921,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", - "OrganizationName": "frankin medical center Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", - "OrganizationName": "frankin medical center Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "NPIID": "", "OrganizationZipCode": "" }, @@ -17221,38 +16945,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", - "OrganizationName": "Samina Ansar Ghazi MDPC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", + "OrganizationName": "frankin medical center Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", - "OrganizationName": "Samina Ansar Ghazi MDPC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", + "OrganizationName": "frankin medical center Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", - "OrganizationName": "APRN Jesus Ramos", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", + "OrganizationName": "A\u0026R Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", - "OrganizationName": "APRN Jesus Ramos", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", + "OrganizationName": "A\u0026R Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", - "OrganizationName": "A\u0026R Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", - "OrganizationName": "A\u0026R Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17293,26 +17017,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", - "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", + "OrganizationName": "Aviation Trucking Physical Exams LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", - "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", + "OrganizationName": "Aviation Trucking Physical Exams LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", - "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", + "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", - "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", + "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, @@ -17329,50 +17053,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", - "OrganizationName": "Internal Medicine Perioperative Consultansts", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", - "OrganizationName": "Internal Medicine Perioperative Consultansts", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", - "OrganizationName": "Nirvana Aesthetics Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", - "OrganizationName": "Nirvana Aesthetics Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", - "OrganizationName": "Aviation Trucking Physical Exams LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", - "OrganizationName": "Aviation Trucking Physical Exams LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", - "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", + "OrganizationName": "Internal Medicine Perioperative Consultansts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", - "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", + "OrganizationName": "Internal Medicine Perioperative Consultansts", "NPIID": "", "OrganizationZipCode": "" }, @@ -17401,14 +17113,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", - "OrganizationName": "Vanguard Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", + "OrganizationName": "Nirvana Aesthetics Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", - "OrganizationName": "Vanguard Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", + "OrganizationName": "Nirvana Aesthetics Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", + "OrganizationName": "Michael Maywood, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", + "OrganizationName": "Michael Maywood, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -17425,14 +17149,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", - "OrganizationName": "Michael Maywood, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", + "OrganizationName": "Vanguard Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", - "OrganizationName": "Michael Maywood, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", + "OrganizationName": "Vanguard Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -17460,6 +17184,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", + "OrganizationName": "Alok Shukla, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", + "OrganizationName": "Alok Shukla, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", + "OrganizationName": "Long Island Infectious Disease Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", + "OrganizationName": "Long Island Infectious Disease Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", "OrganizationName": "Mount pleasant medical associates", @@ -17508,18 +17256,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e055ff7-1598-4bfa-9f87-4d108af37ff8", - "OrganizationName": "Medical Anti-Aging LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e055ff7-1598-4bfa-9f87-4d108af37ff8", - "OrganizationName": "Medical Anti-Aging LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0079202c-f0b0-4ea6-891f-9e3f57cd3d35", "OrganizationName": "Minnesota Behavioral Health", @@ -17533,26 +17269,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", - "OrganizationName": "Long Island Infectious Disease Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e055ff7-1598-4bfa-9f87-4d108af37ff8", + "OrganizationName": "Medical Anti-Aging LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", - "OrganizationName": "Long Island Infectious Disease Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e055ff7-1598-4bfa-9f87-4d108af37ff8", + "OrganizationName": "Medical Anti-Aging LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17617,26 +17341,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eed14848-aab2-4c95-8efa-dca1c2704b5a", - "OrganizationName": "One 2 Wellness Family \u0026 Obesity Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", + "OrganizationName": "Best care Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eed14848-aab2-4c95-8efa-dca1c2704b5a", - "OrganizationName": "One 2 Wellness Family \u0026 Obesity Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", + "OrganizationName": "Best care Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/628bb36e-5259-4ce4-9c36-a09a92f454fe", - "OrganizationName": "Onyx First Responder Medical Florida", + "URL": "https://api.patientfusion.com/fhir/r4/v1/088016fc-b29b-42fc-9abe-e8590a5a7744", + "OrganizationName": "Amerihealth Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/628bb36e-5259-4ce4-9c36-a09a92f454fe", - "OrganizationName": "Onyx First Responder Medical Florida", + "URL": "https://api.practicefusion.com/fhir/r4/v1/088016fc-b29b-42fc-9abe-e8590a5a7744", + "OrganizationName": "Amerihealth Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -17653,74 +17377,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/088016fc-b29b-42fc-9abe-e8590a5a7744", - "OrganizationName": "Amerihealth Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eed14848-aab2-4c95-8efa-dca1c2704b5a", + "OrganizationName": "One 2 Wellness Family \u0026 Obesity Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/088016fc-b29b-42fc-9abe-e8590a5a7744", - "OrganizationName": "Amerihealth Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eed14848-aab2-4c95-8efa-dca1c2704b5a", + "OrganizationName": "One 2 Wellness Family \u0026 Obesity Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", - "OrganizationName": "Best care Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/628bb36e-5259-4ce4-9c36-a09a92f454fe", + "OrganizationName": "Onyx First Responder Medical Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", - "OrganizationName": "Best care Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/628bb36e-5259-4ce4-9c36-a09a92f454fe", + "OrganizationName": "Onyx First Responder Medical Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", - "OrganizationName": "Ambulatory Medical LTD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/75e9016d-ae7b-4324-84d9-0e700c917c5f", + "OrganizationName": "DOCTORS OF INTERNAL MEDICINE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", - "OrganizationName": "Ambulatory Medical LTD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/75e9016d-ae7b-4324-84d9-0e700c917c5f", + "OrganizationName": "DOCTORS OF INTERNAL MEDICINE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/75e9016d-ae7b-4324-84d9-0e700c917c5f", - "OrganizationName": "DOCTORS OF INTERNAL MEDICINE PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a89181f1-c777-4b96-af90-8bd719fde450", + "OrganizationName": "Jan Hamilton Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/75e9016d-ae7b-4324-84d9-0e700c917c5f", - "OrganizationName": "DOCTORS OF INTERNAL MEDICINE PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a89181f1-c777-4b96-af90-8bd719fde450", + "OrganizationName": "Jan Hamilton Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", - "OrganizationName": "Rochester Internists PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", - "OrganizationName": "Rochester Internists PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/51f9d969-3a58-47fb-8370-bb12875c02e2", - "OrganizationName": "Genesee Lung Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/51f9d969-3a58-47fb-8370-bb12875c02e2", - "OrganizationName": "Genesee Lung Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17737,98 +17461,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a89181f1-c777-4b96-af90-8bd719fde450", - "OrganizationName": "Jan Hamilton Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a89181f1-c777-4b96-af90-8bd719fde450", - "OrganizationName": "Jan Hamilton Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", - "OrganizationName": "ROCK Recovery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", + "OrganizationName": "Family Podiatry of Central Florida, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", - "OrganizationName": "ROCK Recovery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", + "OrganizationName": "Family Podiatry of Central Florida, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eafe7e5a-5968-4056-b940-fed3865676d1", - "OrganizationName": "Assess Hawaii", + "URL": "https://api.patientfusion.com/fhir/r4/v1/51f9d969-3a58-47fb-8370-bb12875c02e2", + "OrganizationName": "Genesee Lung Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eafe7e5a-5968-4056-b940-fed3865676d1", - "OrganizationName": "Assess Hawaii", + "URL": "https://api.practicefusion.com/fhir/r4/v1/51f9d969-3a58-47fb-8370-bb12875c02e2", + "OrganizationName": "Genesee Lung Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", - "OrganizationName": "Family Podiatry of Central Florida, P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eafe7e5a-5968-4056-b940-fed3865676d1", + "OrganizationName": "Assess Hawaii", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", - "OrganizationName": "Family Podiatry of Central Florida, P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eafe7e5a-5968-4056-b940-fed3865676d1", + "OrganizationName": "Assess Hawaii", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd14ee1-2d66-462a-a113-a285843a085d", - "OrganizationName": "Michigan Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cdd14ee1-2d66-462a-a113-a285843a085d", - "OrganizationName": "Michigan Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/26a36b97-6f61-4532-80b2-113635ae9eed", - "OrganizationName": "marcel elanjian DO", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/26a36b97-6f61-4532-80b2-113635ae9eed", - "OrganizationName": "marcel elanjian DO", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", - "OrganizationName": "Crafted Sustainable Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd14ee1-2d66-462a-a113-a285843a085d", + "OrganizationName": "Michigan Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", - "OrganizationName": "Crafted Sustainable Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cdd14ee1-2d66-462a-a113-a285843a085d", + "OrganizationName": "Michigan Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/729247c8-c850-44c6-9e8f-27ba6a164843", - "OrganizationName": "Women's Preventive Care Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/26a36b97-6f61-4532-80b2-113635ae9eed", + "OrganizationName": "marcel elanjian DO", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/729247c8-c850-44c6-9e8f-27ba6a164843", - "OrganizationName": "Women's Preventive Care Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/26a36b97-6f61-4532-80b2-113635ae9eed", + "OrganizationName": "marcel elanjian DO", "NPIID": "", "OrganizationZipCode": "" }, @@ -17856,18 +17580,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", - "OrganizationName": "Heimdall Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", - "OrganizationName": "Heimdall Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", "OrganizationName": "Legacy Medical Center", @@ -17893,26 +17605,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", - "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "URL": "https://api.patientfusion.com/fhir/r4/v1/729247c8-c850-44c6-9e8f-27ba6a164843", + "OrganizationName": "Women's Preventive Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", - "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "URL": "https://api.practicefusion.com/fhir/r4/v1/729247c8-c850-44c6-9e8f-27ba6a164843", + "OrganizationName": "Women's Preventive Care Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -17952,6 +17652,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", + "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", + "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9f75b27f-c7ee-44d9-ab68-2279da9d3129", "OrganizationName": "Sharad Sahu MD", @@ -18013,38 +17737,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/baec738e-7339-4628-b74f-55ff01318f28", - "OrganizationName": "North Port \u0026 Englewood Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d5321e22-0552-4bda-bc2c-8ee8aca938ad", + "OrganizationName": "Andres M. Pereira, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/baec738e-7339-4628-b74f-55ff01318f28", - "OrganizationName": "North Port \u0026 Englewood Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d5321e22-0552-4bda-bc2c-8ee8aca938ad", + "OrganizationName": "Andres M. Pereira, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", - "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/baec738e-7339-4628-b74f-55ff01318f28", + "OrganizationName": "North Port \u0026 Englewood Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", - "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d5321e22-0552-4bda-bc2c-8ee8aca938ad", - "OrganizationName": "Andres M. Pereira, M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d5321e22-0552-4bda-bc2c-8ee8aca938ad", - "OrganizationName": "Andres M. Pereira, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/baec738e-7339-4628-b74f-55ff01318f28", + "OrganizationName": "North Port \u0026 Englewood Podiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -18061,26 +17773,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d85967c0-f3bd-4425-bfd7-a2486c18c57b", - "OrganizationName": "Apex Medical, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d85967c0-f3bd-4425-bfd7-a2486c18c57b", - "OrganizationName": "Apex Medical, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78b8519d-5582-483f-971a-c895ae49fd14", - "OrganizationName": "Evolve Hydration and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", + "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78b8519d-5582-483f-971a-c895ae49fd14", - "OrganizationName": "Evolve Hydration and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", + "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -18121,14 +17821,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1d206a2b-51a1-4ae6-8dd8-4bc6163a48b5", - "OrganizationName": "New Perspectives Behavioral Health \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", + "OrganizationName": "Healing Waters Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1d206a2b-51a1-4ae6-8dd8-4bc6163a48b5", - "OrganizationName": "New Perspectives Behavioral Health \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", + "OrganizationName": "Healing Waters Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18145,14 +17845,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", - "OrganizationName": "Healing Waters Wellness Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d85967c0-f3bd-4425-bfd7-a2486c18c57b", + "OrganizationName": "Apex Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", - "OrganizationName": "Healing Waters Wellness Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d85967c0-f3bd-4425-bfd7-a2486c18c57b", + "OrganizationName": "Apex Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d206a2b-51a1-4ae6-8dd8-4bc6163a48b5", + "OrganizationName": "New Perspectives Behavioral Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d206a2b-51a1-4ae6-8dd8-4bc6163a48b5", + "OrganizationName": "New Perspectives Behavioral Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -18181,86 +17893,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", - "OrganizationName": "Mindful Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", - "OrganizationName": "Mindful Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/288884ba-d300-47d5-adc6-a9bda6b6b3b4", - "OrganizationName": "Lake Nona Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/288884ba-d300-47d5-adc6-a9bda6b6b3b4", - "OrganizationName": "Lake Nona Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", - "OrganizationName": "Janice Soto Morales Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", + "OrganizationName": "Mindful Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", - "OrganizationName": "Janice Soto Morales Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", + "OrganizationName": "Mindful Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", - "OrganizationName": "UZMA NASIM MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/288884ba-d300-47d5-adc6-a9bda6b6b3b4", + "OrganizationName": "Lake Nona Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", - "OrganizationName": "UZMA NASIM MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/288884ba-d300-47d5-adc6-a9bda6b6b3b4", + "OrganizationName": "Lake Nona Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", - "OrganizationName": "Procare Medical Group Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", + "OrganizationName": "Hillsboro Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", - "OrganizationName": "Procare Medical Group Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", + "OrganizationName": "Hillsboro Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", - "OrganizationName": "St Joe Health Care and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", - "OrganizationName": "St Joe Health Care and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", - "OrganizationName": "Practice By Knight", + "URL": "https://api.patientfusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", + "OrganizationName": "Janice Soto Morales Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", - "OrganizationName": "Practice By Knight", + "URL": "https://api.practicefusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", + "OrganizationName": "Janice Soto Morales Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18277,14 +17989,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", - "OrganizationName": "Hillsboro Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", - "OrganizationName": "Hillsboro Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -18312,6 +18024,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", + "OrganizationName": "Psychiatric Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", + "OrganizationName": "Psychiatric Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/09408291-64c3-4f19-a3ba-42087b5a8e4e", "OrganizationName": "CarefreewalkLLC Carefreewalk Practice", @@ -18325,14 +18049,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", - "OrganizationName": "Psychiatric Services LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", + "OrganizationName": "BG Tricounty Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", - "OrganizationName": "Psychiatric Services LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", + "OrganizationName": "BG Tricounty Neurology", "NPIID": "", "OrganizationZipCode": "" }, @@ -18349,38 +18073,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", - "OrganizationName": "Baytown Occupational and Family Medicine, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", + "OrganizationName": "Cape Diabetes and Endocrinology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", - "OrganizationName": "Baytown Occupational and Family Medicine, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", + "OrganizationName": "Cape Diabetes and Endocrinology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", - "OrganizationName": "BG Tricounty Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", + "OrganizationName": "Baytown Occupational and Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", - "OrganizationName": "BG Tricounty Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", + "OrganizationName": "Baytown Occupational and Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", - "OrganizationName": "Cape Diabetes and Endocrinology PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", + "OrganizationName": "Rejuvenation Skin Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", - "OrganizationName": "Cape Diabetes and Endocrinology PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", + "OrganizationName": "Rejuvenation Skin Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -18397,26 +18121,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", - "OrganizationName": "Rejuvenation Skin Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", + "OrganizationName": "ATA Practitioners Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", - "OrganizationName": "Rejuvenation Skin Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", + "OrganizationName": "ATA Practitioners Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", - "OrganizationName": "ATA Practitioners Management LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5956677c-3838-453d-8def-d4cba9779745", + "OrganizationName": "EB Consulting PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", - "OrganizationName": "ATA Practitioners Management LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5956677c-3838-453d-8def-d4cba9779745", + "OrganizationName": "EB Consulting PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18457,26 +18181,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eef78bcb-1edc-43e6-acd5-cea8201162c8", - "OrganizationName": "Courtney Hunter ARNP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", + "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eef78bcb-1edc-43e6-acd5-cea8201162c8", - "OrganizationName": "Courtney Hunter ARNP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", + "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5956677c-3838-453d-8def-d4cba9779745", - "OrganizationName": "Mind Apple Behavioral Health Services LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eef78bcb-1edc-43e6-acd5-cea8201162c8", + "OrganizationName": "Courtney Hunter ARNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5956677c-3838-453d-8def-d4cba9779745", - "OrganizationName": "Mind Apple Behavioral Health Services LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eef78bcb-1edc-43e6-acd5-cea8201162c8", + "OrganizationName": "Courtney Hunter ARNP", "NPIID": "", "OrganizationZipCode": "" }, @@ -18492,18 +18216,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c7e3951d-f4f9-4fca-9c55-202b6948dc27", "OrganizationName": "Lehigh Valley Wellness", @@ -18529,62 +18241,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", - "OrganizationName": "HEA Consulting", + "URL": "https://api.patientfusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", + "OrganizationName": "Junaid Qureshi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", - "OrganizationName": "HEA Consulting", + "URL": "https://api.practicefusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", + "OrganizationName": "Junaid Qureshi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", - "OrganizationName": "B K Chhabra LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a1ac4bd-5aa1-417f-8446-4d7ac627b114", + "OrganizationName": "We Do Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", - "OrganizationName": "B K Chhabra LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a1ac4bd-5aa1-417f-8446-4d7ac627b114", + "OrganizationName": "We Do Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", - "OrganizationName": "Junaid Qureshi Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", - "OrganizationName": "Junaid Qureshi Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/68d22a68-5cac-4d54-a443-fbfc3252faa5", - "OrganizationName": "UW Health System", + "URL": "https://api.patientfusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", + "OrganizationName": "B K Chhabra LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/68d22a68-5cac-4d54-a443-fbfc3252faa5", - "OrganizationName": "UW Health System", + "URL": "https://api.practicefusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", + "OrganizationName": "B K Chhabra LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a1ac4bd-5aa1-417f-8446-4d7ac627b114", - "OrganizationName": "We Do Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/68d22a68-5cac-4d54-a443-fbfc3252faa5", + "OrganizationName": "UW Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a1ac4bd-5aa1-417f-8446-4d7ac627b114", - "OrganizationName": "We Do Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/68d22a68-5cac-4d54-a443-fbfc3252faa5", + "OrganizationName": "UW Health System", "NPIID": "", "OrganizationZipCode": "" }, @@ -18600,6 +18312,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", + "OrganizationName": "Jackson M. Lim, D.P.M.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", + "OrganizationName": "Jackson M. Lim, D.P.M.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/34784e5f-e0c4-422b-a25f-dea0643eca1a", "OrganizationName": "Pricare Medical Center", @@ -18624,18 +18348,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", - "OrganizationName": "Jackson M. Lim, D.P.M.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", - "OrganizationName": "Jackson M. Lim, D.P.M.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", "OrganizationName": "Quality Care Access, PLLC", @@ -18673,38 +18385,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46d2f08b-3200-4400-ab8a-b0c3b69423e8", - "OrganizationName": "Indiana Exceptional Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a88d73c5-de8e-4ca5-9bcd-0e3fe9f6c411", + "OrganizationName": "Polaris Heart and Vascular, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46d2f08b-3200-4400-ab8a-b0c3b69423e8", - "OrganizationName": "Indiana Exceptional Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a88d73c5-de8e-4ca5-9bcd-0e3fe9f6c411", + "OrganizationName": "Polaris Heart and Vascular, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/22919b15-625b-43c8-b71d-3352ae0e3ba5", - "OrganizationName": "Social Care Services, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46d2f08b-3200-4400-ab8a-b0c3b69423e8", + "OrganizationName": "Indiana Exceptional Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/22919b15-625b-43c8-b71d-3352ae0e3ba5", - "OrganizationName": "Social Care Services, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46d2f08b-3200-4400-ab8a-b0c3b69423e8", + "OrganizationName": "Indiana Exceptional Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a88d73c5-de8e-4ca5-9bcd-0e3fe9f6c411", - "OrganizationName": "Polaris Heart and Vascular, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/22919b15-625b-43c8-b71d-3352ae0e3ba5", + "OrganizationName": "Social Care Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a88d73c5-de8e-4ca5-9bcd-0e3fe9f6c411", - "OrganizationName": "Polaris Heart and Vascular, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/22919b15-625b-43c8-b71d-3352ae0e3ba5", + "OrganizationName": "Social Care Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18733,26 +18445,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/733bf15d-f34e-41a1-b1f5-04e599a9c603", - "OrganizationName": "HEALTH POWERS LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/95bebac3-7faa-40fb-87a4-874c584d5efe", + "OrganizationName": "Grace Medical Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/733bf15d-f34e-41a1-b1f5-04e599a9c603", - "OrganizationName": "HEALTH POWERS LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/95bebac3-7faa-40fb-87a4-874c584d5efe", + "OrganizationName": "Grace Medical Group, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/95bebac3-7faa-40fb-87a4-874c584d5efe", - "OrganizationName": "Grace Medical Group, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/733bf15d-f34e-41a1-b1f5-04e599a9c603", + "OrganizationName": "HEALTH POWERS LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/95bebac3-7faa-40fb-87a4-874c584d5efe", - "OrganizationName": "Grace Medical Group, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/733bf15d-f34e-41a1-b1f5-04e599a9c603", + "OrganizationName": "HEALTH POWERS LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18811,2396 +18523,4796 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd1179de-9731-4242-8087-c30c7e0e4e42", - "OrganizationName": "Clinica Latina Familiar 2 LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd1179de-9731-4242-8087-c30c7e0e4e42", + "OrganizationName": "Clinica Latina Familiar 2 LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", + "OrganizationName": "Instant Medical Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", + "OrganizationName": "Instant Medical Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", + "OrganizationName": "Silkiss Eye Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", + "OrganizationName": "Silkiss Eye Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", + "OrganizationName": "Better Years Ahead Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", + "OrganizationName": "Better Years Ahead Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", + "OrganizationName": "Wellness Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", + "OrganizationName": "Wellness Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a57aea8b-ad22-42cd-99ec-30743b6b74c2", + "OrganizationName": "Urban Community physicians Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a57aea8b-ad22-42cd-99ec-30743b6b74c2", + "OrganizationName": "Urban Community physicians Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", + "OrganizationName": "Patriot Care Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", + "OrganizationName": "Patriot Care Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/75e9eb9a-ae5a-4cc0-8946-417b4328ea13", + "OrganizationName": "Robert Baklajian MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/75e9eb9a-ae5a-4cc0-8946-417b4328ea13", + "OrganizationName": "Robert Baklajian MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7dff017f-e196-4190-a315-d05f180121de", + "OrganizationName": "Wynn Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7dff017f-e196-4190-a315-d05f180121de", + "OrganizationName": "Wynn Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", + "OrganizationName": "Peter Sangra MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", + "OrganizationName": "Peter Sangra MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", + "OrganizationName": "1-2-3 pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", + "OrganizationName": "1-2-3 pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/337c6cf4-4ba8-453e-bef4-435e0feb1a32", + "OrganizationName": "Thomas B Faulkner, MD, AME", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/337c6cf4-4ba8-453e-bef4-435e0feb1a32", + "OrganizationName": "Thomas B Faulkner, MD, AME", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc4fac9e-053e-43f7-999a-e828f3940d81", + "OrganizationName": "KIDNEY CARE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc4fac9e-053e-43f7-999a-e828f3940d81", + "OrganizationName": "KIDNEY CARE ASSOCIATES", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d120da39-ed17-4ad1-873f-fbd23bd6c32f", + "OrganizationName": "Chandra Shekar, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d120da39-ed17-4ad1-873f-fbd23bd6c32f", + "OrganizationName": "Chandra Shekar, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bcaaf9a0-8087-412c-971d-d6cfca42bc32", + "OrganizationName": "J'Essential Health \u0026 Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bcaaf9a0-8087-412c-971d-d6cfca42bc32", + "OrganizationName": "J'Essential Health \u0026 Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/75d743e8-5cc2-4f0a-9a5a-abd6a15e7508", + "OrganizationName": "Diabetes Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/75d743e8-5cc2-4f0a-9a5a-abd6a15e7508", + "OrganizationName": "Diabetes Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/83585647-20c7-4cbe-94c8-5c6254e8c68c", + "OrganizationName": "Great Lakes Pediatric Cardiology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/83585647-20c7-4cbe-94c8-5c6254e8c68c", + "OrganizationName": "Great Lakes Pediatric Cardiology PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/243b9a19-0731-499f-a36e-f36deabbee23", + "OrganizationName": "Tisa Morris-Christian, M.D., MPH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/243b9a19-0731-499f-a36e-f36deabbee23", + "OrganizationName": "Tisa Morris-Christian, M.D., MPH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/53d08ab7-fd47-400d-a45c-035ad902f80f", + "OrganizationName": "Narsimha Gottam, M.D., F.A.C.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/53d08ab7-fd47-400d-a45c-035ad902f80f", + "OrganizationName": "Narsimha Gottam, M.D., F.A.C.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/aa1beb06-1273-4d02-be87-6b15b970cd92", + "OrganizationName": "Lydia Rodriguez Ortiz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/aa1beb06-1273-4d02-be87-6b15b970cd92", + "OrganizationName": "Lydia Rodriguez Ortiz", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f073e2ea-76b2-4a7e-905b-cc6ce96a5dd1", + "OrganizationName": "Connection NP Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f073e2ea-76b2-4a7e-905b-cc6ce96a5dd1", + "OrganizationName": "Connection NP Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ab7e1eb-a148-45e1-8365-641746736dc8", + "OrganizationName": "Dr. Minakshi Nijhawan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ab7e1eb-a148-45e1-8365-641746736dc8", + "OrganizationName": "Dr. Minakshi Nijhawan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", + "OrganizationName": "Cranmore Health Partners LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", + "OrganizationName": "Cranmore Health Partners LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e54c7436-7ea7-4685-bbd8-750cda14e19c", + "OrganizationName": "John E. Rivera Jr. Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e54c7436-7ea7-4685-bbd8-750cda14e19c", + "OrganizationName": "John E. Rivera Jr. Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e4508fca-f741-4318-a623-a219e096ebeb", + "OrganizationName": "Maria Elena Gadea Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e4508fca-f741-4318-a623-a219e096ebeb", + "OrganizationName": "Maria Elena Gadea Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", + "OrganizationName": "Santosh Pillai, D.O. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", + "OrganizationName": "Santosh Pillai, D.O. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", + "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", + "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", + "OrganizationName": "CA Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", + "OrganizationName": "CA Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c6ab0937-2837-4cfb-9434-6f774436c75f", + "OrganizationName": "Bayou Healthcare Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c6ab0937-2837-4cfb-9434-6f774436c75f", + "OrganizationName": "Bayou Healthcare Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", + "OrganizationName": "Carlos Arguedas MD Katella", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", + "OrganizationName": "Carlos Arguedas MD Katella", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/59c00f0b-acfa-4e3e-9454-60f8f379df6e", + "OrganizationName": "EAST COAST PHYSICIANS PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/59c00f0b-acfa-4e3e-9454-60f8f379df6e", + "OrganizationName": "EAST COAST PHYSICIANS PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/95b1ca64-e674-4d98-acc5-7324e5c713c7", + "OrganizationName": "Primary Care Partners PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/95b1ca64-e674-4d98-acc5-7324e5c713c7", + "OrganizationName": "Primary Care Partners PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/39696796-1139-4f93-ac4f-d63aac513f6f", + "OrganizationName": "Michaellaipract", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/39696796-1139-4f93-ac4f-d63aac513f6f", + "OrganizationName": "Michaellaipract", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c14ad499-c90b-49be-be10-fb11819e4774", + "OrganizationName": "Arizona City Health Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c14ad499-c90b-49be-be10-fb11819e4774", + "OrganizationName": "Arizona City Health Associates, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1c6c34ad-2c09-4aac-8ca6-3f6ccbc59260", + "OrganizationName": "Symbios Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1c6c34ad-2c09-4aac-8ca6-3f6ccbc59260", + "OrganizationName": "Symbios Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5f098b1a-5bfe-4061-b4d3-fdbb2478bd99", + "OrganizationName": "GBMC Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5f098b1a-5bfe-4061-b4d3-fdbb2478bd99", + "OrganizationName": "GBMC Health Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1dc8df89-b3b5-4391-8e58-76fcf8417c8b", + "OrganizationName": "Bazzi Podiatry, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1dc8df89-b3b5-4391-8e58-76fcf8417c8b", + "OrganizationName": "Bazzi Podiatry, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", + "OrganizationName": "Jay Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", + "OrganizationName": "Jay Medical, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", + "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", + "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3ee9f465-7ead-487d-bda1-cc978754f7db", + "OrganizationName": "Insight Family Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3ee9f465-7ead-487d-bda1-cc978754f7db", + "OrganizationName": "Insight Family Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", + "OrganizationName": "TXAZ Virtual Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", + "OrganizationName": "TXAZ Virtual Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", + "OrganizationName": "Schaumburg Medical Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", + "OrganizationName": "Schaumburg Medical Center PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", + "OrganizationName": "OC Sports and Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", + "OrganizationName": "OC Sports and Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", + "OrganizationName": "Richmond Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", + "OrganizationName": "Richmond Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", + "OrganizationName": "Dr. Brigida Colon-Barreto", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", + "OrganizationName": "Dr. Brigida Colon-Barreto", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", + "OrganizationName": "Providence Healthcare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", + "OrganizationName": "Providence Healthcare Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/07cfc287-9d7b-4d28-bf07-7c427c360049", + "OrganizationName": "ALEXANDRA BERGER, MD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/07cfc287-9d7b-4d28-bf07-7c427c360049", + "OrganizationName": "ALEXANDRA BERGER, MD.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", + "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", + "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/02069af5-7a7a-4c18-99b5-0ded3dc70299", + "OrganizationName": "Scott Klein Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/02069af5-7a7a-4c18-99b5-0ded3dc70299", + "OrganizationName": "Scott Klein Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6caeb6fe-03c2-40ce-aa6a-67b757344e6e", + "OrganizationName": "Alive IV and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6caeb6fe-03c2-40ce-aa6a-67b757344e6e", + "OrganizationName": "Alive IV and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/94e845b7-44d9-4a3b-ad96-b440c3dbba2a", + "OrganizationName": "David Weik Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/94e845b7-44d9-4a3b-ad96-b440c3dbba2a", + "OrganizationName": "David Weik Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8e63f009-8896-49c3-9e79-9c01267e89d9", + "OrganizationName": "The Eye Care Group of Lancaster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8e63f009-8896-49c3-9e79-9c01267e89d9", + "OrganizationName": "The Eye Care Group of Lancaster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dab07dc0-762b-464f-b0e2-5d51a8c58fc0", + "OrganizationName": "Rustrial Medical Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab07dc0-762b-464f-b0e2-5d51a8c58fc0", + "OrganizationName": "Rustrial Medical Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6933f243-76f5-4228-8e4e-bd8d3cda9486", + "OrganizationName": "Seacoast Foot and Ankle LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6933f243-76f5-4228-8e4e-bd8d3cda9486", + "OrganizationName": "Seacoast Foot and Ankle LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd7a3937-0841-401a-b7cb-ac46a519df45", + "OrganizationName": "NOVA CAMP HS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd7a3937-0841-401a-b7cb-ac46a519df45", + "OrganizationName": "NOVA CAMP HS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", + "OrganizationName": "Gastroenterology and Hepatology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", + "OrganizationName": "Gastroenterology and Hepatology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/75ab281a-88cb-4913-a55b-012111c9a192", + "OrganizationName": "SoCal Men's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/75ab281a-88cb-4913-a55b-012111c9a192", + "OrganizationName": "SoCal Men's Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9139f0ef-5571-4a14-95ea-e718e7a71825", + "OrganizationName": "Prestonwood Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9139f0ef-5571-4a14-95ea-e718e7a71825", + "OrganizationName": "Prestonwood Health, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e13ac86d-c401-4138-837c-fa1b22905500", + "OrganizationName": "Primary Care center of clear lake", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e13ac86d-c401-4138-837c-fa1b22905500", + "OrganizationName": "Primary Care center of clear lake", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e1a66e23-e237-4419-a219-10325419eb91", + "OrganizationName": "Sapna Shah Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e1a66e23-e237-4419-a219-10325419eb91", + "OrganizationName": "Sapna Shah Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/96698091-c159-425d-808f-c108f07f419b", + "OrganizationName": "Rhodesview Psychiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/96698091-c159-425d-808f-c108f07f419b", + "OrganizationName": "Rhodesview Psychiatry LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", + "OrganizationName": "terrance stradford Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", + "OrganizationName": "terrance stradford Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/870deb5d-1800-4965-ac0c-90d1d2239867", + "OrganizationName": "Viera Mental Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/870deb5d-1800-4965-ac0c-90d1d2239867", + "OrganizationName": "Viera Mental Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", + "OrganizationName": "Sheila Canini Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", + "OrganizationName": "Sheila Canini Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", + "OrganizationName": "Infectious Disease Southwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", + "OrganizationName": "Infectious Disease Southwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1ea76072-2b8e-4244-ad45-bd8d802ce19a", + "OrganizationName": "SOFRONIO SORIANO PROFESSIONAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1ea76072-2b8e-4244-ad45-bd8d802ce19a", + "OrganizationName": "SOFRONIO SORIANO PROFESSIONAL CORPORATION", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ea8b2202-2cb6-4b19-b5d3-29395bb4be30", + "OrganizationName": "Foot Works Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ea8b2202-2cb6-4b19-b5d3-29395bb4be30", + "OrganizationName": "Foot Works Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", + "OrganizationName": "Michael Brown Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", + "OrganizationName": "Michael Brown Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", + "OrganizationName": "Kendall South Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", + "OrganizationName": "Kendall South Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/46d6e659-42d9-4b85-b232-3c44a0f972ae", + "OrganizationName": "Mansi Mehta Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/46d6e659-42d9-4b85-b232-3c44a0f972ae", + "OrganizationName": "Mansi Mehta Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", + "OrganizationName": "FFP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", + "OrganizationName": "FFP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ad8f759-f243-4711-ad32-54ce9bdfb78d", + "OrganizationName": "Dr.Martin Martino M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ad8f759-f243-4711-ad32-54ce9bdfb78d", + "OrganizationName": "Dr.Martin Martino M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d77ea7ef-07b5-44cb-be5b-b0db8110369b", + "OrganizationName": "Ian Newmark Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d77ea7ef-07b5-44cb-be5b-b0db8110369b", + "OrganizationName": "Ian Newmark Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", + "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", + "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", + "OrganizationName": "Federico Roman Ng, MDPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", + "OrganizationName": "Federico Roman Ng, MDPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/538bca36-8020-46a1-a594-2b8f403a7880", + "OrganizationName": "Total Life Health Center LLLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/538bca36-8020-46a1-a594-2b8f403a7880", + "OrganizationName": "Total Life Health Center LLLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", + "OrganizationName": "antonio brizuela Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", + "OrganizationName": "antonio brizuela Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/104ca69e-d123-447c-a758-2862ace1b3cc", + "OrganizationName": "Ariel Goitia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/104ca69e-d123-447c-a758-2862ace1b3cc", + "OrganizationName": "Ariel Goitia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8f3465f-7865-45cc-bc82-5a6b6bbab92c", + "OrganizationName": "Evolve Medical Aesthetics and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8f3465f-7865-45cc-bc82-5a6b6bbab92c", + "OrganizationName": "Evolve Medical Aesthetics and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", + "OrganizationName": "Dale Wicker Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", + "OrganizationName": "Dale Wicker Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", + "OrganizationName": "Digestive Institute of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", + "OrganizationName": "Digestive Institute of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9896f4e6-91d0-4ccc-9d1e-2ef31ae41bfe", + "OrganizationName": "HEALTH PEAK INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9896f4e6-91d0-4ccc-9d1e-2ef31ae41bfe", + "OrganizationName": "HEALTH PEAK INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce7d9bee-fcd7-4c60-beba-204ba5a862b8", + "OrganizationName": "Essential Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce7d9bee-fcd7-4c60-beba-204ba5a862b8", + "OrganizationName": "Essential Healthcare Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4f83b9-a7b2-4be6-a474-15697b4fec16", + "OrganizationName": "LUIS A. BOBEICA, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4f83b9-a7b2-4be6-a474-15697b4fec16", + "OrganizationName": "LUIS A. BOBEICA, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/557d22c5-9b39-4ca8-8abb-6b24069f8703", + "OrganizationName": "GRACE GALLOWAY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/557d22c5-9b39-4ca8-8abb-6b24069f8703", + "OrganizationName": "GRACE GALLOWAY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", + "OrganizationName": "EnTour Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", + "OrganizationName": "EnTour Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", + "OrganizationName": "Boston Facial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", + "OrganizationName": "Boston Facial Plastic Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", + "OrganizationName": "Healthspan Longevity", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", + "OrganizationName": "Healthspan Longevity", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3d18541b-556a-4127-b389-95caa262a7a2", + "OrganizationName": "Hope View Gardens Dementia Intervention Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3d18541b-556a-4127-b389-95caa262a7a2", + "OrganizationName": "Hope View Gardens Dementia Intervention Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", + "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", + "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", + "OrganizationName": "LA Healthcare \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", + "OrganizationName": "LA Healthcare \u0026 Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bbb96fe7-c3cb-49be-ad0f-21b6585587c5", + "OrganizationName": "Internal Medicine and Pediatric Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bbb96fe7-c3cb-49be-ad0f-21b6585587c5", + "OrganizationName": "Internal Medicine and Pediatric Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c58c1a93-2494-49ca-b405-50d5dca8de3a", + "OrganizationName": "Lawrence Kessel MD and Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c58c1a93-2494-49ca-b405-50d5dca8de3a", + "OrganizationName": "Lawrence Kessel MD and Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e6e6970-6b6b-4564-8bc3-9821434db8c2", + "OrganizationName": "LIFE REIMAGINED LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e6e6970-6b6b-4564-8bc3-9821434db8c2", + "OrganizationName": "LIFE REIMAGINED LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/51b412f6-4abf-4535-b1e4-71c901a1bb72", + "OrganizationName": "New Face MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/51b412f6-4abf-4535-b1e4-71c901a1bb72", + "OrganizationName": "New Face MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ead8ab5-de89-4800-ac42-0d06e48931e3", + "OrganizationName": "Jonathan Chan Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ead8ab5-de89-4800-ac42-0d06e48931e3", + "OrganizationName": "Jonathan Chan Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", + "OrganizationName": "Healthcare For Women, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", + "OrganizationName": "Healthcare For Women, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", + "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", + "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", + "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", + "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/485e303a-d050-4cdf-97b4-50cb16926bc8", + "OrganizationName": "Ricardo Del Villar MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/485e303a-d050-4cdf-97b4-50cb16926bc8", + "OrganizationName": "Ricardo Del Villar MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4b8d8e8d-c02e-4089-8461-a05227fe11fb", + "OrganizationName": "Sherill L. Purcell, M.D., FAAP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b8d8e8d-c02e-4089-8461-a05227fe11fb", + "OrganizationName": "Sherill L. Purcell, M.D., FAAP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", + "OrganizationName": "Visiting wound specialists and primary care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", + "OrganizationName": "Visiting wound specialists and primary care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", + "OrganizationName": "Juan Liceaga Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", + "OrganizationName": "Juan Liceaga Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", + "OrganizationName": "Fountain of You MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", + "OrganizationName": "Fountain of You MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/de96f89e-71ed-4cbd-ac17-3a96a46790b3", + "OrganizationName": "Sandpoint Super Drug Clinical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/de96f89e-71ed-4cbd-ac17-3a96a46790b3", + "OrganizationName": "Sandpoint Super Drug Clinical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", + "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", + "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e83970d8-827e-47d5-981f-ecaa707bb201", + "OrganizationName": "BRUSH COUNTRY MEDICAL P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e83970d8-827e-47d5-981f-ecaa707bb201", + "OrganizationName": "BRUSH COUNTRY MEDICAL P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", + "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", + "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", + "OrganizationName": "Floriss Wellness PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", + "OrganizationName": "Floriss Wellness PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", + "OrganizationName": "Town Center Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", + "OrganizationName": "Town Center Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e529905-ad30-4040-9515-7c7ca0922cd7", + "OrganizationName": "Lee Internal Medicine Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e529905-ad30-4040-9515-7c7ca0922cd7", + "OrganizationName": "Lee Internal Medicine Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/db626e4d-f15b-49e4-a053-1755cada58ec", + "OrganizationName": "JAXSENS WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/db626e4d-f15b-49e4-a053-1755cada58ec", + "OrganizationName": "JAXSENS WELLNESS CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/be64736d-e246-433f-98dc-fd77846f7d49", + "OrganizationName": "Vijay D Ganatra MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/be64736d-e246-433f-98dc-fd77846f7d49", + "OrganizationName": "Vijay D Ganatra MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3dc6e14-819b-4e68-82bd-a35992a217b9", + "OrganizationName": "REUBEN OKEMWA Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3dc6e14-819b-4e68-82bd-a35992a217b9", + "OrganizationName": "REUBEN OKEMWA Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d62721b7-3a40-4f6f-9f1c-9feb3e5a6496", + "OrganizationName": "True Physician Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d62721b7-3a40-4f6f-9f1c-9feb3e5a6496", + "OrganizationName": "True Physician Care, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", + "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", + "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", + "OrganizationName": "Berks Diabetes Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", + "OrganizationName": "Berks Diabetes Management, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e7798675-b9b8-454a-a2d3-d299bd36a1d5", + "OrganizationName": "Medical House Call Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e7798675-b9b8-454a-a2d3-d299bd36a1d5", + "OrganizationName": "Medical House Call Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", + "OrganizationName": "Riant Health Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", + "OrganizationName": "Riant Health Services, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", + "OrganizationName": "NEO Foot and Ankle Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", + "OrganizationName": "NEO Foot and Ankle Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c794e34-8dbc-4b58-89f0-c9f41aa7a65e", + "OrganizationName": "Nina K Maw Maw MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c794e34-8dbc-4b58-89f0-c9f41aa7a65e", + "OrganizationName": "Nina K Maw Maw MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", + "OrganizationName": "CLANTON INTERNAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", + "OrganizationName": "CLANTON INTERNAL MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/779707c8-98c9-4c35-84b3-5ba63837db79", + "OrganizationName": "Neighborhood Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/779707c8-98c9-4c35-84b3-5ba63837db79", + "OrganizationName": "Neighborhood Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", + "OrganizationName": "Pablo Decastro Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", + "OrganizationName": "Pablo Decastro Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/42155229-925b-4646-aca5-d4b3c67ca97a", + "OrganizationName": "Rhoades Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/42155229-925b-4646-aca5-d4b3c67ca97a", + "OrganizationName": "Rhoades Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/911dc593-51a0-4b7c-bc1d-3ce476e8d8c5", + "OrganizationName": "Grace Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/911dc593-51a0-4b7c-bc1d-3ce476e8d8c5", + "OrganizationName": "Grace Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7e3ba7d2-7731-47ac-8056-4af211641d1c", + "OrganizationName": "East-West Institute for Health and Research LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7e3ba7d2-7731-47ac-8056-4af211641d1c", + "OrganizationName": "East-West Institute for Health and Research LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", + "OrganizationName": "Troy Johnson Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", + "OrganizationName": "Troy Johnson Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", + "OrganizationName": "Eastern Shore Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", + "OrganizationName": "Eastern Shore Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5cdb6703-8281-46b7-8329-63f83afdcc1c", + "OrganizationName": "Restorative Neurology and Headache Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5cdb6703-8281-46b7-8329-63f83afdcc1c", + "OrganizationName": "Restorative Neurology and Headache Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/89e5c643-638a-484d-b2e5-3bd5e908850e", + "OrganizationName": "Noe Marioni, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/89e5c643-638a-484d-b2e5-3bd5e908850e", + "OrganizationName": "Noe Marioni, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", + "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", + "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", + "OrganizationName": "Desir Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", + "OrganizationName": "Desir Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ba6683a-e450-43a2-8dc0-6d5208a93167", + "OrganizationName": "Dr. Marla Kushner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ba6683a-e450-43a2-8dc0-6d5208a93167", + "OrganizationName": "Dr. Marla Kushner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/03f7ba9c-aa47-4991-9128-f55681e00780", + "OrganizationName": "Divine Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/03f7ba9c-aa47-4991-9128-f55681e00780", + "OrganizationName": "Divine Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/293b2215-71c6-47d1-8284-27358e395c16", + "OrganizationName": "East Summit Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/293b2215-71c6-47d1-8284-27358e395c16", + "OrganizationName": "East Summit Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", + "OrganizationName": "David Bleza MD FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", + "OrganizationName": "David Bleza MD FACS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/accd644e-ea17-423f-b59a-734cb9861866", + "OrganizationName": "Dr. Zaytoun Medical Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/accd644e-ea17-423f-b59a-734cb9861866", + "OrganizationName": "Dr. Zaytoun Medical Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", + "OrganizationName": "Clinical Bridges", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", + "OrganizationName": "Clinical Bridges", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d683680-3f87-473f-aeee-8bd64609e837", + "OrganizationName": "Shivendra Pandey MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d683680-3f87-473f-aeee-8bd64609e837", + "OrganizationName": "Shivendra Pandey MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/16ac9a8a-bcbd-42ce-be7d-8913a92c8609", + "OrganizationName": "Peter Shalit MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/16ac9a8a-bcbd-42ce-be7d-8913a92c8609", + "OrganizationName": "Peter Shalit MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa288c6a-d136-47f3-bfa7-17a5396ed376", + "OrganizationName": "Mitchell Kurk", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa288c6a-d136-47f3-bfa7-17a5396ed376", + "OrganizationName": "Mitchell Kurk", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/313bce9a-02f0-470e-9b8d-513928a1553f", + "OrganizationName": "The Case Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/313bce9a-02f0-470e-9b8d-513928a1553f", + "OrganizationName": "The Case Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/fff873eb-3f9b-4d95-87bf-d40da90879fe", + "OrganizationName": "Nightwater Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fff873eb-3f9b-4d95-87bf-d40da90879fe", + "OrganizationName": "Nightwater Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a50a59b4-a082-4804-9a85-57d975c2788d", + "OrganizationName": "Nightwater Health of California, APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a50a59b4-a082-4804-9a85-57d975c2788d", + "OrganizationName": "Nightwater Health of California, APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", + "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", + "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2357a25e-0d04-4639-b459-aa16b919552e", + "OrganizationName": "Cognitive Works, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2357a25e-0d04-4639-b459-aa16b919552e", + "OrganizationName": "Cognitive Works, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/329f3a39-b5be-4231-b2ac-7c2418bdba44", + "OrganizationName": "Phoenix Eye Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/329f3a39-b5be-4231-b2ac-7c2418bdba44", + "OrganizationName": "Phoenix Eye Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/65bcb64d-3de4-4a5c-b2aa-7668002f4d55", + "OrganizationName": "Simpkins Medical Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/65bcb64d-3de4-4a5c-b2aa-7668002f4d55", + "OrganizationName": "Simpkins Medical Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", + "OrganizationName": "Lake Oswego GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", + "OrganizationName": "Lake Oswego GYN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", + "OrganizationName": "Suffern Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", + "OrganizationName": "Suffern Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", + "OrganizationName": "Samuel sugg Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", + "OrganizationName": "Samuel sugg Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", + "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", + "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/743bfee0-0aba-4a4d-ae5f-34b5b71c3ebc", + "OrganizationName": "JS NAUHEIM,MD,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/743bfee0-0aba-4a4d-ae5f-34b5b71c3ebc", + "OrganizationName": "JS NAUHEIM,MD,PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5597a01e-873a-4913-93d2-ae2c97df6e54", + "OrganizationName": "Carina Cruz Berrios Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5597a01e-873a-4913-93d2-ae2c97df6e54", + "OrganizationName": "Carina Cruz Berrios Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", + "OrganizationName": "New Mexico Psych Med Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", + "OrganizationName": "New Mexico Psych Med Services, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a470de3c-49af-4650-a800-5fb4335bdb25", + "OrganizationName": "Holistic Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a470de3c-49af-4650-a800-5fb4335bdb25", + "OrganizationName": "Holistic Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", + "OrganizationName": "Pinnacle Primary Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", + "OrganizationName": "Pinnacle Primary Care PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", + "OrganizationName": "Carnett Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", + "OrganizationName": "Carnett Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f70127a5-8e45-41ff-81b4-8f34dce86490", + "OrganizationName": "Warrick County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f70127a5-8e45-41ff-81b4-8f34dce86490", + "OrganizationName": "Warrick County Health Department", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", + "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", + "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f729c878-619a-458b-a9da-eedcb979a274", + "OrganizationName": "OXON HILL PRIMARY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f729c878-619a-458b-a9da-eedcb979a274", + "OrganizationName": "OXON HILL PRIMARY MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", + "OrganizationName": "Trinity Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", + "OrganizationName": "Trinity Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", + "OrganizationName": "Sanctuary Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", + "OrganizationName": "Sanctuary Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8047371b-e2d6-4d8a-ba23-f330d7a93df0", + "OrganizationName": "Vibrant Vision", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8047371b-e2d6-4d8a-ba23-f330d7a93df0", + "OrganizationName": "Vibrant Vision", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", + "OrganizationName": "LAMD MEDICAL GROUP Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", + "OrganizationName": "LAMD MEDICAL GROUP Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8c5f992d-059d-40cf-a622-72046863e671", + "OrganizationName": "madhu bhatia MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8c5f992d-059d-40cf-a622-72046863e671", + "OrganizationName": "madhu bhatia MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c2004c2a-2301-4577-8955-82636bc72768", + "OrganizationName": "Colorado Mountain Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c2004c2a-2301-4577-8955-82636bc72768", + "OrganizationName": "Colorado Mountain Health LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/baedcc79-bc96-4144-815d-8143ab00ec18", + "OrganizationName": "ZULFIQAR ALI MD FACC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/baedcc79-bc96-4144-815d-8143ab00ec18", + "OrganizationName": "ZULFIQAR ALI MD FACC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c2f95b03-c9b3-4393-9761-32c246085e5d", + "OrganizationName": "Meaningful Recovery of New Mexico", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c2f95b03-c9b3-4393-9761-32c246085e5d", + "OrganizationName": "Meaningful Recovery of New Mexico", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d986dbe-522f-41e9-a495-d6bdf48dbf6f", + "OrganizationName": "Priority Healthcare and Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d986dbe-522f-41e9-a495-d6bdf48dbf6f", + "OrganizationName": "Priority Healthcare and Weight Loss", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", + "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", + "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", + "OrganizationName": "Pain and Spine Center of Charlottesville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", + "OrganizationName": "Pain and Spine Center of Charlottesville", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3baa181-f818-4d22-86b5-20869f916fe7", + "OrganizationName": "HARMONY FAMILY HEALTH CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3baa181-f818-4d22-86b5-20869f916fe7", + "OrganizationName": "HARMONY FAMILY HEALTH CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", + "OrganizationName": "Jodilyn Gingold, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", + "OrganizationName": "Jodilyn Gingold, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1d638da-0dab-45da-adc8-933285066f99", - "OrganizationName": "Veronica Diaz Vidal Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", + "OrganizationName": "Texas Foundation Medical Group, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1d638da-0dab-45da-adc8-933285066f99", - "OrganizationName": "Veronica Diaz Vidal Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", + "OrganizationName": "Texas Foundation Medical Group, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", - "OrganizationName": "Wellness Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d26b614f-8663-4761-8d2a-93ab726960e3", + "OrganizationName": "Mindful Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", - "OrganizationName": "Wellness Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d26b614f-8663-4761-8d2a-93ab726960e3", + "OrganizationName": "Mindful Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", - "OrganizationName": "Better Years Ahead Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad388eea-5dfb-4d0c-9cca-c18ffb1a66ad", + "OrganizationName": "Medina Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", - "OrganizationName": "Better Years Ahead Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad388eea-5dfb-4d0c-9cca-c18ffb1a66ad", + "OrganizationName": "Medina Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", - "OrganizationName": "Instant Medical Care Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f5cc35e6-b940-4494-91de-b09394c38e83", + "OrganizationName": "Headwaters Restoration Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", - "OrganizationName": "Instant Medical Care Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f5cc35e6-b940-4494-91de-b09394c38e83", + "OrganizationName": "Headwaters Restoration Therapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", - "OrganizationName": "Silkiss Eye Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/258e906c-dd62-4132-9a2f-abf3fcf7f8cf", + "OrganizationName": "Journey Healthcare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", - "OrganizationName": "Silkiss Eye Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/258e906c-dd62-4132-9a2f-abf3fcf7f8cf", + "OrganizationName": "Journey Healthcare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a57aea8b-ad22-42cd-99ec-30743b6b74c2", - "OrganizationName": "Urban Community physicians Network", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", + "OrganizationName": "Anointed Hands Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a57aea8b-ad22-42cd-99ec-30743b6b74c2", - "OrganizationName": "Urban Community physicians Network", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", + "OrganizationName": "Anointed Hands Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/337c6cf4-4ba8-453e-bef4-435e0feb1a32", - "OrganizationName": "Thomas B Faulkner, MD, AME", + "URL": "https://api.patientfusion.com/fhir/r4/v1/33dcb1bf-6f7e-495d-8bde-335ae49e9e1b", + "OrganizationName": "Allyson Witters Cundiff, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/337c6cf4-4ba8-453e-bef4-435e0feb1a32", - "OrganizationName": "Thomas B Faulkner, MD, AME", + "URL": "https://api.practicefusion.com/fhir/r4/v1/33dcb1bf-6f7e-495d-8bde-335ae49e9e1b", + "OrganizationName": "Allyson Witters Cundiff, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/75e9eb9a-ae5a-4cc0-8946-417b4328ea13", - "OrganizationName": "Robert Baklajian MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", + "OrganizationName": "JAN BECKER Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/75e9eb9a-ae5a-4cc0-8946-417b4328ea13", - "OrganizationName": "Robert Baklajian MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", + "OrganizationName": "JAN BECKER Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7dff017f-e196-4190-a315-d05f180121de", - "OrganizationName": "Wynn Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/39f26eee-4815-4064-ab68-b1b0eeb0e78a", + "OrganizationName": "Richard Kaiser MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7dff017f-e196-4190-a315-d05f180121de", - "OrganizationName": "Wynn Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/39f26eee-4815-4064-ab68-b1b0eeb0e78a", + "OrganizationName": "Richard Kaiser MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bc4fac9e-053e-43f7-999a-e828f3940d81", - "OrganizationName": "KIDNEY CARE ASSOCIATES LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/58df6453-c9ed-4764-bbcb-a5c0f50275e5", + "OrganizationName": "Harris Foot \u0026 Ankle", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bc4fac9e-053e-43f7-999a-e828f3940d81", - "OrganizationName": "KIDNEY CARE ASSOCIATES LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/58df6453-c9ed-4764-bbcb-a5c0f50275e5", + "OrganizationName": "Harris Foot \u0026 Ankle", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", - "OrganizationName": "Patriot Care Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", + "OrganizationName": "Miami Spine and wellness center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", - "OrganizationName": "Patriot Care Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", + "OrganizationName": "Miami Spine and wellness center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", - "OrganizationName": "Peter Sangra MD LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", + "OrganizationName": "247 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", - "OrganizationName": "Peter Sangra MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", + "OrganizationName": "247 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", - "OrganizationName": "1-2-3 pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c5611cda-9413-45a1-b65f-52f4a6bebf7e", + "OrganizationName": "COR-TEX CARDIOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", - "OrganizationName": "1-2-3 pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c5611cda-9413-45a1-b65f-52f4a6bebf7e", + "OrganizationName": "COR-TEX CARDIOLOGY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83585647-20c7-4cbe-94c8-5c6254e8c68c", - "OrganizationName": "Great Lakes Pediatric Cardiology PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bccfb42c-98f9-428b-a276-d0b3fc211fa8", + "OrganizationName": "Total Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/83585647-20c7-4cbe-94c8-5c6254e8c68c", - "OrganizationName": "Great Lakes Pediatric Cardiology PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bccfb42c-98f9-428b-a276-d0b3fc211fa8", + "OrganizationName": "Total Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d120da39-ed17-4ad1-873f-fbd23bd6c32f", - "OrganizationName": "Chandra Shekar, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", + "OrganizationName": "GUPTA,MONIKA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d120da39-ed17-4ad1-873f-fbd23bd6c32f", - "OrganizationName": "Chandra Shekar, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", + "OrganizationName": "GUPTA,MONIKA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/75d743e8-5cc2-4f0a-9a5a-abd6a15e7508", - "OrganizationName": "Diabetes Care Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1c47242f-fef1-4f65-86c2-29e2a643129f", + "OrganizationName": "The Newlove Nurtury", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/75d743e8-5cc2-4f0a-9a5a-abd6a15e7508", - "OrganizationName": "Diabetes Care Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1c47242f-fef1-4f65-86c2-29e2a643129f", + "OrganizationName": "The Newlove Nurtury", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/243b9a19-0731-499f-a36e-f36deabbee23", - "OrganizationName": "Tisa Morris-Christian, M.D., MPH", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", + "OrganizationName": "Infectious Disease Consultants of West Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/243b9a19-0731-499f-a36e-f36deabbee23", - "OrganizationName": "Tisa Morris-Christian, M.D., MPH", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", + "OrganizationName": "Infectious Disease Consultants of West Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/53d08ab7-fd47-400d-a45c-035ad902f80f", - "OrganizationName": "Narsimha Gottam, M.D., F.A.C.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b5c981f5-1d78-4b7a-a8a7-5d6c1d838d11", + "OrganizationName": "MediMind Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/53d08ab7-fd47-400d-a45c-035ad902f80f", - "OrganizationName": "Narsimha Gottam, M.D., F.A.C.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5c981f5-1d78-4b7a-a8a7-5d6c1d838d11", + "OrganizationName": "MediMind Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aa1beb06-1273-4d02-be87-6b15b970cd92", - "OrganizationName": "Lydia Rodriguez Ortiz", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", + "OrganizationName": "Advanced Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aa1beb06-1273-4d02-be87-6b15b970cd92", - "OrganizationName": "Lydia Rodriguez Ortiz", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", + "OrganizationName": "Advanced Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bcaaf9a0-8087-412c-971d-d6cfca42bc32", - "OrganizationName": "J'Essential Health \u0026 Wellness LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67bad6cb-de7c-4a45-b743-0ec7ae8abc6d", + "OrganizationName": "Andrew Massaband, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bcaaf9a0-8087-412c-971d-d6cfca42bc32", - "OrganizationName": "J'Essential Health \u0026 Wellness LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67bad6cb-de7c-4a45-b743-0ec7ae8abc6d", + "OrganizationName": "Andrew Massaband, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f073e2ea-76b2-4a7e-905b-cc6ce96a5dd1", - "OrganizationName": "Connection NP Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3729c4e-e837-4875-8bfd-d1481b266071", + "OrganizationName": "South Jersey Pediatric Gastroenterology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f073e2ea-76b2-4a7e-905b-cc6ce96a5dd1", - "OrganizationName": "Connection NP Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3729c4e-e837-4875-8bfd-d1481b266071", + "OrganizationName": "South Jersey Pediatric Gastroenterology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e4508fca-f741-4318-a623-a219e096ebeb", - "OrganizationName": "Maria Elena Gadea Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a160bc66-4043-495e-bc2d-08e94f0dfdea", + "OrganizationName": "Cynthia G. Cohen, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e4508fca-f741-4318-a623-a219e096ebeb", - "OrganizationName": "Maria Elena Gadea Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a160bc66-4043-495e-bc2d-08e94f0dfdea", + "OrganizationName": "Cynthia G. Cohen, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ab7e1eb-a148-45e1-8365-641746736dc8", - "OrganizationName": "Dr. Minakshi Nijhawan", + "URL": "https://api.patientfusion.com/fhir/r4/v1/debd8ddf-493e-45ad-b262-43ac4e261e48", + "OrganizationName": "Omega Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ab7e1eb-a148-45e1-8365-641746736dc8", - "OrganizationName": "Dr. Minakshi Nijhawan", + "URL": "https://api.practicefusion.com/fhir/r4/v1/debd8ddf-493e-45ad-b262-43ac4e261e48", + "OrganizationName": "Omega Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e54c7436-7ea7-4685-bbd8-750cda14e19c", - "OrganizationName": "John E. Rivera Jr. Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", + "OrganizationName": "Perry Stein Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e54c7436-7ea7-4685-bbd8-750cda14e19c", - "OrganizationName": "John E. Rivera Jr. Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", + "OrganizationName": "Perry Stein Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", - "OrganizationName": "Cranmore Health Partners LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2fe68f06-bd4a-4cc4-b68f-a0a70a93384f", + "OrganizationName": "Westside Medical Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", - "OrganizationName": "Cranmore Health Partners LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2fe68f06-bd4a-4cc4-b68f-a0a70a93384f", + "OrganizationName": "Westside Medical Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", - "OrganizationName": "Santosh Pillai, D.O. LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", + "OrganizationName": "GREYSI TAMAYO GONZALEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", - "OrganizationName": "Santosh Pillai, D.O. LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", + "OrganizationName": "GREYSI TAMAYO GONZALEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", - "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/535deab6-76c1-4c26-890e-f4af06ffca7b", + "OrganizationName": "PRIME HEALTH SERVICES LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", - "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/535deab6-76c1-4c26-890e-f4af06ffca7b", + "OrganizationName": "PRIME HEALTH SERVICES LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", - "OrganizationName": "CA Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fe26e171-e34a-4066-b49e-7f4c374e3729", + "OrganizationName": "Abstract to Clarity, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", - "OrganizationName": "CA Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fe26e171-e34a-4066-b49e-7f4c374e3729", + "OrganizationName": "Abstract to Clarity, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c6ab0937-2837-4cfb-9434-6f774436c75f", - "OrganizationName": "Bayou Healthcare Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", + "OrganizationName": "Mikhail Novikov MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c6ab0937-2837-4cfb-9434-6f774436c75f", - "OrganizationName": "Bayou Healthcare Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", + "OrganizationName": "Mikhail Novikov MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", - "OrganizationName": "NP House Calls", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b1442e3-d4d4-437b-bac9-94dec4ac133b", + "OrganizationName": "Total Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", - "OrganizationName": "NP House Calls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b1442e3-d4d4-437b-bac9-94dec4ac133b", + "OrganizationName": "Total Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/59c00f0b-acfa-4e3e-9454-60f8f379df6e", - "OrganizationName": "EAST COAST PHYSICIANS PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/db93ac3d-a591-4d03-ac7b-87fdac887096", + "OrganizationName": "Southwest Urgent Care \u0026 Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/59c00f0b-acfa-4e3e-9454-60f8f379df6e", - "OrganizationName": "EAST COAST PHYSICIANS PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/db93ac3d-a591-4d03-ac7b-87fdac887096", + "OrganizationName": "Southwest Urgent Care \u0026 Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/95b1ca64-e674-4d98-acc5-7324e5c713c7", - "OrganizationName": "Primary Care Partners PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7092dff3-644f-43a7-a1fd-590e496d7e73", + "OrganizationName": "Sunridge Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/95b1ca64-e674-4d98-acc5-7324e5c713c7", - "OrganizationName": "Primary Care Partners PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7092dff3-644f-43a7-a1fd-590e496d7e73", + "OrganizationName": "Sunridge Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", - "OrganizationName": "Carlos Arguedas MD Katella", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dd0e6bb7-0a73-48d0-8728-75853f97cef7", + "OrganizationName": "Mark Markland, NP IN Family Health PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", - "OrganizationName": "Carlos Arguedas MD Katella", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dd0e6bb7-0a73-48d0-8728-75853f97cef7", + "OrganizationName": "Mark Markland, NP IN Family Health PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5f098b1a-5bfe-4061-b4d3-fdbb2478bd99", - "OrganizationName": "GBMC Health Partners", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", + "OrganizationName": "Northstar Wellness Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5f098b1a-5bfe-4061-b4d3-fdbb2478bd99", - "OrganizationName": "GBMC Health Partners", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", + "OrganizationName": "Northstar Wellness Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c14ad499-c90b-49be-be10-fb11819e4774", - "OrganizationName": "Arizona City Health Associates, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", + "OrganizationName": "khendra peay, M.D., P.A. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c14ad499-c90b-49be-be10-fb11819e4774", - "OrganizationName": "Arizona City Health Associates, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", + "OrganizationName": "khendra peay, M.D., P.A. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/39696796-1139-4f93-ac4f-d63aac513f6f", - "OrganizationName": "Michaellaipract", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", + "OrganizationName": "UNITED AND GUIDED", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/39696796-1139-4f93-ac4f-d63aac513f6f", - "OrganizationName": "Michaellaipract", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", + "OrganizationName": "UNITED AND GUIDED", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1c6c34ad-2c09-4aac-8ca6-3f6ccbc59260", - "OrganizationName": "Symbios Integrative Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", + "OrganizationName": "James River Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1c6c34ad-2c09-4aac-8ca6-3f6ccbc59260", - "OrganizationName": "Symbios Integrative Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", + "OrganizationName": "James River Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1dc8df89-b3b5-4391-8e58-76fcf8417c8b", - "OrganizationName": "Bazzi Podiatry, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", + "OrganizationName": "PRIMARY HOMECARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1dc8df89-b3b5-4391-8e58-76fcf8417c8b", - "OrganizationName": "Bazzi Podiatry, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", + "OrganizationName": "PRIMARY HOMECARE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", - "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", + "OrganizationName": "Edgebrook Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", - "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", + "OrganizationName": "Edgebrook Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", - "OrganizationName": "Consultorio Integral Hispano", + "URL": "https://api.patientfusion.com/fhir/r4/v1/255154b6-e602-41ca-8e08-e049f22118ad", + "OrganizationName": "Stephanie Brandt Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", - "OrganizationName": "Consultorio Integral Hispano", + "URL": "https://api.practicefusion.com/fhir/r4/v1/255154b6-e602-41ca-8e08-e049f22118ad", + "OrganizationName": "Stephanie Brandt Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3ee9f465-7ead-487d-bda1-cc978754f7db", - "OrganizationName": "Insight Family Practice LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1f169e9b-3e59-4564-9985-b38fb076f5c6", + "OrganizationName": "Frederick CustomEyez Prosthetics LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3ee9f465-7ead-487d-bda1-cc978754f7db", - "OrganizationName": "Insight Family Practice LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1f169e9b-3e59-4564-9985-b38fb076f5c6", + "OrganizationName": "Frederick CustomEyez Prosthetics LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", - "OrganizationName": "TXAZ Virtual Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d14ec0e-ca05-4d87-a465-9b7e91a19284", + "OrganizationName": "Following Seas Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", - "OrganizationName": "TXAZ Virtual Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d14ec0e-ca05-4d87-a465-9b7e91a19284", + "OrganizationName": "Following Seas Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", - "OrganizationName": "Jay Medical, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a6145ddb-3bcb-4f3f-9010-af290948bdf4", + "OrganizationName": "Francisca Ojei Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", - "OrganizationName": "Jay Medical, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a6145ddb-3bcb-4f3f-9010-af290948bdf4", + "OrganizationName": "Francisca Ojei Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", - "OrganizationName": "Richmond Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", + "OrganizationName": "HEISU RESEARCH GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", - "OrganizationName": "Richmond Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", + "OrganizationName": "HEISU RESEARCH GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", - "OrganizationName": "Schaumburg Medical Center PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", + "OrganizationName": "MED with Love, pllc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", - "OrganizationName": "Schaumburg Medical Center PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", + "OrganizationName": "MED with Love, pllc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", - "OrganizationName": "Brigida Colon-Barreto Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", + "OrganizationName": "BAY HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", - "OrganizationName": "Brigida Colon-Barreto Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", + "OrganizationName": "BAY HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", - "OrganizationName": "OC Sports and Orthopaedics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1a3462cf-fe00-47bd-9498-3a09290b02e8", + "OrganizationName": "San Diego Heart and Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", - "OrganizationName": "OC Sports and Orthopaedics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1a3462cf-fe00-47bd-9498-3a09290b02e8", + "OrganizationName": "San Diego Heart and Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07cfc287-9d7b-4d28-bf07-7c427c360049", - "OrganizationName": "ALEXANDRA BERGER, MD.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6246f8af-2057-46ce-9ff0-fcac266f956a", + "OrganizationName": "ACE Endocrinology Associates PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07cfc287-9d7b-4d28-bf07-7c427c360049", - "OrganizationName": "ALEXANDRA BERGER, MD.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6246f8af-2057-46ce-9ff0-fcac266f956a", + "OrganizationName": "ACE Endocrinology Associates PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", - "OrganizationName": "Providence Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", + "OrganizationName": "Weingarten medical offices", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", - "OrganizationName": "Providence Healthcare Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", + "OrganizationName": "Weingarten medical offices", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", - "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", + "OrganizationName": "Global Health Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", - "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", + "OrganizationName": "Global Health Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/02069af5-7a7a-4c18-99b5-0ded3dc70299", - "OrganizationName": "Scott Klein Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", + "OrganizationName": "Jennifer J. Davis, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/02069af5-7a7a-4c18-99b5-0ded3dc70299", - "OrganizationName": "Scott Klein Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", + "OrganizationName": "Jennifer J. Davis, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6caeb6fe-03c2-40ce-aa6a-67b757344e6e", - "OrganizationName": "Alive IV and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", + "OrganizationName": "Peachtree Family Psychiatry Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6caeb6fe-03c2-40ce-aa6a-67b757344e6e", - "OrganizationName": "Alive IV and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", + "OrganizationName": "Peachtree Family Psychiatry Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6933f243-76f5-4228-8e4e-bd8d3cda9486", - "OrganizationName": "Seacoast Foot and Ankle LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/55ccce60-ff33-4165-bc11-a88ea3e46ef3", + "OrganizationName": "New Focus Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6933f243-76f5-4228-8e4e-bd8d3cda9486", - "OrganizationName": "Seacoast Foot and Ankle LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/55ccce60-ff33-4165-bc11-a88ea3e46ef3", + "OrganizationName": "New Focus Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/94e845b7-44d9-4a3b-ad96-b440c3dbba2a", - "OrganizationName": "David Weik Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30675b15-5d5e-4fab-bf18-25227c6a18a3", + "OrganizationName": "Dr. Cynthia Sanchez DO", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/94e845b7-44d9-4a3b-ad96-b440c3dbba2a", - "OrganizationName": "David Weik Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30675b15-5d5e-4fab-bf18-25227c6a18a3", + "OrganizationName": "Dr. Cynthia Sanchez DO", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8e63f009-8896-49c3-9e79-9c01267e89d9", - "OrganizationName": "The Eye Care Group of Lancaster", + "URL": "https://api.patientfusion.com/fhir/r4/v1/26dedc49-c582-4d11-8eb6-32b60f985a18", + "OrganizationName": "Gentle Birth Options, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8e63f009-8896-49c3-9e79-9c01267e89d9", - "OrganizationName": "The Eye Care Group of Lancaster", + "URL": "https://api.practicefusion.com/fhir/r4/v1/26dedc49-c582-4d11-8eb6-32b60f985a18", + "OrganizationName": "Gentle Birth Options, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dab07dc0-762b-464f-b0e2-5d51a8c58fc0", - "OrganizationName": "Rustrial Medical Services, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dab07dc0-762b-464f-b0e2-5d51a8c58fc0", - "OrganizationName": "Rustrial Medical Services, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd7a3937-0841-401a-b7cb-ac46a519df45", - "OrganizationName": "Cynthia Awadzi Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", + "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd7a3937-0841-401a-b7cb-ac46a519df45", - "OrganizationName": "Cynthia Awadzi Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", + "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", - "OrganizationName": "Gastroenterology and Hepatology Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", + "OrganizationName": "Sandy Amador, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", - "OrganizationName": "Gastroenterology and Hepatology Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", + "OrganizationName": "Sandy Amador, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e13ac86d-c401-4138-837c-fa1b22905500", - "OrganizationName": "Primary Care center of clear lake", + "URL": "https://api.patientfusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", + "OrganizationName": "The Foot Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e13ac86d-c401-4138-837c-fa1b22905500", - "OrganizationName": "Primary Care center of clear lake", + "URL": "https://api.practicefusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", + "OrganizationName": "The Foot Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/75ab281a-88cb-4913-a55b-012111c9a192", - "OrganizationName": "SoCal Men's Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fca3d5c7-08eb-4c42-856c-560e9aed82e0", + "OrganizationName": "Imperial Care Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/75ab281a-88cb-4913-a55b-012111c9a192", - "OrganizationName": "SoCal Men's Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fca3d5c7-08eb-4c42-856c-560e9aed82e0", + "OrganizationName": "Imperial Care Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9139f0ef-5571-4a14-95ea-e718e7a71825", - "OrganizationName": "Prestonwood Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9139f0ef-5571-4a14-95ea-e718e7a71825", - "OrganizationName": "Prestonwood Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", - "OrganizationName": "terrance stradford Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1d8110d-d178-417d-b99e-6ee60b6c60b4", + "OrganizationName": "The Earlene Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", - "OrganizationName": "terrance stradford Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1d8110d-d178-417d-b99e-6ee60b6c60b4", + "OrganizationName": "The Earlene Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e1a66e23-e237-4419-a219-10325419eb91", - "OrganizationName": "Sapna Shah Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e1a66e23-e237-4419-a219-10325419eb91", - "OrganizationName": "Sapna Shah Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/96698091-c159-425d-808f-c108f07f419b", - "OrganizationName": "Rhodesview Psychiatry LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", + "OrganizationName": "Global Psychotherapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/96698091-c159-425d-808f-c108f07f419b", - "OrganizationName": "Rhodesview Psychiatry LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", + "OrganizationName": "Global Psychotherapy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/870deb5d-1800-4965-ac0c-90d1d2239867", - "OrganizationName": "Viera Mental Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ac46cf40-c5fb-4af1-aa87-798f326bfcfa", + "OrganizationName": "Washington Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/870deb5d-1800-4965-ac0c-90d1d2239867", - "OrganizationName": "Viera Mental Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ac46cf40-c5fb-4af1-aa87-798f326bfcfa", + "OrganizationName": "Washington Foot and Ankle", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", - "OrganizationName": "Infectious Disease Southwest", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1cad7864-3457-454e-9b44-1db77ddcbd05", + "OrganizationName": "AveMaria Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", - "OrganizationName": "Infectious Disease Southwest", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1cad7864-3457-454e-9b44-1db77ddcbd05", + "OrganizationName": "AveMaria Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", - "OrganizationName": "Sheila Canini Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/33e61cfc-9e26-4818-ac72-efe3944db24d", + "OrganizationName": "Professional Care Solutions LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", - "OrganizationName": "Sheila Canini Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/33e61cfc-9e26-4818-ac72-efe3944db24d", + "OrganizationName": "Professional Care Solutions LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1ea76072-2b8e-4244-ad45-bd8d802ce19a", - "OrganizationName": "SOFRONIO SORIANO PROFESSIONAL CORPORATION", + "URL": "https://api.patientfusion.com/fhir/r4/v1/41e258b7-6d5a-464b-b9ea-ffa2757981db", + "OrganizationName": "Abel Quinones Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1ea76072-2b8e-4244-ad45-bd8d802ce19a", - "OrganizationName": "SOFRONIO SORIANO PROFESSIONAL CORPORATION", + "URL": "https://api.practicefusion.com/fhir/r4/v1/41e258b7-6d5a-464b-b9ea-ffa2757981db", + "OrganizationName": "Abel Quinones Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ea8b2202-2cb6-4b19-b5d3-29395bb4be30", - "OrganizationName": "Foot Works Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", + "OrganizationName": "Fayaz A Shawl MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ea8b2202-2cb6-4b19-b5d3-29395bb4be30", - "OrganizationName": "Foot Works Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", + "OrganizationName": "Fayaz A Shawl MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", - "OrganizationName": "Michael Brown Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", + "OrganizationName": "Advance Psychiatry and Counseling, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", - "OrganizationName": "Michael Brown Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", + "OrganizationName": "Advance Psychiatry and Counseling, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/edd7ace0-3444-41f4-907a-f02fab8520a2", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edd7ace0-3444-41f4-907a-f02fab8520a2", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46d6e659-42d9-4b85-b232-3c44a0f972ae", - "OrganizationName": "Mansi Mehta Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", + "OrganizationName": "Mana Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46d6e659-42d9-4b85-b232-3c44a0f972ae", - "OrganizationName": "Mansi Mehta Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", + "OrganizationName": "Mana Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", - "OrganizationName": "Kendall South Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c2bbc31e-1018-43c5-8cea-65e6eae038a6", + "OrganizationName": "VIP Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", - "OrganizationName": "Kendall South Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c2bbc31e-1018-43c5-8cea-65e6eae038a6", + "OrganizationName": "VIP Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d77ea7ef-07b5-44cb-be5b-b0db8110369b", - "OrganizationName": "Ian Newmark Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a12ee528-392a-46dc-a0de-b2270efa59cf", + "OrganizationName": "Dennis R. Holmes, M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d77ea7ef-07b5-44cb-be5b-b0db8110369b", - "OrganizationName": "Ian Newmark Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a12ee528-392a-46dc-a0de-b2270efa59cf", + "OrganizationName": "Dennis R. Holmes, M.D., Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ad8f759-f243-4711-ad32-54ce9bdfb78d", - "OrganizationName": "Dr.Martin Martino M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1bb3de4-0f53-4f38-9302-5fbc98d0ec06", + "OrganizationName": "Advantage Foot Care of Houston", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ad8f759-f243-4711-ad32-54ce9bdfb78d", - "OrganizationName": "Dr.Martin Martino M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1bb3de4-0f53-4f38-9302-5fbc98d0ec06", + "OrganizationName": "Advantage Foot Care of Houston", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", - "OrganizationName": "Mindy's Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d369f26f-3cad-4b04-9dbf-0fb4e7d4f9fb", + "OrganizationName": "American Liberty Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", - "OrganizationName": "Mindy's Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d369f26f-3cad-4b04-9dbf-0fb4e7d4f9fb", + "OrganizationName": "American Liberty Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", - "OrganizationName": "New Psychiatric Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", + "OrganizationName": "Happy Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", - "OrganizationName": "New Psychiatric Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", + "OrganizationName": "Happy Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", - "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c8b3e84-7b72-4903-aa51-4996faffac39", + "OrganizationName": "Edward J Lazaga MD Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", - "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c8b3e84-7b72-4903-aa51-4996faffac39", + "OrganizationName": "Edward J Lazaga MD Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", - "OrganizationName": "Federico Roman Ng, MDPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", + "OrganizationName": "Donald T. Levine MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", - "OrganizationName": "Federico Roman Ng, MDPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", + "OrganizationName": "Donald T. Levine MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", + "OrganizationName": "Allied Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", + "OrganizationName": "Allied Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/538bca36-8020-46a1-a594-2b8f403a7880", - "OrganizationName": "Total Life Health Center LLLP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", + "OrganizationName": "James W. Ratcliff , DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/538bca36-8020-46a1-a594-2b8f403a7880", - "OrganizationName": "Total Life Health Center LLLP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", + "OrganizationName": "James W. Ratcliff , DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/104ca69e-d123-447c-a758-2862ace1b3cc", - "OrganizationName": "Ariel Goitia", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ef252b19-a67b-43c3-8aae-614d1aecc28d", + "OrganizationName": "Woodlands Functional Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/104ca69e-d123-447c-a758-2862ace1b3cc", - "OrganizationName": "Ariel Goitia", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ef252b19-a67b-43c3-8aae-614d1aecc28d", + "OrganizationName": "Woodlands Functional Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", - "OrganizationName": "antonio brizuela Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", + "OrganizationName": "Modern Enhancement", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", - "OrganizationName": "antonio brizuela Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", + "OrganizationName": "Modern Enhancement", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8f3465f-7865-45cc-bc82-5a6b6bbab92c", - "OrganizationName": "Evolve Medical Aesthetics and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/86aa54dd-e45f-407c-b5ec-b248ee7c1d25", + "OrganizationName": "Wyoming Heart and Vascular Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8f3465f-7865-45cc-bc82-5a6b6bbab92c", - "OrganizationName": "Evolve Medical Aesthetics and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/86aa54dd-e45f-407c-b5ec-b248ee7c1d25", + "OrganizationName": "Wyoming Heart and Vascular Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", - "OrganizationName": "Marquez Anesthesia PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c70a180-f90e-48a7-9ce4-4eb8e405f14c", + "OrganizationName": "Marcia Jones, NP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", - "OrganizationName": "Marquez Anesthesia PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c70a180-f90e-48a7-9ce4-4eb8e405f14c", + "OrganizationName": "Marcia Jones, NP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", - "OrganizationName": "Michael Piazza, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/de31b54a-a7c7-4541-a0d2-03748418bf86", + "OrganizationName": "Dr. Frank Mastrianno Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", - "OrganizationName": "Michael Piazza, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/de31b54a-a7c7-4541-a0d2-03748418bf86", + "OrganizationName": "Dr. Frank Mastrianno Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", - "OrganizationName": "Digestive Institute of Arizona", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", + "OrganizationName": "Josean Ortiz Rosario Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", - "OrganizationName": "Digestive Institute of Arizona", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", + "OrganizationName": "Josean Ortiz Rosario Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4f83b9-a7b2-4be6-a474-15697b4fec16", - "OrganizationName": "LUIS A. BOBEICA, M.D., P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", + "OrganizationName": "Jorge Vallecillo, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4f83b9-a7b2-4be6-a474-15697b4fec16", - "OrganizationName": "LUIS A. BOBEICA, M.D., P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", + "OrganizationName": "Jorge Vallecillo, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9896f4e6-91d0-4ccc-9d1e-2ef31ae41bfe", - "OrganizationName": "HEALTH PEAK INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", + "OrganizationName": "Phabulous Care, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9896f4e6-91d0-4ccc-9d1e-2ef31ae41bfe", - "OrganizationName": "HEALTH PEAK INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", + "OrganizationName": "Phabulous Care, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", - "OrganizationName": "Moonflower MMJ Cards", + "URL": "https://api.patientfusion.com/fhir/r4/v1/43e10075-bdc6-4da4-bc5c-666fd50d7d00", + "OrganizationName": "Ark Medical Group VCA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", - "OrganizationName": "Moonflower MMJ Cards", + "URL": "https://api.practicefusion.com/fhir/r4/v1/43e10075-bdc6-4da4-bc5c-666fd50d7d00", + "OrganizationName": "Ark Medical Group VCA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce7d9bee-fcd7-4c60-beba-204ba5a862b8", - "OrganizationName": "Essential Healthcare Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aef1a6f8-cbc9-4dc4-8005-07f819941bbc", + "OrganizationName": "IK Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce7d9bee-fcd7-4c60-beba-204ba5a862b8", - "OrganizationName": "Essential Healthcare Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aef1a6f8-cbc9-4dc4-8005-07f819941bbc", + "OrganizationName": "IK Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", - "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfd559c-123d-4d2c-bd3d-9673fd3a29e5", + "OrganizationName": "Arthritis \u0026 Diabetes Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", - "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfd559c-123d-4d2c-bd3d-9673fd3a29e5", + "OrganizationName": "Arthritis \u0026 Diabetes Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/557d22c5-9b39-4ca8-8abb-6b24069f8703", - "OrganizationName": "GRACE GALLOWAY", + "URL": "https://api.patientfusion.com/fhir/r4/v1/725a016e-c8fc-4773-a955-6dec22b86411", + "OrganizationName": "Wellness Alliance, PMA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/557d22c5-9b39-4ca8-8abb-6b24069f8703", - "OrganizationName": "GRACE GALLOWAY", + "URL": "https://api.practicefusion.com/fhir/r4/v1/725a016e-c8fc-4773-a955-6dec22b86411", + "OrganizationName": "Wellness Alliance, PMA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", - "OrganizationName": "EnTour Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1eee5b-7548-492d-9ffb-f97a16c60ebc", + "OrganizationName": "Urgent family care Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", - "OrganizationName": "EnTour Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1eee5b-7548-492d-9ffb-f97a16c60ebc", + "OrganizationName": "Urgent family care Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", - "OrganizationName": "Healthspan Longevity", + "URL": "https://api.patientfusion.com/fhir/r4/v1/875f82a3-ca1f-4a12-88d3-a66346873802", + "OrganizationName": "Radhakrishna Janardhan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", - "OrganizationName": "Healthspan Longevity", + "URL": "https://api.practicefusion.com/fhir/r4/v1/875f82a3-ca1f-4a12-88d3-a66346873802", + "OrganizationName": "Radhakrishna Janardhan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", - "OrganizationName": "Boston Facial Plastic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/08b0445b-0acc-436b-938a-a62df7f8d402", + "OrganizationName": "Harmony Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", - "OrganizationName": "Boston Facial Plastic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/08b0445b-0acc-436b-938a-a62df7f8d402", + "OrganizationName": "Harmony Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", - "OrganizationName": "Maranatha Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", + "OrganizationName": "GN Endocrinology Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", - "OrganizationName": "Maranatha Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", + "OrganizationName": "GN Endocrinology Ltd.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3d18541b-556a-4127-b389-95caa262a7a2", - "OrganizationName": "Hope View Gardens Dementia Intervention Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", + "OrganizationName": "HUZ Shifamed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3d18541b-556a-4127-b389-95caa262a7a2", - "OrganizationName": "Hope View Gardens Dementia Intervention Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", + "OrganizationName": "HUZ Shifamed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e6e6970-6b6b-4564-8bc3-9821434db8c2", - "OrganizationName": "Life Reimagined", + "URL": "https://api.patientfusion.com/fhir/r4/v1/63151c9e-a3fa-4781-b379-13a36f36ad5f", + "OrganizationName": "Grace Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e6e6970-6b6b-4564-8bc3-9821434db8c2", - "OrganizationName": "Life Reimagined", + "URL": "https://api.practicefusion.com/fhir/r4/v1/63151c9e-a3fa-4781-b379-13a36f36ad5f", + "OrganizationName": "Grace Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", - "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b139d930-3019-46ea-89ab-8fdd3e67a40c", + "OrganizationName": "BRANFORD FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", - "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b139d930-3019-46ea-89ab-8fdd3e67a40c", + "OrganizationName": "BRANFORD FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", - "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", + "OrganizationName": "New Hope Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", - "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", + "OrganizationName": "New Hope Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", - "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3a67bb4c-3341-4d7f-ad14-7b2e4ece5df1", + "OrganizationName": "Midwest Vascular and Varicose Vein Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", - "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3a67bb4c-3341-4d7f-ad14-7b2e4ece5df1", + "OrganizationName": "Midwest Vascular and Varicose Vein Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c58c1a93-2494-49ca-b405-50d5dca8de3a", - "OrganizationName": "Lawrence Kessel MD and Assoc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e6e344d0-5500-453c-9664-d59a67f8df29", + "OrganizationName": "Healwell Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c58c1a93-2494-49ca-b405-50d5dca8de3a", - "OrganizationName": "Lawrence Kessel MD and Assoc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e6e344d0-5500-453c-9664-d59a67f8df29", + "OrganizationName": "Healwell Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bbb96fe7-c3cb-49be-ad0f-21b6585587c5", - "OrganizationName": "Internal Medicine and Pediatric Partners", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b2dbf81d-3459-407c-a809-861face37d05", + "OrganizationName": "QUEENS PSYCHOTHERAPY LCSW SERVICES P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bbb96fe7-c3cb-49be-ad0f-21b6585587c5", - "OrganizationName": "Internal Medicine and Pediatric Partners", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b2dbf81d-3459-407c-a809-861face37d05", + "OrganizationName": "QUEENS PSYCHOTHERAPY LCSW SERVICES P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d3471e46-040e-4b6a-81a8-eeb0684b6750", + "OrganizationName": "Atenas Martinez Bernal Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d3471e46-040e-4b6a-81a8-eeb0684b6750", + "OrganizationName": "Atenas Martinez Bernal Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/51b412f6-4abf-4535-b1e4-71c901a1bb72", - "OrganizationName": "New Face MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d61274b-9bf2-4813-8cec-685739cd8024", + "OrganizationName": "Policlinica Familiar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/51b412f6-4abf-4535-b1e4-71c901a1bb72", - "OrganizationName": "New Face MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d61274b-9bf2-4813-8cec-685739cd8024", + "OrganizationName": "Policlinica Familiar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ead8ab5-de89-4800-ac42-0d06e48931e3", - "OrganizationName": "Jonathan Chan Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", + "OrganizationName": "JVL mental health consult", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ead8ab5-de89-4800-ac42-0d06e48931e3", - "OrganizationName": "Jonathan Chan Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", + "OrganizationName": "JVL mental health consult", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", + "OrganizationName": "Elleorhim Mental Wellbeing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", + "OrganizationName": "Elleorhim Mental Wellbeing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", - "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21981623-91c8-4ca9-8852-6912a0be4b4a", + "OrganizationName": "Ascension MyHealth Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", - "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21981623-91c8-4ca9-8852-6912a0be4b4a", + "OrganizationName": "Ascension MyHealth Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", - "OrganizationName": "Visiting wound specialists and primary care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4b0cf7f1-5694-4751-9972-36056b7a01cf", + "OrganizationName": "Vijapura Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", - "OrganizationName": "Visiting wound specialists and primary care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b0cf7f1-5694-4751-9972-36056b7a01cf", + "OrganizationName": "Vijapura Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad416607-019b-475a-8ba7-820e831c0e6b", + "OrganizationName": "MARIA VALENTIN MARI, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad416607-019b-475a-8ba7-820e831c0e6b", + "OrganizationName": "MARIA VALENTIN MARI, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", - "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b356f97d-3990-47ca-bf86-83db2337cf31", + "OrganizationName": "Family Health and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", - "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b356f97d-3990-47ca-bf86-83db2337cf31", + "OrganizationName": "Family Health and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/485e303a-d050-4cdf-97b4-50cb16926bc8", - "OrganizationName": "Ricardo Del Villar MD PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80f35def-28fb-4db6-8d39-ae3fbff89870", + "OrganizationName": "JOHN LEE MD SLEEP CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/485e303a-d050-4cdf-97b4-50cb16926bc8", - "OrganizationName": "Ricardo Del Villar MD PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80f35def-28fb-4db6-8d39-ae3fbff89870", + "OrganizationName": "JOHN LEE MD SLEEP CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b8d8e8d-c02e-4089-8461-a05227fe11fb", - "OrganizationName": "Sherill L. Purcell, M.D., FAAP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/78a68e3e-dfca-40e1-ad5e-f1b56885bcc9", + "OrganizationName": "Lets Go Med LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4b8d8e8d-c02e-4089-8461-a05227fe11fb", - "OrganizationName": "Sherill L. Purcell, M.D., FAAP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/78a68e3e-dfca-40e1-ad5e-f1b56885bcc9", + "OrganizationName": "Lets Go Med LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", - "OrganizationName": "Roland Purcell Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", + "OrganizationName": "Advanced Practice Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", - "OrganizationName": "Roland Purcell Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", + "OrganizationName": "Advanced Practice Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", - "OrganizationName": "Fountain of You MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a8e13822-8515-4d9e-a250-6508690be786", + "OrganizationName": "junichioharapra", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", - "OrganizationName": "Fountain of You MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a8e13822-8515-4d9e-a250-6508690be786", + "OrganizationName": "junichioharapra", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/de96f89e-71ed-4cbd-ac17-3a96a46790b3", - "OrganizationName": "Sandpoint Super Drug Clinical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7de438f9-d5d8-4b0b-8fe5-1315481c1f98", + "OrganizationName": "Garrison Medical Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/de96f89e-71ed-4cbd-ac17-3a96a46790b3", - "OrganizationName": "Sandpoint Super Drug Clinical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7de438f9-d5d8-4b0b-8fe5-1315481c1f98", + "OrganizationName": "Garrison Medical Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", - "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", + "OrganizationName": "Kunik Health, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", - "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", + "OrganizationName": "Kunik Health, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/511a0649-804e-4b89-8a1d-5cfae92ab0d9", + "OrganizationName": "FIEL WELLNESS HEALTH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/511a0649-804e-4b89-8a1d-5cfae92ab0d9", + "OrganizationName": "FIEL WELLNESS HEALTH", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e83970d8-827e-47d5-981f-ecaa707bb201", - "OrganizationName": "BRUSH COUNTRY MEDICAL P.L.L.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", + "OrganizationName": "DEW anti-aging and Medspa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e83970d8-827e-47d5-981f-ecaa707bb201", - "OrganizationName": "BRUSH COUNTRY MEDICAL P.L.L.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", + "OrganizationName": "DEW anti-aging and Medspa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", - "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", + "OrganizationName": "Safe Harbor Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", - "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", + "OrganizationName": "Safe Harbor Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", - "OrganizationName": "Town Center Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", + "OrganizationName": "Premier Pain \u0026 Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", - "OrganizationName": "Town Center Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", + "OrganizationName": "Premier Pain \u0026 Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "URL": "https://api.patientfusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", + "OrganizationName": "Direct Surgical Care of Hot Springs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "URL": "https://api.practicefusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", + "OrganizationName": "Direct Surgical Care of Hot Springs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", - "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/22131090-8364-4c98-84bb-62188eb8d8dd", + "OrganizationName": "Reno Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", - "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/22131090-8364-4c98-84bb-62188eb8d8dd", + "OrganizationName": "Reno Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", + "OrganizationName": "Professional Associates in Surgery,LLP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", + "OrganizationName": "Professional Associates in Surgery,LLP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e529905-ad30-4040-9515-7c7ca0922cd7", - "OrganizationName": "Lee Internal Medicine Associates PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9792135-f1cf-43c5-8419-450a42750317", + "OrganizationName": "Rosalind Cropper Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e529905-ad30-4040-9515-7c7ca0922cd7", - "OrganizationName": "Lee Internal Medicine Associates PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9792135-f1cf-43c5-8419-450a42750317", + "OrganizationName": "Rosalind Cropper Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a3542a-de11-4b96-9e42-568e75cc79c8", + "OrganizationName": "christine j amis md", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a3542a-de11-4b96-9e42-568e75cc79c8", + "OrganizationName": "christine j amis md", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/db626e4d-f15b-49e4-a053-1755cada58ec", - "OrganizationName": "JAXSENS WELLNESS CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", + "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/db626e4d-f15b-49e4-a053-1755cada58ec", - "OrganizationName": "JAXSENS WELLNESS CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", + "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", - "OrganizationName": "Action-Med Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/deb8b861-793a-4dd4-999c-8ea11e306d79", + "OrganizationName": "Lisa M. Patrick, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", - "OrganizationName": "Action-Med Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/deb8b861-793a-4dd4-999c-8ea11e306d79", + "OrganizationName": "Lisa M. Patrick, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be64736d-e246-433f-98dc-fd77846f7d49", - "OrganizationName": "Vijay D Ganatra MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cfb1a9aa-9da9-40e5-8824-dda098a6e53f", + "OrganizationName": "Chicago Pain Relief", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be64736d-e246-433f-98dc-fd77846f7d49", - "OrganizationName": "Vijay D Ganatra MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cfb1a9aa-9da9-40e5-8824-dda098a6e53f", + "OrganizationName": "Chicago Pain Relief", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3dc6e14-819b-4e68-82bd-a35992a217b9", - "OrganizationName": "REUBEN OKEMWA Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", + "OrganizationName": "Taylorville Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3dc6e14-819b-4e68-82bd-a35992a217b9", - "OrganizationName": "REUBEN OKEMWA Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", + "OrganizationName": "Taylorville Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", - "OrganizationName": "Berks Diabetes Management, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ae417901-7d78-4f92-830e-5e6967b7e93b", + "OrganizationName": "Marla Mental health Sol LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", - "OrganizationName": "Berks Diabetes Management, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ae417901-7d78-4f92-830e-5e6967b7e93b", + "OrganizationName": "Marla Mental health Sol LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d62721b7-3a40-4f6f-9f1c-9feb3e5a6496", - "OrganizationName": "True Physician Care, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6888e-c6a7-4441-8b05-94f0ae71142c", + "OrganizationName": "Solace Healthcare Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d62721b7-3a40-4f6f-9f1c-9feb3e5a6496", - "OrganizationName": "True Physician Care, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6888e-c6a7-4441-8b05-94f0ae71142c", + "OrganizationName": "Solace Healthcare Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", - "OrganizationName": "Robert Lee - American Medical Group Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", + "OrganizationName": "Calm Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", - "OrganizationName": "Robert Lee - American Medical Group Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", + "OrganizationName": "Calm Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", - "OrganizationName": "Orchard Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", + "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", - "OrganizationName": "Orchard Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", + "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", - "OrganizationName": "NEO Foot and Ankle Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", + "OrganizationName": "Family Practice by the Lake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", - "OrganizationName": "NEO Foot and Ankle Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", + "OrganizationName": "Family Practice by the Lake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c794e34-8dbc-4b58-89f0-c9f41aa7a65e", - "OrganizationName": "Nina K Maw Maw MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", + "OrganizationName": "Clear Minds Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c794e34-8dbc-4b58-89f0-c9f41aa7a65e", - "OrganizationName": "Nina K Maw Maw MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", + "OrganizationName": "Clear Minds Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e7798675-b9b8-454a-a2d3-d299bd36a1d5", - "OrganizationName": "Medical House Call Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1fd73d6c-0708-43e0-922f-def38a96aeaa", + "OrganizationName": "Eugenio Mulero-Portela, MD, FACS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e7798675-b9b8-454a-a2d3-d299bd36a1d5", - "OrganizationName": "Medical House Call Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1fd73d6c-0708-43e0-922f-def38a96aeaa", + "OrganizationName": "Eugenio Mulero-Portela, MD, FACS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", - "OrganizationName": "Plantersville Family Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", + "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", - "OrganizationName": "Plantersville Family Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", + "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/779707c8-98c9-4c35-84b3-5ba63837db79", - "OrganizationName": "Neighborhood Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", + "OrganizationName": "Bare Beauty Female Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/779707c8-98c9-4c35-84b3-5ba63837db79", - "OrganizationName": "Neighborhood Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", + "OrganizationName": "Bare Beauty Female Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", - "OrganizationName": "Riant Health Services, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", + "OrganizationName": "San Diego Family Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", - "OrganizationName": "Riant Health Services, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", + "OrganizationName": "San Diego Family Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/42155229-925b-4646-aca5-d4b3c67ca97a", - "OrganizationName": "Rhoades Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf2ef7d-1918-493a-94d6-d50bc688695b", + "OrganizationName": "WILLIAM A SAYLES MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/42155229-925b-4646-aca5-d4b3c67ca97a", - "OrganizationName": "Rhoades Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf2ef7d-1918-493a-94d6-d50bc688695b", + "OrganizationName": "WILLIAM A SAYLES MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/911dc593-51a0-4b7c-bc1d-3ce476e8d8c5", - "OrganizationName": "Grace Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", + "OrganizationName": "James Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/911dc593-51a0-4b7c-bc1d-3ce476e8d8c5", - "OrganizationName": "Grace Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", + "OrganizationName": "James Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", - "OrganizationName": "CLANTON INTERNAL MEDICINE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", + "OrganizationName": "Physicians For Seniors", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", - "OrganizationName": "CLANTON INTERNAL MEDICINE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", + "OrganizationName": "Physicians For Seniors", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", - "OrganizationName": "Meridian Integrative Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", + "OrganizationName": "Dr. Michelle Gordon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", - "OrganizationName": "Meridian Integrative Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", + "OrganizationName": "Dr. Michelle Gordon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", - "OrganizationName": "Pablo Decastro Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", + "OrganizationName": "Mario Gonzalez Casafont", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", - "OrganizationName": "Pablo Decastro Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", + "OrganizationName": "Mario Gonzalez Casafont", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7e3ba7d2-7731-47ac-8056-4af211641d1c", - "OrganizationName": "Rudolf J Kuszmider MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/61c91165-6d19-4b99-bde1-72c7f1baf410", + "OrganizationName": "IBHS P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7e3ba7d2-7731-47ac-8056-4af211641d1c", - "OrganizationName": "Rudolf J Kuszmider MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/61c91165-6d19-4b99-bde1-72c7f1baf410", + "OrganizationName": "IBHS P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", - "OrganizationName": "Troy Johnson Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", + "OrganizationName": "North Shore Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", - "OrganizationName": "Troy Johnson Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", + "OrganizationName": "North Shore Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", - "OrganizationName": "Eastern Shore Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", + "OrganizationName": "Renew Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", - "OrganizationName": "Eastern Shore Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", + "OrganizationName": "Renew Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5cdb6703-8281-46b7-8329-63f83afdcc1c", - "OrganizationName": "Restorative Neurology and Headache Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5ae13c57-90f4-488b-9ce4-d3b53abdff2b", + "OrganizationName": "Jarrell Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5cdb6703-8281-46b7-8329-63f83afdcc1c", - "OrganizationName": "Restorative Neurology and Headache Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5ae13c57-90f4-488b-9ce4-d3b53abdff2b", + "OrganizationName": "Jarrell Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/89e5c643-638a-484d-b2e5-3bd5e908850e", - "OrganizationName": "Noe Marioni, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", + "OrganizationName": "West Cayuga Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/89e5c643-638a-484d-b2e5-3bd5e908850e", - "OrganizationName": "Noe Marioni, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", + "OrganizationName": "West Cayuga Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", - "OrganizationName": "Desir Medical PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/51e1219e-0764-4014-9433-cf1c9c11f8e1", + "OrganizationName": "Certi-Fi NP PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", - "OrganizationName": "Desir Medical PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/51e1219e-0764-4014-9433-cf1c9c11f8e1", + "OrganizationName": "Certi-Fi NP PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", - "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6cbfbf3b-d2ea-4f79-b7be-940bf8244890", + "OrganizationName": "Psych Matters LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", - "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6cbfbf3b-d2ea-4f79-b7be-940bf8244890", + "OrganizationName": "Psych Matters LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ba6683a-e450-43a2-8dc0-6d5208a93167", - "OrganizationName": "Dr. Marla Kushner", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a337e49e-0c5c-42e9-bf75-e59802d3c979", + "OrganizationName": "Coastal River Wellness Of Alabama", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ba6683a-e450-43a2-8dc0-6d5208a93167", - "OrganizationName": "Dr. Marla Kushner", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a337e49e-0c5c-42e9-bf75-e59802d3c979", + "OrganizationName": "Coastal River Wellness Of Alabama", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", - "OrganizationName": "Clinical Bridges", + "URL": "https://api.patientfusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", + "OrganizationName": "Arizona Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", - "OrganizationName": "Clinical Bridges", + "URL": "https://api.practicefusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", + "OrganizationName": "Arizona Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/03f7ba9c-aa47-4991-9128-f55681e00780", - "OrganizationName": "Divine Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", + "OrganizationName": "Dr. Ricardo Gago-Pinero office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/03f7ba9c-aa47-4991-9128-f55681e00780", - "OrganizationName": "Divine Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", + "OrganizationName": "Dr. Ricardo Gago-Pinero office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/293b2215-71c6-47d1-8284-27358e395c16", - "OrganizationName": "IMIDeology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", + "OrganizationName": "Turning Point Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/293b2215-71c6-47d1-8284-27358e395c16", - "OrganizationName": "IMIDeology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", + "OrganizationName": "Turning Point Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/accd644e-ea17-423f-b59a-734cb9861866", - "OrganizationName": "Dr. Zaytoun Medical Care PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", + "OrganizationName": "Revitalife Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/accd644e-ea17-423f-b59a-734cb9861866", - "OrganizationName": "Dr. Zaytoun Medical Care PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", + "OrganizationName": "Revitalife Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", - "OrganizationName": "David Bleza MD FACS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/166d0403-2e56-4ffd-ba19-acb3260c16db", + "OrganizationName": "Generations Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", - "OrganizationName": "David Bleza MD FACS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/166d0403-2e56-4ffd-ba19-acb3260c16db", + "OrganizationName": "Generations Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d683680-3f87-473f-aeee-8bd64609e837", - "OrganizationName": "Shivendra Pandey Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/10f0fa97-4c6b-4ed9-868e-d4a8f8208166", + "OrganizationName": "Katherine Johnson Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d683680-3f87-473f-aeee-8bd64609e837", - "OrganizationName": "Shivendra Pandey Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/10f0fa97-4c6b-4ed9-868e-d4a8f8208166", + "OrganizationName": "Katherine Johnson Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", - "OrganizationName": "Surprise Valley Health and Wellness, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "AHN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", - "OrganizationName": "Surprise Valley Health and Wellness, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "AHN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16ac9a8a-bcbd-42ce-be7d-8913a92c8609", - "OrganizationName": "Peter Shalit MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", + "OrganizationName": "Hemcare Medical Clinic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16ac9a8a-bcbd-42ce-be7d-8913a92c8609", - "OrganizationName": "Peter Shalit MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", + "OrganizationName": "Hemcare Medical Clinic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa288c6a-d136-47f3-bfa7-17a5396ed376", - "OrganizationName": "mitchell kurk Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a5c84a7-bdbb-43c8-8a1d-15d5e39925b5", + "OrganizationName": "Alvarez Diaz Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa288c6a-d136-47f3-bfa7-17a5396ed376", - "OrganizationName": "mitchell kurk Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a5c84a7-bdbb-43c8-8a1d-15d5e39925b5", + "OrganizationName": "Alvarez Diaz Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/313bce9a-02f0-470e-9b8d-513928a1553f", - "OrganizationName": "The Case Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7be9d502-8706-4c27-8cbb-5b0815704c44", + "OrganizationName": "Edgardo Bermudez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/313bce9a-02f0-470e-9b8d-513928a1553f", - "OrganizationName": "The Case Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7be9d502-8706-4c27-8cbb-5b0815704c44", + "OrganizationName": "Edgardo Bermudez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a50a59b4-a082-4804-9a85-57d975c2788d", - "OrganizationName": "Nightwater Health of California, APMC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb2b78f6-c589-4d22-8bf8-ebf5839209a3", + "OrganizationName": "Kevin Hundley Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a50a59b4-a082-4804-9a85-57d975c2788d", - "OrganizationName": "Nightwater Health of California, APMC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb2b78f6-c589-4d22-8bf8-ebf5839209a3", + "OrganizationName": "Kevin Hundley Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fff873eb-3f9b-4d95-87bf-d40da90879fe", - "OrganizationName": "Nightwater Clinic LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Abraham Boackle Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fff873eb-3f9b-4d95-87bf-d40da90879fe", - "OrganizationName": "Nightwater Clinic LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Abraham Boackle Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", - "OrganizationName": "Lake Oswego GYN", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", + "OrganizationName": "Robbins Family Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", - "OrganizationName": "Lake Oswego GYN", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", + "OrganizationName": "Robbins Family Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/329f3a39-b5be-4231-b2ac-7c2418bdba44", - "OrganizationName": "Phoenix Eye Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", + "OrganizationName": "Rheumatology Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/329f3a39-b5be-4231-b2ac-7c2418bdba44", - "OrganizationName": "Phoenix Eye Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", + "OrganizationName": "Rheumatology Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", - "OrganizationName": "Samuel sugg Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/880c7642-8ad7-45ee-a332-fddede4d5f92", + "OrganizationName": "Renann Kassis Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", - "OrganizationName": "Samuel sugg Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/880c7642-8ad7-45ee-a332-fddede4d5f92", + "OrganizationName": "Renann Kassis Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/65bcb64d-3de4-4a5c-b2aa-7668002f4d55", - "OrganizationName": "Simpkins Medical Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", + "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/65bcb64d-3de4-4a5c-b2aa-7668002f4d55", - "OrganizationName": "Simpkins Medical Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", + "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2357a25e-0d04-4639-b459-aa16b919552e", - "OrganizationName": "Cognitive Works", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", + "OrganizationName": "Eagle EyeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2357a25e-0d04-4639-b459-aa16b919552e", - "OrganizationName": "Cognitive Works", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", + "OrganizationName": "Eagle EyeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", - "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff7ec2bd-dd83-4c7a-958a-4b33e1b604fb", + "OrganizationName": "Healthy Choice Family Clinic \u0026 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", - "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff7ec2bd-dd83-4c7a-958a-4b33e1b604fb", + "OrganizationName": "Healthy Choice Family Clinic \u0026 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", - "OrganizationName": "Suffern Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb6b3c14-2fc1-4704-9c99-08a5e460e8c2", + "OrganizationName": "Ala Moana Walk-In Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", - "OrganizationName": "Suffern Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb6b3c14-2fc1-4704-9c99-08a5e460e8c2", + "OrganizationName": "Ala Moana Walk-In Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/743bfee0-0aba-4a4d-ae5f-34b5b71c3ebc", - "OrganizationName": "JS NAUHEIM,MD,PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", + "OrganizationName": "Primary Care of Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/743bfee0-0aba-4a4d-ae5f-34b5b71c3ebc", - "OrganizationName": "JS NAUHEIM,MD,PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", + "OrganizationName": "Primary Care of Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5597a01e-873a-4913-93d2-ae2c97df6e54", - "OrganizationName": "Carina Cruz Berrios Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", + "OrganizationName": "Idaho Modern Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5597a01e-873a-4913-93d2-ae2c97df6e54", - "OrganizationName": "Carina Cruz Berrios Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", + "OrganizationName": "Idaho Modern Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", - "OrganizationName": "New Mexico Psych Med Services, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", + "OrganizationName": "Berman Monell Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", - "OrganizationName": "New Mexico Psych Med Services, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", + "OrganizationName": "Berman Monell Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a470de3c-49af-4650-a800-5fb4335bdb25", - "OrganizationName": "Holistic Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd66144-aae2-448a-ae8b-fa5c6face9a8", + "OrganizationName": "High Horizon Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a470de3c-49af-4650-a800-5fb4335bdb25", - "OrganizationName": "Holistic Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd66144-aae2-448a-ae8b-fa5c6face9a8", + "OrganizationName": "High Horizon Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", - "OrganizationName": "Pinnacle Primary Care PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", + "OrganizationName": "marccantillonpr", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", - "OrganizationName": "Pinnacle Primary Care PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", + "OrganizationName": "marccantillonpr", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c88e6e59-081c-4799-84b2-24e6d4c05edc", + "OrganizationName": "Generations Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c88e6e59-081c-4799-84b2-24e6d4c05edc", + "OrganizationName": "Generations Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f70127a5-8e45-41ff-81b4-8f34dce86490", - "OrganizationName": "Warrick County Health Department", + "URL": "https://api.patientfusion.com/fhir/r4/v1/527b8968-1b67-46ce-a742-6bb28364208d", + "OrganizationName": "Bahram Taghavi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f70127a5-8e45-41ff-81b4-8f34dce86490", - "OrganizationName": "Warrick County Health Department", + "URL": "https://api.practicefusion.com/fhir/r4/v1/527b8968-1b67-46ce-a742-6bb28364208d", + "OrganizationName": "Bahram Taghavi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", - "OrganizationName": "Cathedral Ledge Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc260406-73e3-479a-85a6-2924030412ec", + "OrganizationName": "Irina Urusova, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", - "OrganizationName": "Cathedral Ledge Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc260406-73e3-479a-85a6-2924030412ec", + "OrganizationName": "Irina Urusova, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", - "OrganizationName": "Sara J Sinclair, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", + "OrganizationName": "DM Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", - "OrganizationName": "Sara J Sinclair, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", + "OrganizationName": "DM Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f729c878-619a-458b-a9da-eedcb979a274", - "OrganizationName": "OXON HILL PRIMARY MEDICINE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", + "OrganizationName": "US MEDICAL CLINICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f729c878-619a-458b-a9da-eedcb979a274", - "OrganizationName": "OXON HILL PRIMARY MEDICINE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", + "OrganizationName": "US MEDICAL CLINICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", - "OrganizationName": "Trinity Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", + "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", - "OrganizationName": "Trinity Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", + "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8047371b-e2d6-4d8a-ba23-f330d7a93df0", - "OrganizationName": "Vibrant Vision", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", + "OrganizationName": "Asya Ofshteyn Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8047371b-e2d6-4d8a-ba23-f330d7a93df0", - "OrganizationName": "Vibrant Vision", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", + "OrganizationName": "Asya Ofshteyn Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", - "OrganizationName": "Botanical Medsurg", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5df85414-78de-4ebd-aaa3-34cebcd8bea0", + "OrganizationName": "MS Health Care S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", - "OrganizationName": "Botanical Medsurg", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5df85414-78de-4ebd-aaa3-34cebcd8bea0", + "OrganizationName": "MS Health Care S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", - "OrganizationName": "ÁINE MEDICAL INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", + "OrganizationName": "Upper County Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", - "OrganizationName": "ÁINE MEDICAL INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", + "OrganizationName": "Upper County Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8c5f992d-059d-40cf-a622-72046863e671", - "OrganizationName": "madhu bhatia MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", + "OrganizationName": "Felton Health Care Specialists, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8c5f992d-059d-40cf-a622-72046863e671", - "OrganizationName": "madhu bhatia MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", + "OrganizationName": "Felton Health Care Specialists, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", - "OrganizationName": "LAMD MEDICAL GROUP Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ef6e8c78-48fe-42fa-bf81-e1dfef5b7d79", + "OrganizationName": "INFECTIOUS DISEASES ASSOCIATES OF NORTH FLORIDA,P.A", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", - "OrganizationName": "LAMD MEDICAL GROUP Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ef6e8c78-48fe-42fa-bf81-e1dfef5b7d79", + "OrganizationName": "INFECTIOUS DISEASES ASSOCIATES OF NORTH FLORIDA,P.A", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c2004c2a-2301-4577-8955-82636bc72768", - "OrganizationName": "Colorado Mountain Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", + "OrganizationName": "NWP Family Practice Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c2004c2a-2301-4577-8955-82636bc72768", - "OrganizationName": "Colorado Mountain Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", + "OrganizationName": "NWP Family Practice Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", - "OrganizationName": "AMI Expeditionary Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2501e292-9e3b-4039-b62e-d9eb25976787", + "OrganizationName": "Long Hollow Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", - "OrganizationName": "AMI Expeditionary Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2501e292-9e3b-4039-b62e-d9eb25976787", + "OrganizationName": "Long Hollow Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/baedcc79-bc96-4144-815d-8143ab00ec18", - "OrganizationName": "ZULFIQAR ALI MD FACC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e2e8391-4c80-45d0-b41e-34299d0ea3ff", + "OrganizationName": "Urogynecology Center of Huntsville, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/baedcc79-bc96-4144-815d-8143ab00ec18", - "OrganizationName": "ZULFIQAR ALI MD FACC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e2e8391-4c80-45d0-b41e-34299d0ea3ff", + "OrganizationName": "Urogynecology Center of Huntsville, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c2f95b03-c9b3-4393-9761-32c246085e5d", - "OrganizationName": "Steven Fishburn Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ea06fb91-b7b3-4f4c-8864-5fc621454e07", + "OrganizationName": "Inner Vibrance, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c2f95b03-c9b3-4393-9761-32c246085e5d", - "OrganizationName": "Steven Fishburn Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ea06fb91-b7b3-4f4c-8864-5fc621454e07", + "OrganizationName": "Inner Vibrance, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d986dbe-522f-41e9-a495-d6bdf48dbf6f", - "OrganizationName": "Priority Healthcare and Weight Loss", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", + "OrganizationName": "Cultivating Resilience", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d986dbe-522f-41e9-a495-d6bdf48dbf6f", - "OrganizationName": "Priority Healthcare and Weight Loss", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", + "OrganizationName": "Cultivating Resilience", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", - "OrganizationName": "SONI MEDICAL GROUP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/941c5463-9a63-4feb-9e8d-f8c04d527b99", + "OrganizationName": "Cristina Wyse Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", - "OrganizationName": "SONI MEDICAL GROUP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/941c5463-9a63-4feb-9e8d-f8c04d527b99", + "OrganizationName": "Cristina Wyse Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", - "OrganizationName": "BOYNTON PRIMARY CARE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/71137cd7-bc1d-4d44-bc10-88d995620a28", + "OrganizationName": "selma Rural Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", - "OrganizationName": "BOYNTON PRIMARY CARE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/71137cd7-bc1d-4d44-bc10-88d995620a28", + "OrganizationName": "selma Rural Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", - "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f292a380-46b2-4174-9356-ff6ab93dcf87", + "OrganizationName": "Lozier Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", - "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f292a380-46b2-4174-9356-ff6ab93dcf87", + "OrganizationName": "Lozier Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", - "OrganizationName": "Pain and Spine Center of Charlottesville", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ecc53789-0b4e-4d9d-8ee4-63c1ba6cef38", + "OrganizationName": "WellCare at Home", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", - "OrganizationName": "Pain and Spine Center of Charlottesville", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ecc53789-0b4e-4d9d-8ee4-63c1ba6cef38", + "OrganizationName": "WellCare at Home", "NPIID": "", "OrganizationZipCode": "" } diff --git a/resources/prod_resources/Qualifacts_Systems_LLC_1_EndpointSources.json b/resources/prod_resources/Qualifacts_Systems_LLC_1_EndpointSources.json index 161f80427..2b4f72b61 100644 --- a/resources/prod_resources/Qualifacts_Systems_LLC_1_EndpointSources.json +++ b/resources/prod_resources/Qualifacts_Systems_LLC_1_EndpointSources.json @@ -1,7 +1,7 @@ { "Endpoints": [ { - "URL": "https://cms.smilecdr.com/fhir-request", + "URL": "https://fhir.cbh4.crediblebh.com", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Qualifacts_Systems_LLC_2_EndpointSources.json b/resources/prod_resources/Qualifacts_Systems_LLC_2_EndpointSources.json new file mode 100644 index 000000000..161f80427 --- /dev/null +++ b/resources/prod_resources/Qualifacts_Systems_LLC_2_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://cms.smilecdr.com/fhir-request", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/Veradigm_EndpointSources.json b/resources/prod_resources/Veradigm_EndpointSources.json index 007cfe759..1645e4ce1 100644 --- a/resources/prod_resources/Veradigm_EndpointSources.json +++ b/resources/prod_resources/Veradigm_EndpointSources.json @@ -769,25 +769,13 @@ "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/11157843", - "OrganizationName": "Advance Care Health Systems", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10359846", - "OrganizationName": "Advance Care Health Systems", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10359846", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/11157843", "OrganizationName": "Advance Care Health Systems", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/11157843", + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/11157843", "OrganizationName": "Advance Care Health Systems", "NPIID": "", "OrganizationZipCode": "" @@ -840,6 +828,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10044412", + "OrganizationName": "Advanced Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10044412", + "OrganizationName": "Advanced Pain Management Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10552842", "OrganizationName": "ADVANCED REHABILITATION MEDICINE LLC", @@ -1754,13 +1754,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/76113", - "OrganizationName": "Atlantic Ob/Gyn Associates", + "OrganizationName": "Atlantic ObGyn Assoc Pc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/76113", - "OrganizationName": "Atlantic Ob/Gyn Associates", + "OrganizationName": "Atlantic ObGyn Assoc Pc", "NPIID": "", "OrganizationZipCode": "" }, @@ -2412,6 +2412,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10041765", + "OrganizationName": "Blue Ridge Ent \u0026 Plastic Surgery Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10041765", + "OrganizationName": "Blue Ridge Ent \u0026 Plastic Surgery Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/1700211A", "OrganizationName": "Blue Ridge Medical Group", @@ -2778,6 +2790,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/57404", + "OrganizationName": "Cadillac Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/9857", "OrganizationName": "Caduceus Corporation", @@ -2828,25 +2846,25 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/77455DEF", - "OrganizationName": "Cancer And Blood Spec Defence", + "OrganizationName": "Cancer And Blood Spec Investigation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/77455DEF", - "OrganizationName": "Cancer And Blood Spec Defence", + "OrganizationName": "Cancer And Blood Spec Investigation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/77455INV", - "OrganizationName": "Cancer And Blood Spec Defence", + "OrganizationName": "Cancer And Blood Spec Investigation", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/77455INV", - "OrganizationName": "Cancer And Blood Spec Defence", + "OrganizationName": "Cancer And Blood Spec Investigation", "NPIID": "", "OrganizationZipCode": "" }, @@ -3450,6 +3468,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10049726", + "OrganizationName": "Center City Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10049726", + "OrganizationName": "Center City Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10082049", "OrganizationName": "Center Disease and Surgery Spine", @@ -4812,6 +4842,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10039008", + "OrganizationName": "Corona Temecula Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10039008", + "OrganizationName": "Corona Temecula Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10079096", "OrganizationName": "Craig B Henry Pllc", @@ -5292,6 +5334,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10030761", + "OrganizationName": "Derry Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10030761", + "OrganizationName": "Derry Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10044398", "OrganizationName": "Desai Medical Center", @@ -5364,6 +5418,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10034096", + "OrganizationName": "Digestive Disease Associates, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10034096", + "OrganizationName": "Digestive Disease Associates, LTD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10062222", "OrganizationName": "Digestive Disease Specialists", @@ -5376,6 +5442,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10034640", + "OrganizationName": "Digestive Health Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10034640", + "OrganizationName": "Digestive Health Assoc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0004572", "OrganizationName": "Digestive Medicine Associates", @@ -6518,25 +6596,25 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10012445", - "OrganizationName": "ENT Surgical Consultants", + "OrganizationName": "ENT Surgical Consultants Ltd", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10012445", - "OrganizationName": "ENT Surgical Consultants", + "OrganizationName": "ENT Surgical Consultants Ltd", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0002371", - "OrganizationName": "ENT Surgical Consultants", + "OrganizationName": "ENT Surgical Consultants Ltd", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0002371", - "OrganizationName": "ENT Surgical Consultants", + "OrganizationName": "ENT Surgical Consultants Ltd", "NPIID": "", "OrganizationZipCode": "" }, @@ -7404,6 +7482,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0002961", + "OrganizationName": "Fort Collins Youth Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/71963", "OrganizationName": "Fort Myers Pediatrics", @@ -8600,13 +8684,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0008338", - "OrganizationName": "Houston Interventional Cardiology P.A.", + "OrganizationName": "Houston Interventional Cardiology PA", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0008338", - "OrganizationName": "Houston Interventional Cardiology P.A.", + "OrganizationName": "Houston Interventional Cardiology PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -9026,13 +9110,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/70435", - "OrganizationName": "Interventional Cardiology Medical Group", + "OrganizationName": "Interventional Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/70435", - "OrganizationName": "Interventional Cardiology Medical Group", + "OrganizationName": "Interventional Cardiology", "NPIID": "", "OrganizationZipCode": "" }, @@ -10488,6 +10572,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10049491", + "OrganizationName": "LATOUCHE PEDIATRICS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10049491", + "OrganizationName": "LATOUCHE PEDIATRICS", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/74899", "OrganizationName": "Laura Morgan Md Inc", @@ -10790,13 +10886,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/70372", - "OrganizationName": "Lung Center Of Nevada", + "OrganizationName": "Lung Center Of Neveda", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/70372", - "OrganizationName": "Lung Center Of Nevada", + "OrganizationName": "Lung Center Of Neveda", "NPIID": "", "OrganizationZipCode": "" }, @@ -11166,6 +11262,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10097638", + "OrganizationName": "Masonboro Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10097638", + "OrganizationName": "Masonboro Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/9274", "OrganizationName": "Matthew Friedman Md", @@ -11286,18 +11394,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/59048", - "OrganizationName": "Med and Surg Of Corsicana", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/59048", - "OrganizationName": "Med and Surg Of Corsicana", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/6609", "OrganizationName": "Med Center 1", @@ -11862,6 +11958,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10028476", + "OrganizationName": "Milltown Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10028476", + "OrganizationName": "Milltown Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/75761", "OrganizationName": "Mir Neurology Center", @@ -11970,6 +12078,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10045835", + "OrganizationName": "MORRIS AVENUE MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10045835", + "OrganizationName": "MORRIS AVENUE MEDICAL CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/77722", "OrganizationName": "Morrow County Hospital Primary Care", @@ -12174,6 +12294,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10018231", + "OrganizationName": "Mycare Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10018231", + "OrganizationName": "Mycare Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/56545N", "OrganizationName": "Myers and Miller Podiatry Inc", @@ -12246,6 +12378,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0011245", + "OrganizationName": "Naugatuck Valley Gastroenterology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0011245", + "OrganizationName": "Naugatuck Valley Gastroenterology Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/75876A", "OrganizationName": "NCHIE Test DB 2", @@ -12450,6 +12594,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10029988", + "OrganizationName": "Neurology Specialists, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10029988", + "OrganizationName": "Neurology Specialists, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10067615", "OrganizationName": "NeuroMicroSpine", @@ -12906,6 +13062,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10045838", + "OrganizationName": "Northside Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10045838", + "OrganizationName": "Northside Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10023127", "OrganizationName": "Northside Hospital dba Medical Assoc Of North Georgia", @@ -13206,6 +13374,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10046172", + "OrganizationName": "Optimal Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10046172", + "OrganizationName": "Optimal Health Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/56334", "OrganizationName": "Orange County Ear Nose And Throat", @@ -13302,6 +13482,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10050584", + "OrganizationName": "Orthopaedic \u0026 Fracture Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10050584", + "OrganizationName": "Orthopaedic \u0026 Fracture Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10063219", "OrganizationName": "Orthopaedic Solutions PC", @@ -13398,6 +13590,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10030532", + "OrganizationName": "Our Family Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10030532", + "OrganizationName": "Our Family Doctor", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10024028", "OrganizationName": "Our Family Doctor PLLC", @@ -14264,13 +14468,13 @@ }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/76109", - "OrganizationName": "Premier Medical Group", + "OrganizationName": "Premier Healthcare Assoc Pc", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/76109", - "OrganizationName": "Premier Medical Group", + "OrganizationName": "Premier Healthcare Assoc Pc", "NPIID": "", "OrganizationZipCode": "" }, @@ -15252,6 +15456,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10359846", + "OrganizationName": "Rogue Valley Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10359846", + "OrganizationName": "Rogue Valley Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10034072", "OrganizationName": "Rome Gastroenterology Associates", @@ -15930,6 +16146,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10091597", + "OrganizationName": "Solid Rock Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10091597", + "OrganizationName": "Solid Rock Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/77825", "OrganizationName": "Somerset Family Medicine", @@ -16242,6 +16470,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10033441", + "OrganizationName": "Southwest Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10033441", + "OrganizationName": "Southwest Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/56735", "OrganizationName": "Southwest General Health Center", @@ -16470,6 +16710,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10031613", + "OrganizationName": "St George Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10031613", + "OrganizationName": "St George Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10083020", "OrganizationName": "St Josephs Cardiology Group LLC", @@ -17598,15 +17850,27 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10043119", + "OrganizationName": "Thomas \u0026 Thomas Medical Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10043119", + "OrganizationName": "Thomas \u0026 Thomas Medical Ltd", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0011453", - "OrganizationName": "Thomas E Jackson Md", + "OrganizationName": "Thomas E Jackson MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0011453", - "OrganizationName": "Thomas E Jackson Md", + "OrganizationName": "Thomas E Jackson MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -18162,6 +18426,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10477849", + "OrganizationName": "Urology Centers of Alabama", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/69204", "OrganizationName": "Urology Clinic Of Utah Valley", @@ -18330,6 +18600,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10855851", + "OrganizationName": "Van Wert Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10855851", + "OrganizationName": "Van Wert Family Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10357844", "OrganizationName": "Vascular and Vein Institute of the South", @@ -18540,12 +18822,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/0011777", + "OrganizationName": "Wasatch Peak Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10057270", "OrganizationName": "Wasatch Peak Family Practice", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/0011777", + "OrganizationName": "Wasatch Peak Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10038507", "OrganizationName": "Washington Medical Group", @@ -18618,6 +18912,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/11167843", + "OrganizationName": "WellMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/59048", + "OrganizationName": "WellMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/11167843", + "OrganizationName": "WellMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/59048", + "OrganizationName": "WellMed", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10035746", "OrganizationName": "Wen Liu Md", @@ -18786,6 +19104,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10012380", + "OrganizationName": "Wikler Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/fhir/10012380", + "OrganizationName": "Wikler Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://fhir.fhirpoint.open.allscripts.com/fhirroute/open/10055449", "OrganizationName": "William B Funk Md Pa", diff --git a/resources/prod_resources/athenahealth_Inc_EndpointSources.json b/resources/prod_resources/athenahealth_Inc_EndpointSources.json index 107068f16..43b58b2ab 100644 --- a/resources/prod_resources/athenahealth_Inc_EndpointSources.json +++ b/resources/prod_resources/athenahealth_Inc_EndpointSources.json @@ -1,17 +1,5 @@ { "Endpoints": [ - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "RI - Anchor", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Community Health Ministry, Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NC - Sollus Pediatrics", @@ -758,7 +746,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - Community Advanced Practice Nurses", + "OrganizationName": "GA - Our House, Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -1616,25 +1604,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart – North", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart – Turkey Creek", + "OrganizationName": "TENNOVA HEART", "NPIID": "", "OrganizationZipCode": "" }, @@ -5568,12 +5538,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Appalachian Family Practice, P.A.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CT - Greenwich Pediatric Associates, LLC", @@ -5616,12 +5580,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Total Urology Care of New York", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WA - Dermatology Care Center", @@ -8424,12 +8382,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MD - SDM-1 Stop Primary and Urgent Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Achilles Health Care, LLC.", @@ -9536,31 +9488,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brazos Family Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Granbury Hospital Care", + "OrganizationName": "Hood Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Granbury Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Granbury Specialty Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lakeside Physicians", + "OrganizationName": "Lake Granbury HB Medical Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -10314,66 +10248,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "**DO NOT USE**", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Florida", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "**DO NOT USE**", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Georgia", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kentucky", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Carolina", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "**DO NOT USE**", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kansas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Texas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wisconsin", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AL - J Paul Jones", @@ -10766,7 +10640,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Health Physicians' Specialty Hospital (a campus of Siloam Springs Regional Hospital", + "OrganizationName": "AR - CHS - PF Fayetteville Arkansas Hosp", "NPIID": "", "OrganizationZipCode": "" }, @@ -12020,7 +11894,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Bliss Healthcare Services", + "OrganizationName": "FL - BLISS HEALTH INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13746,6 +13620,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lancaster Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PALMETTO TRI COUNTY PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MA - Brandse, Karen-Gail", @@ -15618,6 +15504,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RELYMD VIRTUAL HEALTH GA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "RIVERSIDE EMERGENCY PHYSICIANS", @@ -17324,7 +17216,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Florek / Meyers", + "OrganizationName": "MI - Meyers, Jeffery", "NPIID": "", "OrganizationZipCode": "" }, @@ -17868,6 +17760,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MORRISTOWN CLINIC CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Guadalupe Zamora MD PA", @@ -17978,31 +17876,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "River Region Physician Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Physician Practices of River Region", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Heart \u0026 Vascular Center at River Region", + "OrganizationName": "Vicksburg Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -18552,6 +18426,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Revitalize Infusion", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Rosaasen Family Medicine", @@ -18672,12 +18552,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MS - Copiah County Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Poverello Center, Inc", @@ -19946,145 +19820,43 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Baker Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Baker Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bluewater Bay Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bluewater – Gateway Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Express Medical Care of North Okaloosa Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gateway Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gateway Medical Clinic – Baker", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gateway Medical Clinic – Laural Hill", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hospitalist Services of Okaloosa County", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Medical Center Surgery Center", + "OrganizationName": "FL - CHS-North Okaloosa Med Ctr Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Medical Center – Transitional Care Unit", + "OrganizationName": "North Okaloosa RHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Physician Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Physician Group - Urology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Physician Group – Convenient Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Physician Group – Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "North Okaloosa Physician Group – Surgery Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Okaloosa Medical Group; Okaloosa Medical Group – Baker", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Okaloosa Obstetrics \u0026 Gynecology of North Okaloosa Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Okaloosa Orthopedic and Sports Medicine Clinic", + "OrganizationName": "AZ - Arizona Urology", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Arizona Urology", + "OrganizationName": "FL - Putnam Pulmonary", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Putnam Pulmonary", + "OrganizationName": "NY - Palisades Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Palisades Pediatrics", + "OrganizationName": "TX - Tomagwa Healthcare Ministries", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Tomagwa Healthcare Ministries", + "OrganizationName": "DYERSBURG CLINIC CORP", "NPIID": "", "OrganizationZipCode": "" }, @@ -20138,109 +19910,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Behavioral Health - Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Cardiology - Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Healthworks Medical Specialties – Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Healthworks – Peerless", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart – Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Infectious Disease – Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Integrative Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Neurology – Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Pain Medicine - Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care - Ocoee", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care - Ooltewah", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care – Athens", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care – Peerless", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Walk-In Clinic – North", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Walk-In Clinic – Ooltewah", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Weight Loss Cleveland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova – Healthworks", + "OrganizationName": "SKYRIDGE CLINICAL ASSOCIATES LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Westside Internal Medicine", + "OrganizationName": "Tennova Medical Group Cleveland", "NPIID": "", "OrganizationZipCode": "" }, @@ -20352,6 +20028,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mississippi County Hospital System", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - WholeCare LLC", @@ -22064,163 +21746,121 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TN - Associates In Womens Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Elica Health Centers", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AR - Five Rivers Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Pulmonary \u0026 Sleep Consultants KS", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Kelly Lambeth CRNP, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PFCC, LLC", + "OrganizationName": "MCNAIRY CLINIC CORP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Nourish Wellness", + "OrganizationName": "MCNAIRY HOSPITAL CORPORATION", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MN - Lifespark", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Anderson Mill Physician Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brock Primary Care", + "OrganizationName": "TN - Associates In Womens Health", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park Breast Center", + "OrganizationName": "Elica Health Centers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park Gynecology", + "OrganizationName": "AR - Five Rivers Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park Neurology and Sleep Medicine", + "OrganizationName": "KS - Pulmonary \u0026 Sleep Consultants KS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park OB/Gyn Associates", + "OrganizationName": "Kelly Lambeth CRNP, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park Physician Associates", + "OrganizationName": "PFCC, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park Pulmonology", + "OrganizationName": "WA - Nourish Wellness", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Center for Minimally Invasive and Reconstructive Gynecology", + "OrganizationName": "MN - Lifespark", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ear Nose \u0026 Throat Associates of Texas", + "OrganizationName": "Big Bend", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Texas Pulmonary and Sleep Center", + "OrganizationName": "Cedar Park", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family First Healthcare", + "OrganizationName": "Cedar Park Occupational Medicine", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hill County Orthopaedics", + "OrganizationName": "Hill Regional", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hill County Surgical Services", + "OrganizationName": "Laredo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hill Family Medicine", + "OrganizationName": "Lone Star Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lone Star Children’s Care", + "OrganizationName": "NO LONGER IN USE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lone Star Medical Group", + "OrganizationName": "South Texas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Diagnostic Clinic", + "OrganizationName": "TX - CHS Timberland Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Zapata Family Medical Clinic", + "OrganizationName": "Tomball - Affinity Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -22256,25 +21896,19 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Medical Group", + "OrganizationName": "Bravera Health Seven Rivers", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Primary Care and Gynecology", + "OrganizationName": "CA - Toes on the Go", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Toes on the Go", + "OrganizationName": "CHS Emporia Clinic - Southern Virginia Regional", "NPIID": "", "OrganizationZipCode": "" }, @@ -22310,43 +21944,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fayette Physicians", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mountain Laurel Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Plateau Cardio-Pulmonary Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Plateau Clinic; Greenbrier River E.N.T.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Plateau Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Plateau Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Surgical Care of Southern WV", + "OrganizationName": "CHS - Oak Hill Corp", "NPIID": "", "OrganizationZipCode": "" }, @@ -22470,6 +22068,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS Marlboro Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - Edward Lis DO", @@ -22520,187 +22124,31 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopedic Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Resurgens Orthopaedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arizona Digestive Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Arizona GI Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bullhead City ENT", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bullhead City Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Colorado River Gastroeneterology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Colorado River Women’s Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Continental Divide Surgical Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ear \u0026 Sinus Center of the Southwest", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Empire Urology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fort Mohave Walk-In Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laughlin Walk-In Care (NV)", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mohave Desert Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mohave Ear, Nose \u0026Throat", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mohave Surgical Associates of Arizona", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mohave Valley Specialty Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mohave Walk-In Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mountain View Urology", + "OrganizationName": "OrthoTexas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Riverview Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Silver Creek Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wester Arizona Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizon Gastroenterology Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Hand Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Interventional Cardiology Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Lung Speicalists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Neuro-Spine Institute", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Orthopaedic and Sports Medicine", + "OrganizationName": "Orthopedic Associates", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Pulmonary Critical Care Specialists", + "OrganizationName": "Resurgens Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Pulmonology", + "OrganizationName": "AZ - CHS Bullhead City Clinc Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Western Arizona Vascular Associates", + "OrganizationName": "Western Arizona Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -22730,121 +22178,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Bariatric and Foregut Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Bone \u0026 Joint", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Breast Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Endocrinology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Foot \u0026 Ankle", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied General Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Heart and Vascular", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Infectious Disease", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Neurology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Orthopedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Pediatrics at Continental Reserve", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Pediatrics at Northwest Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Sleep Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Allied Women’s Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Primary \u0026 Specialty Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Urgent Care", + "OrganizationName": "AZ - CHS - NW Allied Physicians, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "QuickMed Urgent Care", + "OrganizationName": "NORTHWEST ALLIED PHYSICIANS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "QuickMed at Swan", + "OrganizationName": "NORTHWEST CARDIOLOGY LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "QuickMed at Valencia", + "OrganizationName": "NORTHWEST HBP MEDICAL SERVICES", "NPIID": "", "OrganizationZipCode": "" }, @@ -23124,6 +22476,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Madison Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "KY - David B Andreas MD", @@ -23292,6 +22650,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARTIN CLINIC CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MARTIN HOSPITAL CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NV - Kozmary Center For Pain", @@ -23526,6 +22896,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS- Parkway Regional Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Parkway RHC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - ICNA Relief USA", @@ -23594,7 +22976,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Hong Gastroenterology", + "OrganizationName": "LW_OCCUPATIONAL MED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lake Wales Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -23778,6 +23166,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OCCMED", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SHELBYVILLE CLINIC CORP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Shelbyville Hospital Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Pioneers Medical Center", @@ -23876,7 +23282,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Foley Clinic Corp.", + "OrganizationName": "Foley Clinic Corp", "NPIID": "", "OrganizationZipCode": "" }, @@ -23966,103 +23372,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Beaver Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Leedey", + "OrganizationName": "Woodward Clinic Company", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Mooreland", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Oklahoma Avenue", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Woodward", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine and Obstetrics on 19th", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine and Obstetrics on Main", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Specialists – Woodward", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Physical Therapy", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Woodward", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Woodward Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Woodward Clinics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Woodward Woodward Clinic Family Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Woodward Woodward Clinic Family Medicine and Obstetrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Woodward Woodward Clinic Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Woodward Woodward Clinic Urology", + "OrganizationName": "Woodward Health System", "NPIID": "", "OrganizationZipCode": "" }, @@ -24378,12 +23694,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Surgeon's Choice Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "GA - Elite Family Practice", @@ -24488,13 +23798,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Eastern New Mexico Medical Center", + "OrganizationName": "CHS - Roswell Clinic Corp", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Roswell Clinic Corp.", + "OrganizationName": "Roswell RHC", "NPIID": "", "OrganizationZipCode": "" }, @@ -25442,7 +24752,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - HOLTZMAN MEDICAL GROUP, LLC", + "OrganizationName": "Holtzman Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Hopkins Medical Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -27666,12 +26982,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IA - Partners in Obstetrics and Gynecolo", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Daniel Foot \u0026 Ankle, P.A. - Startup", @@ -29484,12 +28794,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Dillon / Kimmel", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Abbeville Area Medical Center", @@ -30236,7 +29540,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pecos Valley Physician Group", + "OrganizationName": "NM - CHS - Pecos Valley Physician Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pecos Valley Physician Group-Hobbs", "NPIID": "", "OrganizationZipCode": "" }, @@ -30570,12 +29880,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_DEL", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_DFW", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_FGS", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_FLR", @@ -30594,6 +29916,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_NJY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_NPV", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_NV", @@ -30606,6 +29940,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CCRM_ORG", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CCRM_SF", @@ -33078,6 +32418,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southside Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "GA - Hands of Hope Clinic Inc", @@ -34382,13 +33728,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gadsden Regional Physician Group Practice, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women's Health Partners, LLC", + "OrganizationName": "GADSDEN REGIONAL PHYSICIAN GROUP PRACTICE LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -36578,85 +35918,43 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Incare, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Joseph S Chirillo MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - Robert M. Smith, MD, LLC", + "OrganizationName": "NJ - CHS PPSI Mem Hos of Salem Co Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - Medical Center Of East Houston", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Cardiology – Clarksville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Cardiothoracic – Clarksville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Digestive Care – Clarksville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Family Medicine – Dover", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Family Medicine – Peachers Mill", + "OrganizationName": "Incare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Family Medicine – Tiny Town", + "OrganizationName": "FL - Joseph S Chirillo MD", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Healthcare – Physical Medicine", + "OrganizationName": "CT - Robert M. Smith, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Medical Group", + "OrganizationName": "TX - Medical Center Of East Houston", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Medical Group Family Medicine and Women’s Health", + "OrganizationName": "CLARKSVILLE PHYSICIAN SERVICES GP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Surgery – Clarksville", + "OrganizationName": "TN - CHS - Gateway Health System Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -37152,6 +36450,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CLINTON HMPN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Deaconess Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SEMINOLE HMPN LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "PA - THE BACK PAIN CENTER, P.C.", @@ -37376,319 +36692,79 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DeTar Family Medicine Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Longview Occupational Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Brazos Valley Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cancer Diagnostics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Park Occupational Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Central Texas Cardiovascular Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Coastal Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Community Chronic Care Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CompCare of Navarro County", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crossroads Family Care Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crossroads Medical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crossroads Oncology and Hematology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DeTar Behavioral Health Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DeTar Brain and Spine Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DeTar Internal Medicine Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DeTar Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DeTar Pediatric Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "DeTar on Demand", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Clinic of Corsicana", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Medical Center Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Medical Center Podiatry", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Gastroenterology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo CareClinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo Hematology \u0026 Oncology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo Interventional Radiology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo Physician Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo Spine \u0026 Neurosurgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Laredo Urology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Medical Associates of Corsicana", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Navarro Family Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Navarro Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Navarro Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Navarro Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Navarro Regional Hospital", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "One Source Express Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "One Source Health Center – Santa Anna", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pineywoods Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Premier Care Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates of Laredo", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Victoria Orthopedic Surgery Associates", + "OrganizationName": "NHRHC_NAVARRO", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women’s Health Specialists", + "OrganizationName": "REAP - Hillsboro", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Adult Medicine", + "OrganizationName": "REAP - Laredo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Cardiology", + "OrganizationName": "REAP Premier Care Physicians (Mesquite TX)", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Cardiothoracic Associates", + "OrganizationName": "REAP Scenic Mountain Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Family Practice", + "OrganizationName": "REAP- Brownwood", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Family Practice at Gaslight", + "OrganizationName": "REAP- College Station", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Internal Medicine", + "OrganizationName": "REAP- Corsicana", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Medical Group", + "OrganizationName": "REAP- San Angelo", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Obstetrics \u0026 Gynecology", + "OrganizationName": "REAP- Victoria", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Primary Care at Dibol", + "OrganizationName": "REAP-Lufkin", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Primary Care at Livingston", + "OrganizationName": "Reap - Abilene", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Woodland Heights Women’s Health", + "OrganizationName": "TX - CHS - Regional Employee Assistance", "NPIID": "", "OrganizationZipCode": "" }, @@ -38912,7 +37988,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mountain View Medical Group", + "OrganizationName": "CHS - Las Cruces Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LAS CRUCES HB MEDICAL SERVICES, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -39062,25 +38144,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cardiovascular Clinic of Hattiesburg", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", + "OrganizationName": "HATTIESBURG HB MEDICAL SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wesley Physician Services", + "OrganizationName": "Wesley Physician Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -39156,6 +38226,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Cardio MDM", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Cardiovascular Medicine Associates", @@ -40136,7 +39212,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MI - Agerson, Kirk", + "OrganizationName": "MI - Gray, Afriyie", "NPIID": "", "OrganizationZipCode": "" }, @@ -40586,67 +39662,19 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Farmington Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Legacy Eye Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Cardiology – Siloam Springs", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Health Eye Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Health Occupational Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Siloam Springs Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Siloam Springs ENT \u0026 Facial Cosmetic Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Siloam Springs Express Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Siloam Springs Family Medicine", + "OrganizationName": "AR - CHS PPSI Siloam Clinic Company", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Siloam Springs Internal Medicine", + "OrganizationName": "SILOAM SPRINGS OCCUPATIONAL MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Surgical Associates of Siloam Springs", + "OrganizationName": "Siloam Springs Clinic Company", "NPIID": "", "OrganizationZipCode": "" }, @@ -40968,6 +39996,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WILKES BARRE ACADEMIC MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AR - CENTRAL ARKANSAS SCREENING AND MEDI", @@ -42876,6 +41910,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesterfield - Marlboro", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NC - Abccm Medical Ministry Clinic", @@ -43214,7 +42254,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - AVEO MEDICAL, LLC", + "OrganizationName": "AVEO Medical, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -45950,7 +44990,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GA - MedNow, Inc.", + "OrganizationName": "GA - Mednow of Dalton", "NPIID": "", "OrganizationZipCode": "" }, @@ -46434,6 +45474,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - CHS PF Kirksville Physical Therapy", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Fair Oaks Women's Health", @@ -46950,6 +45996,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - CHS - Northampton Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Great Plains Mental Health Assoc.", @@ -48560,7 +47612,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Spine and Joint Center", + "OrganizationName": "Spine Joint and Regenerative Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -49656,6 +48708,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bayfront Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "St Cloud Physician Management LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Southeast Neuro \u0026 Pain Specialists", @@ -50040,30 +49104,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Commonwealth Health Physician Network", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Commonwealth Health Physician Network", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Great Valley Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Waymart Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MD - AG Medical LLC", @@ -51798,6 +50838,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mary Black Physicians", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Coastal Spine", @@ -53138,55 +52184,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Concussion Clinic of South Arkansas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ear, Nose and Throat Associates of South Arkansas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Orthopaedics of South Arkansas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Arkansas Adult Medicine Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Arkansas Family Care Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Arkansas Pediatric Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Arkansas Pulmonology Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Arkansas Surgical Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Arkansas Urology Associates", + "OrganizationName": "CHS South Arkansas Physician Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -53630,445 +52628,19 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Best Start Pediatric Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CareExpress", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Maternal-Fetal Medicine Center of Northwest Arkansas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Cardiac Rehab", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Cardiac Rehab", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Cardiology – Bella Vista", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Cardiology – Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Cardiology – Springdale", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Center for Infectious Diseases", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Convenient Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Endocrinology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Medicine and Obstetrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Medicine – Centerton", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Medicine – Eureka Springs", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Medicine – Lowell", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Medicine – Midtown", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Medicine – Southside", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Family Medicine – Tuscany Square", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Gastroenterology – Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Gastroenterology – Springdale", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Health \u0026 Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Health Bridge Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Health Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Health Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Heart and Vascular Institute", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Hospitalists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Internal Medicine – Springdale", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Plaza at Pinnacle", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Plaza at Sugar Creek", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Plaza – Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Plaza – Eastside", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Plaza – Fayetteville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Plaza – Springdale", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Plaza – Wedington", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Neonatal Graduate Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Neonatology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Neurology – Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Neurology – Fayetteville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Orthopedics – Springdale", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Pediatric Hospitalist", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Primary Care – Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Primary Care – Centerton", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Primary Care – Har Ber Meadows", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Primary Care – Jones Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Primary Care – Springdale", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Primary Care – Willow Creek", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Pulmonology \u0026 Sleep Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Pulmonology – Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Quick Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Rehab and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Rehab and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Senior Health Health at Bella Vista", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Senior Health at Schmieding", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Senior Health at Sugar Creek", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Senior Wellness Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Specialty Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Sports, Spine and Physical Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Surgical Associates – Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Women’s Specialty Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Surgical Associates of Northwest", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Children’s Clinic at Bentonville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Children’s Clinic at HarBer Meadows", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Children’s Clinic at Springdale", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Family Clinic – A Part of Northwest Family Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Martinez Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Neurosurgery Center at Northwest Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Neurosurgery Center at Northwest Health System", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Orthopedic Center at Northwest", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Women’s Center on the Parkway", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Vein Care Center at Northwest", + "OrganizationName": "AR - CHS - NW Arkansas", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Willow Creek Women’s Clinic", + "OrganizationName": "Fort Smith", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women’s Health and Diagnostic Center of Northwest", + "OrganizationName": "Northwest Physicians", "NPIID": "", "OrganizationZipCode": "" }, @@ -54114,6 +52686,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS-Abilene Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - ZAID ALJAHMI MEDICAL PRACTICE PLLC", @@ -54740,37 +53318,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Health Care Center of Edina", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northeast Neurology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northeast Regional Heart Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northeast Regional Medical Group", + "OrganizationName": "Kirksville Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northeast Regional MedicalCenter", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northeast Regional Orthopedics \u0026 Sports Medicine", + "OrganizationName": "Kirksville RHC", "NPIID": "", "OrganizationZipCode": "" }, @@ -55974,6 +54528,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SOUTHEASTERN INTERVENTIONAL PAIN ASC LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SOUTHERN PAIN AND SPINE ASSOCIATES, LLC", @@ -56174,145 +54734,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "GVMC Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Colorectal Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier E.N.T.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Hematology Oncology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Internal Medicine and Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Neurology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Neurosurgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Physical Medicine \u0026 Rehabilitation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Primary Car", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Sleep Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Surgical Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Thyroid \u0026 Endocrine Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Valley Express Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Valley Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Valley Nephrology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Valley Orthopedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Valley Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Valley Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Valley Urology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Greenbrier Vein Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ronceverte Surgery", + "OrganizationName": "CHS PPSI Ronceverte Physician Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -56406,6 +54828,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS PPSI Ruston Clinic Company", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - CHS PPSI Ruston Clinic Company, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "EAST BAY MEDICAL CENTER", @@ -56784,6 +55218,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Brenham Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MN - Cham Clinic", @@ -56820,6 +55260,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Covenant Health Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - Monogram Kidney Care", @@ -56958,6 +55404,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kay County Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - PERFECT FORM CENTER FOR WELLNESS \u0026", @@ -57450,12 +55902,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Cortez Foot \u0026 Ankle Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - Hartvigsen, Erik", @@ -58140,6 +56586,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Absolute OBGYN", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Cookeville", @@ -58952,7 +57404,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Northwest Medical Group -Porter", + "OrganizationName": "La Porte Physician Network", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Porter Physician Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -61328,7 +59786,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Premier Health/Capital Mens Clinic", + "OrganizationName": "Premier Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -61502,7 +59960,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NC - Dawson Med", + "OrganizationName": "Dawson Med", "NPIID": "", "OrganizationZipCode": "" }, @@ -63218,13 +61676,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Enterprise Express Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hartford Family Medicine", + "OrganizationName": "Enterprise Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -65702,7 +64154,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Ansible Health", + "OrganizationName": "AH - Ansible Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -66540,6 +64992,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pinnacle Health Specialists a division of Inspire Oncology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - CORNERSTONE FAMILY MEDICINE, PLLC", @@ -67026,6 +65484,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rogers and Family and Occupational Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MD - Personal Healthcare Providers", @@ -68088,6 +66552,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - DIEGMANN AND HENDERSON OBGYN, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MD - ASSURED CARE GROUP, LLC", @@ -68162,7 +66632,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "IL - Grace N Joseph", + "OrganizationName": "Grace Modern Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Grace'N Joseph", "NPIID": "", "OrganizationZipCode": "" }, @@ -68636,7 +67112,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Nathalie Acher", + "OrganizationName": "WA - PNW Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -68730,6 +67206,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - CHS PF Emporia Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WI - Dr Turgut Zia SC", @@ -70398,6 +68880,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Community Action Program Belknap an", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - Upper East Side Gynecology, PLLC", @@ -70632,6 +69120,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Azar A. Korbey, M.D., P.L.L.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "PRACTICALLY PERFECT PHYSICAL THERAPY CONSULTING LLC", @@ -70724,73 +69218,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Chariton Valley Family Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Diagnostics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly ENT and Plastics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Family Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Heart \u0026 Vascular", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Orthopedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Regional Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Rural Health Clinic", + "OrganizationName": "MOBERLY HOSPITALISTS", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Specialty Group", + "OrganizationName": "MOBERLY SPECIALTY GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Urology", + "OrganizationName": "Moberly Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Moberly Women’s Health", + "OrganizationName": "Moberly RHC", "NPIID": "", "OrganizationZipCode": "" }, @@ -70968,6 +69414,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - CORE GERIATRIC MEDICAL GROUP INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - Saim Choudhry", @@ -71534,7 +69986,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "KS - Orthopedic Surgery and Sports Medic", + "OrganizationName": "KC ENT, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Orthopedic Surgery and Sports Medicine of Kansas City", "NPIID": "", "OrganizationZipCode": "" }, @@ -71898,6 +70356,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Nephrology Group LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Clarity Pediatrics", @@ -72894,6 +71358,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - BOW TIE MEDICAL OHIO, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MD - Everbloom Psychiatric and Mental He", @@ -73110,6 +71580,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - HealthERoad", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - Advanced Gynecology \u0026 Wellness", @@ -73476,6 +71952,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BLUEFIELD CLINIC COMPANY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "BLUEFIELD HOSPITAL COMPANY, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NJ - Yassin Pediatrics", @@ -73494,6 +71982,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Youngstown Physician Services", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WI - Building Great Kids Therapy", @@ -75492,6 +73986,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Anglin Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Bellingar and Associates", @@ -75504,12 +74004,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Desai", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Family Care Partners of NE Florida", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Family First Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Innovacare Health Cheney", @@ -75522,12 +74034,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Premier Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Trinity", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Urban Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Waters Medical Clinic", @@ -75810,12 +74334,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "VA - Charles City Medical Group, Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - CSRA Renal Services", @@ -76008,6 +74526,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - Beanstalk Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "PA - Westtown School Health Center", @@ -76086,12 +74610,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Vivian DeNise Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Garden City Center for Integrative Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - BACAS Pain Management", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "QTC MEDICAL SERVICES", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Orange County Pediatric Cardiology", @@ -76386,6 +74928,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Introspective Consultation LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "IL - Caitlin Chandran, MSN, APRN-FPA, FN", @@ -76890,6 +75438,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - GetWell Health, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - GROSSMAN, COLBY", @@ -77100,6 +75654,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Ankur M Bant PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Transcend PSI", @@ -77436,6 +75996,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Glowing Embers Health \u0026 Wellness, P", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NJ - Edelstein, Elizabeth", @@ -77532,6 +76098,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pinellas Eye Care, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Kimberly Benton, MD PC", @@ -77564,7 +76136,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WY - Idaho Integrative Wellness, LLC", + "OrganizationName": "Idaho Integrative Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -77628,6 +76200,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Red Rocks Psychiatry, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - NeuroSpine Plus", @@ -77688,6 +76266,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Middle GA Vascular Surgery CNT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - EXODUS MEDICAL LLC", @@ -77808,6 +76392,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - GARCIA HEART AND VASCULAR PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NORTH MISSISSIPPI PRIMARY HEALTH CARE", @@ -78030,6 +76620,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SELECT THERAPY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SELECT URGENT CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - IO Medical", @@ -78410,13 +77012,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mat-Su Community Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mat-Su Heart", + "OrganizationName": "MAT-SU REGIONAL MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -78426,36 +77022,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mat-Su Regional Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mat-Su Urgent Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mat-Su Women's Health Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "McKenzie Heart, Lung \u0026 Vascular Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Solstice Family Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MD - SHORELINE WELLNESS AND PRIMARY CARE", @@ -78570,6 +77136,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Strive Express Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AR - Combs Family Practice", @@ -78708,6 +77280,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Our Family Practice LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "DE - Estock, David", @@ -78804,6 +77382,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - ALLENDALE FAMILY PRACTICE", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "OR - Mangata Wellness", @@ -79074,6 +77658,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Regain Therapy Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Guiding Light Psychiatry PLLC", @@ -79214,13 +77804,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Behavioral Solutions", + "OrganizationName": "Behavioral Health of DE", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Comprehensive Psychiatric Care", + "OrganizationName": "Behavioral Solutions of Massachusetts", "NPIID": "", "OrganizationZipCode": "" }, @@ -79244,19 +77834,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mindful Changes of Pennsylvania", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "OneCBT", + "OrganizationName": "Mindful Changes Counseling of Pennsylvania", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Psychological Healthcare", + "OrganizationName": "Psychiatry Services of New York", "NPIID": "", "OrganizationZipCode": "" }, @@ -79274,25 +77858,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Relationship Resolutions - PA", + "OrganizationName": "Relationship Resolutions, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Springfield Behavioral of Pennsylvania", + "OrganizationName": "Spring Behavioral Health of NJ", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Springfield Psychological", + "OrganizationName": "Springfield Behavioral of Pennsylvania", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tides of Mind", + "OrganizationName": "Tides of Mind/ CPC", "NPIID": "", "OrganizationZipCode": "" }, @@ -79398,12 +77982,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ID - Altitude Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NH - Hope on Haven Hill", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Fortuna Family Medicine inc.", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Step Ahead Podiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - The Pediatric Place, P.C.", @@ -79800,6 +78402,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Commonwealth Pain \u0026 Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "IN - St Anthony's Free Clinic", @@ -80046,6 +78654,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SD - Physicians Vein Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "VA - Meshel Cardiology, P.C", @@ -80082,6 +78696,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gautam Medical and Wellness Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - LAKE STATE VEIN AND VASCULAR", @@ -80136,6 +78756,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Day Kimball Healthcare Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - Palmetto Health", @@ -80156,7 +78782,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AZ - Summit View LLC", + "OrganizationName": "AZ - Summit Mental Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -80352,6 +78978,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - SANTANA MEDICAL GROUP PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NJ - Right at Home Primary Care LLC", @@ -80526,6 +79158,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Westmoreland Obstetrics and Gynecology Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Women's Health Consulting", @@ -80568,6 +79206,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Eaton Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AR - WENDY SPANOS, M.D., P.A.", @@ -80580,6 +79224,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - South Carolina My Care Team LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MS - Magnolia Mobile Home Care, LLC", @@ -80718,6 +79368,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Self-Wins Functional Nutrition Clin", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Davis Whole Family Health PLLC", @@ -80736,6 +79392,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Mountain Trail Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Naples Neuro care", @@ -80766,6 +79428,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Glenovan Sealy", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Patient Care Medical Group", @@ -80796,6 +79464,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OH - PRIORITY CARE N.O.W. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Integrative Health", @@ -80898,6 +79572,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - Dr Damian Dieter DPM", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "The Vascular Care Group", @@ -80934,6 +79614,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Gerald Gibbons MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NC - Tandem Primary Care", @@ -81044,7 +79730,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MO - Mehdi Tajouri, MD", + "OrganizationName": "MO - Springfield Psychiatry \u0026 Addiction", "NPIID": "", "OrganizationZipCode": "" }, @@ -81074,7 +79760,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Choice Family Health Clinics", + "OrganizationName": "Choice Family Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -81228,12 +79914,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Greater Greenwood United Ministry I", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Summit Medical and Obesity Associat", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - WELLSPRING PHYSICIAN PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - SAMUEL D CRITIDES JR MD PA", @@ -81246,6 +79944,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Epione Health Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - Personal Medicine of Rochester", @@ -81306,6 +80010,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Sharp Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - LONGEVITY AND PERFORMANCE INSTITUTE", @@ -81420,6 +80130,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alejandro J Martinez MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - NP ANYWHERE LLC", @@ -81432,6 +80148,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - Wellford Medicine, LLC - DBA Wellfo", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - VISIT HEALTH", @@ -81456,6 +80178,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WY - Laramie Physicians Women \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Sunshine Family Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Yuba Pulmonary", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - FAST ACCESS HEALTHCARE, PLLC", @@ -81474,12 +80214,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - George Mason University Foundation", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MO - CENTRAL WEST HEALTHCARE", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Ebb and Flow Therapy Services PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Gogineni, Prasanth", @@ -81492,12 +80244,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Clearfork Health v23.11", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - DRCVIP", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "The Neurology Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Advanced Kidney Care of North Texas", @@ -81546,6 +80310,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RIVERSIDE PRIMARY CARE ADULT AND GERIATRIC MEDICINE, PLLLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Sanitas Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AL - Juanita Heersink", @@ -81558,6 +80334,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Pulmonary \u0026 Sleep Associates of SFL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pulmonary \u0026 Sleep Associates of South Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TEXAS INSTITUTE OF GASTROENTEROLOGY ASSOCIATES, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "VT - Partners In Integrative Healing", @@ -81642,6 +80436,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Dream Youth Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "PA - Prevention Point Philadelphia", @@ -81660,6 +80460,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - EDM Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Step Up Sports Medicine", @@ -81696,6 +80502,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SIMPLI PODIATRY PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Franzi-Osborne, Rebecca", @@ -81750,6 +80562,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Red River Family Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CT - CT Advanced Spine LLC", @@ -81762,6 +80580,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - East Flagstaff Family Medicine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - SIMONE-GABRIEL ENTERPRISES, LLC", @@ -81786,6 +80610,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Ravish Narvel MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "OH - New Leaf Counseling Services LLC", @@ -81816,6 +80646,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - Affinity Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MO - Scherbel Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "IN - Michael H Fritsch, MD", @@ -81834,6 +80676,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Total Care Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Vrunda Dalal DPM", @@ -81842,7 +80690,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rippl Care PC of Washington", + "OrganizationName": "KY - TOTAL LIFE CARE, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Rippl Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -81858,6 +80712,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NC - Family 1st HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - CENTRAL FLORIDA VASCULAR CENTER, P.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - MT. PLEASANT PSYCHIATRY, LLC, DBA G", @@ -81882,6 +80748,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - THE LITTLES, INC.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - VALENTINA GHERGHINA MD PA", @@ -81936,6 +80808,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OR - Willamette Foot and Ankle", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "400 SE Osceola", @@ -81960,12 +80838,42 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Advanced Primary Care of Louisiana", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - HELPS Clinic and Resource Center In", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Grapeland Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Moultrie Medical PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MD - Be Well Mental Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Brookwood Womens Health PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - MICHIGAN HEART RHYTHM CENTER", @@ -82008,6 +80916,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VT - LOVINGKINDNESS WELLNESS PRACTICE, P", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Numo Health", @@ -82028,7 +80942,13 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CT - DAY KIMBALL HEALTHCARE INC", + "OrganizationName": "Day Kimball Behavioral health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Pocket RN", "NPIID": "", "OrganizationZipCode": "" }, @@ -82062,12 +80982,276 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Health Plus Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "KY - Charles C Johnson", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "100 Wellness LLC dba Lifetime Wellness Chiroprac", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ALLEN SPINE AND SPORT, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aaron M Casselman DC PC DBA Pinnacle Chiro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Absolute Health Center Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Accelerate Health PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Alliance Health Partners LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Athlete Stop Sports Medicine PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Avenues of Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Back and Joint Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bodies in Motion Chiropractic Inc DBA Rock Creek", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Boulder County Primary Care and Rehab LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CO - Arete Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chiropractic Solutions LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Chiropractic and Wellness PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Integrated Care Network LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Colorado Spine and Sports Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Denver Sport and Spine Inc DBA Highlands Sport", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Eden Prairie Chiropractic Clinic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fountain Creek Chiropractic LLC DBA Ute Pass Fam", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Healthy Spine LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IDAD LLC DBA Highlands Family Chiropractic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Integrated Provider Group of Minnesota", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jeffry T Parker DC_PC DBA Parker Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Jon F Seeman DC PLLC dba The Center for Spine Sprt", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Kastner Family Chiropractic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Malzer Chiropractic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Mark M Wolff DC LLC DBA Green Mountain Chiro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Matthew C Kenney Chiro INC DBA New Body Chiro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "McDowell Global LLC DBA McDowell Chiropractic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Michael Peter Simone dba Simone Physical Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PARTNERS IN HEALTH A PROFESSIONAL LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Performance Therapy Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Primary Care_Chiropractic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pyramid Chiropractic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "ROBERT DONALD JACKSON JR PC DBA Applewood Chiro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Robert E Bridge DC PC DBA Horizon Chiropractic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Scott Family Chiropractic Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Metro Integrated Clinic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "South Pointe Chiropractic LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southeast Family Chiropractic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Steamboat Chiropractic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Swager Chiropractic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Vail Med Inc DBA Vail Integrative Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CVCFL", @@ -82086,6 +81270,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SH - STEMS HEALTH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Harish Koolwal, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MO - Mallinckrodt Pharmaceuticals", @@ -82098,6 +81294,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "JACKSON COUNTY GASTROENTEROLOGY, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Dr. Scott Baker", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - George J Ayyad MD", @@ -82134,6 +81342,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NJ - Dr. Badawy Complete Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AL - Patel \u0026 Associates", @@ -82146,6 +81360,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Natural Health Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "OK - Care Plus Pediatrics", @@ -82188,12 +81408,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - WILLIAM MACK, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TENNESSEE STYLE WEIGHT LOSS LLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Posterity Health Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Compass Pointe Medical PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WA - LOVING HEART P.L.L.C.", @@ -82230,6 +81468,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Med Diagnostics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Frontier Psychiatry", @@ -82242,12 +81486,36 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Balanced Family Natural Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fernando Bueso MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Marion Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Chapel Hill Doctors Healthcare Center", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - FIREFIGHTER CLINIC PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "LA - G. Vincent Bailey, MD APMC", @@ -82284,12 +81552,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NM - Selenite Health And Wellness LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Natoli, B / Natoli, L", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Wissam Hoyek M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Physicians of South Florida, LLC", @@ -82316,7 +81596,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - FRESH START PRIMARY CARE CHARTERED", + "OrganizationName": "Fresh Start Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -82332,24 +81612,54 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Exhort Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - North Valley Surgical Associates, I", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CENTERED YOUTH CLINIC AND CONSULTI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - VERMENTON MOLINA PEDIATRICS P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NY - Babylon Village Medical Assoc. LLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Thrive Reconstructive Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "VT - Hillemann and Kirwan, MD's, P.C.", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Bluestone Podiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Sun Country Pediatrics PLLC", @@ -82368,6 +81678,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Empower Recovery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - Alvaro I Martinez Jr MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - Micky L. Busby, M.D", @@ -82380,6 +81702,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Revive Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Cherry, Deborah", @@ -82428,24 +81756,60 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - Beating Pulse LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - AUSTIN AREA ORTHOPEDICS, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "IA - MIDWEST CONCIERGE MEDICINE PLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "REBOOT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - ECS", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WV - Dr. Lisa C. Hill, MD", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AR - ACCESS MEDICAL CLINIC ARKANSAS LTC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Prime Orthopedics and Regenerative", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Samantha Cohen, M.D., Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "OH - Vidal Medical, LLC", @@ -82458,18 +81822,42 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - COMMUNITY FAMILY CARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "OH - Louis Flaspohler MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Restorative Oxygen Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "InformedDNA Medical Group PA", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Zippo's Healthcare Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - BRIAN MAYRSOHN, M.D., PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - DAISY HOLISTICARE, LLC", @@ -82488,6 +81876,36 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Bloomfield Child \u0026 Family Counselin", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IL - St. Mary Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MA - United Family Medical Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "LA - Nola Family Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - Cardiovascular Specialists of York", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Lew, Edmund", @@ -82496,7 +81914,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "TX - EPIC PAIN MANAGEMENT, PLLC", + "OrganizationName": "MI - Prime Internists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RiverCare Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AL - Dr Sean Owen", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Epic Pain Management", "NPIID": "", "OrganizationZipCode": "" }, @@ -82506,12 +81942,54 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - CR WELLNESS LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NORTHERN VIRGINIA NEPHROLOGY ASSOCIATES, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - West Florida Vascular and Vein", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MOBILE ANESTHESIA ASSOCIATES, LLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "OK - Todd, Robert", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CA - Gerardo Canchola MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GA - Painlogics, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FemGevity", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Merced Faculty Associates", @@ -82530,30 +82008,66 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Southeast Urogyn", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Philip A. St. Raymond, MD, PLLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carlos Cohen, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "VA - Fit for Life Medical Center, INC.", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - WELLINGTON ORTHOPEDIC INSTITUTE, LL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Affirmation Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Next Step Orthopedics, PLLC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Wayne Memorial Urology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TAMPA GENERAL MEDICAL GROUP, INC.", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Iacobucci, James", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MS - VIP PEDIATRICS PLLC", @@ -82566,12 +82080,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "VA - Ainsley Medical Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "AZ - Arrow Surgical Associates, PC", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - VASECTOMY CENTER OF CONNECTICUT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "GA - Total Women's Health and Wellness C", @@ -82580,7 +82106,25 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crestwood Physician Services, LLC", + "OrganizationName": "Clay Health and Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "FL - OHW Ventures LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WA - PacWest Healthcare PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Crestwood Physician Service", "NPIID": "", "OrganizationZipCode": "" }, @@ -82626,6 +82170,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "KY - Murphy, Dylan", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Dr. Lisa", @@ -83372,13 +82922,19 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FMG PrimeCare, LLC", + "OrganizationName": "FLOWERS HB MEDICAL SERVICES, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Wiregrass Clinic, LLC", + "OrganizationName": "Flowers Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Flowers Medical Group Primecare", "NPIID": "", "OrganizationZipCode": "" }, @@ -83652,6 +83208,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Chesterfield Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "SC - CHS - Chesterfield Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MO - St. Joseph Urology, LLC", @@ -84552,6 +84120,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Unio Specialty Care - URO", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Valley Gastroenterology Consultants", @@ -85764,6 +85338,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS Marion", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "NORTHERN ARIZONA HEALTHCARE PROVIDER GROUP", @@ -85782,6 +85362,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CHS York Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - Crossville Ortho \u0026 Sports Medicine", @@ -85836,12 +85422,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "WA - Columbia Basin Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - Homestead Pediatric Associates, Inc", @@ -86094,6 +85674,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - CHS-CHS Easton Hospital", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TN - Cox Management", @@ -87170,1501 +86756,679 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Advanced Cardiology of Key West", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera General Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera OB/GYN and Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Obstetrics and Gynecology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Orthopedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bravera Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carneiro Institute for Hand Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Collier Regional Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Complete Women’s Care of Naples", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Florida Keys Family Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Keys Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lower Keys Behavioral Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lower Keys Cancer Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lower Keys Primary Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lower Keys Urology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pace Primary Care and Walk-In Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Physicians Regional Marco Island", + "OrganizationName": "BAYFRONT CONVENIENT CARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Physicians Regional Medical Group", + "OrganizationName": "BAYFRONT HEALTH IMAGING CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Physicians Regional Medical Group", + "OrganizationName": "BAYFRONT MEDICAL CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Physicians Regional Medical Group Pharmacy", + "OrganizationName": "BAYFRONT PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Center of Key West", + "OrganizationName": "BAYFRONT WELLNESS CENTER LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Santa Rosa Medical Group", + "OrganizationName": "Bartow Physician Mgmnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Cardiology", + "OrganizationName": "Bravera Health Brooksville", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Cardiology and Cardiac Surgery", + "OrganizationName": "Bravera Health Spring Hill", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Cardiothoracic Surgery", + "OrganizationName": "Bravera Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Endocrinology", + "OrganizationName": "COLLIER BLVD PHYSICIAN MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Gastroenterology", + "OrganizationName": "COLLIER NEURO VASC MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint General Surgery", + "OrganizationName": "COLLIER PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Imaging", + "OrganizationName": "HOSPITAL ADT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Internal Medicine and Pediatrics", + "OrganizationName": "Haines City Physician Mgmnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Medical Group", + "OrganizationName": "Haines City Urgent Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Medical Group", + "OrganizationName": "JASPER MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Medical Group", + "OrganizationName": "Key West Physician Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Neurology", + "OrganizationName": "Key West Psychiatry Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Neurology", + "OrganizationName": "LIVE OAK LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Neurology", + "OrganizationName": "Lake Shore Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Obstetrics and Gynecology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Obstetrics and Gynecology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Orthopedics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Plastic and Reconstructive Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Podiatry", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Primary Care and Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Primary Care and Walk-In", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Primary Care and Walk-in", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Psychiatry", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Pulmonology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Rehabilitation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Rheumatology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ShorePoint Urgent Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "South Florida Medical and Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Heart Institute of the Keys", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Campbell Surgical", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carolina Pediatric and Adolescent Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carolina Urology Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Davis Family Medicine Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Davis Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Davis Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Davis Vascular Institute", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "First in Flight Neurology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Harbor Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hospitalists of Lake Norman", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Norman Medical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Norman Medical Group Heart and Vascular Mooresville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Norman Neonatology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Norman Neurological \u0026 Spinal Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Norman Orthopedic \u0026 Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Norman Orthopedic Spine Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lake Norman Orthopedics and Hand Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lakeshore Endocrinology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lakeshore Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Mooresville Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NorthPoint Surgical; Primary Care Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Pinnacle Orthopedic Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates of Cornelius", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates of Davidson", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates of Huntersville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates of Lake Norman", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates – Byers Creek", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates – Denver", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care Associates – Williamson", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Sherrill-Jackson Orthopedics Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesville Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesville OB/GYN", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesville Orthopedics \u0026 Sports Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesville Psychiatry", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesville Urology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesville Vascular Institute", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Center for Surgical Weight Loss", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Tennessee Women’s Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Fields’ Center for Women’s Health and Robotic Surgery at Tennova", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Irene and Howard H. Baker Cancer Treatment Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "LaFollette Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Newport Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Primary Care of Tennessee at Tennova", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Bariatric Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Cardiology of Lenoir City", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Cardiothoracic Surgeons", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Center for Occupational Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Digestive Disease Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Foot and Ankle", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Gastroenterology – North", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova General Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova General Surgery – Jefferson", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Healthcare – LaFollette Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Healthcare – Newport", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Healthcare – Newport Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart – Cardiothoracic Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart – Jefferson CityTennova Heart – Clinton", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart – LaFollette", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Heart – Tellico Village", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Infusion Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Jefferson Women’s Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova LaFollette Geriatric Psychiatric Unit", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova LaFollette Health \u0026 Rehabilitation Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova LaFollette Medical Center Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova LaFollette Outpatient Rehab Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova LaFollette Sleep Disorders Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Neurology Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Neurology Newport", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Newport Convalescent Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Newport – 4th Street", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Orthopedics – Turkey Creek", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Physical Medicine and Rehabilitation", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Physician Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care Caryville", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care Clinton", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Primary Care and Occupational Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Pulmonary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Pulmonology Newport", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Thyroid \u0026 Parathyroid Surgery", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Urology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Vascular and General Surgery – Turkey Creek", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Walk-in Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Women’s Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Women’s Care Newport", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Women’s Care – Jefferson", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Women’s Care – LaFollette", + "OrganizationName": "Lehigh Physician Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Women’s Care – Lenoir City", + "OrganizationName": "Live Oak Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tennova Women’s Health Specialists", + "OrganizationName": "MUNROE HMPN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Tenova Healthcare – LaFollette", + "OrganizationName": "Melbourne Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Town Creek Primary Care", + "OrganizationName": "Osler Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "West Knox Gastroenterology", + "OrganizationName": "Pasco Hernando Phys Mgmnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "West Knoxville Heart at Tennova", + "OrganizationName": "Rockledge Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Biloxi HMA Pulmonology", + "OrganizationName": "Rockledge Urgent Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Biloxi Neurology Clinic", + "OrganizationName": "SANTA ROSA HB MEDICAL SERVICES, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Byram Family Medicine", + "OrganizationName": "STARKE RHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cardiovascular Services of Central Mississippi, Cardiovascular Services at River Oaks", + "OrganizationName": "Santa Rosa Phys Mgmnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus", + "OrganizationName": "Santa Rosa Urgent Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Biloxi Family Medicine", + "OrganizationName": "Sebastian Physician Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Brandon", + "OrganizationName": "Sebring Physician Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Clinton Family Medicine", + "OrganizationName": "ShorePoint Health Gulf Coast", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Flora Family Medicine", + "OrganizationName": "ShorePoint Health Gulf Coast Psychiatric Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Germantown Family Medicine", + "OrganizationName": "ShorePoint Health Port Charlotte", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Highland Colony Family Medicine", + "OrganizationName": "ShorePoint Health Punta Gorda", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Internal Medicine", + "OrganizationName": "ShorePoint Health Punta Gorda Psychiatric Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Lakeland Family Medicine", + "OrganizationName": "St Cloud Physician Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Madison Family Medicine", + "OrganizationName": "Starke Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Nissan Parkway Family Medicine", + "OrganizationName": "CHESTER MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Occupational Medicine", + "OrganizationName": "EAST GEORGIA PHYSICIAN MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Parham Bridges Family Medicine", + "OrganizationName": "GEORGIA PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Promenade Medical Center", + "OrganizationName": "HAMLET PPM LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Reservoir Family Medicine", + "OrganizationName": "HAMLET PSYCH PPM LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CarePlus Reservoir Pediatrics", + "OrganizationName": "HARTSVILLE MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Center for Industrial Health \u0026 Wellness", + "OrganizationName": "MONROE PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Center for Infections Disease", + "OrganizationName": "MOORESVILLE PPM LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Central Mississippi Bone and Joint Specialists", + "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Coast Oncology and Hematology", + "OrganizationName": "STATESBORO MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crossgates Critical Care", + "OrganizationName": "STATESBORO PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crossgates Medical Associates", + "OrganizationName": "STATESVILLE MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Crossgates River Oaks Hospitalists", + "OrganizationName": "STATESVILLE PYSCH MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hicks Healthcare for Women", + "OrganizationName": "WILLIAMSON PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Hinds Internal Medicine", + "OrganizationName": "COCKE COUNTY HMA LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Internal Medicine at Cedar Lake", + "OrganizationName": "JAMESTOWN PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Lakeview Family Medicine Center", + "OrganizationName": "JAMESTOWN PSYCHIATRIC GROUP", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Madison River Oaks Hospitalist Group", + "OrganizationName": "KNOXVILLE CARDIOLOGY PPM LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", + "OrganizationName": "KNOXVILLE PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", + "OrganizationName": "KNOXVILLE PHYSICIAN MANAGEMENT PSYCH LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", + "OrganizationName": "LEBANON PHYS MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", + "OrganizationName": "TENNOVA LAFOLLETTE MEDICAL CENTER CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", + "OrganizationName": "TULLAHOMA PHYSICIAN MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", + "OrganizationName": "Alliance Health Partners RHC LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", + "OrganizationName": "Amory Physician Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", + "OrganizationName": "Batesville Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", + "OrganizationName": "Batesville Physician MGT Pysch LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", + "OrganizationName": "Biloxi Physician Mgmnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Neck and Head Surgical Group", + "OrganizationName": "Biloxi Physician Mgmnt Pysch LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ROH Center for Infectious Disease", + "OrganizationName": "Brandon Physician Management", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "ROH Hospitalists", + "OrganizationName": "CMWS_CMMC WOUND MANAGEMENT", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rankin Orthopedic Specialists", + "OrganizationName": "Clarksdale Anesthesiologist Group", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Rankin Surgical Specialists", + "OrganizationName": "Clarksdale Phys Mgmnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ridgeland Family Medical Center", + "OrganizationName": "Crossgates Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "The Obesity Center at River Oaks", + "OrganizationName": "Flowood River Oaks Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Total Health Internal Medicine", + "OrganizationName": "JACKSON HB MEDICAL SERVICES, LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Transformations at River Oaks", + "OrganizationName": "Madison Phys Mgnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alliance Health Durant Clinics Internal Medicine", + "OrganizationName": "Mississippi Hospitalists LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alliance Health Medical Group Primary Care Atoka", + "OrganizationName": "Natchez Phys Mgnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Clinic Clinto", + "OrganizationName": "OCCMED", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Clinic Clinton Hills", + "OrganizationName": "River Oaks Management LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Clinic Ponca City", + "OrganizationName": "River Oaks Management Pysch LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Clinic Thomas", + "OrganizationName": "Vicksburg Physician Mgmnt LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Clinic Weatherford", + "OrganizationName": "ALABAMA PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Clinton", + "OrganizationName": "BLACKWELL HMPN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Durant Clinics", + "OrganizationName": "CLINTON HMPN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Durant Clinics Primary Care", + "OrganizationName": "CLINTON RHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Durant Clinics Urgent Care", + "OrganizationName": "DEACONESS PHYSICIAN SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Madill", + "OrganizationName": "DURANT PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Madill Clinic", + "OrganizationName": "DURIND_URGENT CARE OF ATOKA-INDUSTRIAL", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group", + "OrganizationName": "FORT SMITH BEHAVIORAL HEALTH SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Anesthesia Ponca City", + "OrganizationName": "FORT SMITH PBC BEHAVIORAL HEALTH SERVICES", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Cardiology", + "OrganizationName": "FORT SMITH PBC MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Cardiovascular Care Durant", + "OrganizationName": "FORT SMITH PHYS MGMT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Ear Nose and Throat Durant", + "OrganizationName": "GADSDEN PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Ear Nose and Throat Ponca City", + "OrganizationName": "GADSDEN PHYSICIAN MGT PSYCHIATRY", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Ark City (KS)", + "OrganizationName": "KAY COUNTY/ BLACKWELL RHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Bryan County", + "OrganizationName": "KENNETT PHYS MGMT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Clinton", + "OrganizationName": "KENNETT PHYS MGMT PSYCH LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine Ponca City", + "OrganizationName": "KENNETT RHC LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Medicine on 14th Street", + "OrganizationName": "Kay County Clinic", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Family Practice Clinton Hills", + "OrganizationName": "LONE STAR PHYSICIAN MGMNT INC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group General Surgery", + "OrganizationName": "MARSHALL COUNTY HMPN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group General Surgery Ponca City", + "OrganizationName": "MARSHALL COUNTY RHC LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group General Surgery on 14th Street", + "OrganizationName": "MAYES COUNTY HMPN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group General Surgery on University", + "OrganizationName": "MIDWEST CITY PHYS MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Gynecology Clinton", + "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Internal Medicine Durant Campus", + "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT PSYCH LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Neurosurgery Ponca City", + "OrganizationName": "POPLAR BLUFF RHC LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Orthopedics", + "OrganizationName": "SEMINOLE HMPN LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Orthopedics Ponca City", + "OrganizationName": "SEMINOLE RHC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Pediatrics Clinton", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Pediatrics Durant Campus", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Primary Care Durant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Primary Care in Thomas", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group QuickMed Durant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Specialists – Clinton", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Specialists – Durant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Specialists – Ponca City", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Urology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Women’s Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Women’s Health Clinton", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Women’s Health Ponca City", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Medical Group Wound Care and Hyperbarics Durant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Ponca City", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "AllianceHealth Urgent Care Ponca City", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Family Medicine on 9th Street", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "QuickMed in Clinton", + "OrganizationName": "VAN BUREN LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -89070,6 +87834,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Carolinas Medical Alliance", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "FL - OptumCare Florida, LLC", @@ -89820,6 +88590,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Northampton Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "SC - Carolina Nephrology \u0026 Endocrinology", @@ -90426,6 +89202,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TN - CHS Internal Med of Tullahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Tennova Medical Group- Tullahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Young County Family Clinic", @@ -90632,7 +89420,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "MA - Anthony F. Marino MD", + "OrganizationName": "MARINO CARDIOLOGY", "NPIID": "", "OrganizationZipCode": "" }, @@ -92028,6 +90816,36 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CARDIOLOGY CONSULTANTS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "General Surgery Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "General Surgery of Lancaster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lancaster Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "PA - CHS Lancaster Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "WV - Pendleton Community Care, Inc.", @@ -92618,7 +91436,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NM - Gerald Champion Medical Center", + "OrganizationName": "NM - CHRISTUS Southern New Mexico", "NPIID": "", "OrganizationZipCode": "" }, @@ -92672,7 +91490,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - Mary Kathleen W. DiTursi, M.D., P.C", + "OrganizationName": "NY - Marius Killian N DiTursi MD PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -94146,6 +92964,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Fallbrook Healthcare Partners", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Barstow Primary Care Clinic", @@ -94626,6 +93450,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CC504_WOMENS HEALTH PARTNERS PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CC901_SPECIALTY SERVICES CENTER", @@ -95130,12 +93960,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "CA - Generoso P. Porciuncula, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "ARIZONA WOMEN'S HEALTH, PLLC", @@ -96836,7 +95660,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Carolina Health Specialist", + "OrganizationName": "Carolina Health Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -97974,6 +96798,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GADSDEN HMA PHYSICIAN MANAGEMENT LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "GADSDEN HMA PHYSICIAN MGT PSYCHIATRY", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "HARTSVILLE MEDICAL GROUP LLC", @@ -98310,6 +97146,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "IN - SULLIVAN COUNTY COMMUNITY HOSPITAL", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Lakeside Family Medical", @@ -98346,12 +97188,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Vaccine Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Women's Health Center", @@ -98450,175 +97286,79 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cardiovascular Institute of Georgia", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cedar Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Georgia Cardiology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Georgia Internal Medicine and Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Georgia Medical \u0026 Surgical Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Georgia Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Georgia Primary Care \u0026 Internal Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "East Georgia Regional Gastroenterology", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "EastGeorgia Neurology \u0026 Neurodiagnostics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Internal Medicine Associates of East Georgia", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Porter Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Statesboro Family Practice", + "OrganizationName": "ALABAMA PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Twin City Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bloomfield Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bluff Sports Center \u0026 Orthopedic Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Bluff Sports Medicine \u0026 Orthopedic Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cardiovascular Institute of Southern Missouri", + "OrganizationName": "PAINTSVILLE PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Dexter Medical Clinic", + "OrganizationName": "CHESTER MEDICAL GROUP LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Malden Medical Center", + "OrganizationName": "EAST GEORGIA PHYSICIAN MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Ozark Medical Management", + "OrganizationName": "GEORGIA PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Piedmont Family Clinic", + "OrganizationName": "MONROE PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Poplar Bluff Medical Clinic", + "OrganizationName": "STATESBORO PHYSICIAN MANAGEMENT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Poplar Bluff Primary Care", + "OrganizationName": "KENNETT PHYS MGMT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Poplar Bluff Regional Medical Center", + "OrganizationName": "KENNETT PHYS MGMT PSYCH LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Poplar Bluff Regional Medical Center – North", + "OrganizationName": "KENNETT RHC LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Poplar Bluff Regional Medical Center – South", + "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Puxico Medical Clinic", + "OrganizationName": "POPLAR BLUFF PHYSICIAN MGMNT PSYCH LLC", "NPIID": "", "OrganizationZipCode": "" }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Regional Physician Services", + "OrganizationName": "POPLAR BLUFF RHC LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -99728,7 +98468,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Cahaba Orthopedics, LLC", + "OrganizationName": "Cahaba Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, @@ -100062,6 +98802,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Franklin Clinic Corp", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Cy-Fair Foot Care", @@ -100680,6 +99426,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "WILLIAMSON PHYSICIAN MANAGEMENT", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - PULMONARY AND SLEEP WELLNESS CENTER", @@ -100974,6 +99726,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - CHS PF River Oaks", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Texas Pain Consultants LLP", @@ -101708,13 +100466,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Medical Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Merit Health Walk-In Clinic", + "OrganizationName": "Natchez Clinic Company", "NPIID": "", "OrganizationZipCode": "" }, @@ -102006,6 +100758,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MS - CHS Natchez HBP", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - William A. Peper, M.D. P.A.", @@ -102362,19 +101120,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Affinity Orthopedic Specialists, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Affinity Physician Services, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Women's Health Specialist of Birmingham, Inc.", + "OrganizationName": "Affinity Birmingham", "NPIID": "", "OrganizationZipCode": "" }, diff --git a/resources/prod_resources/eClinicalWorks_LLC_EndpointSources.json b/resources/prod_resources/eClinicalWorks_LLC_EndpointSources.json index 92b58d386..c14803f29 100644 --- a/resources/prod_resources/eClinicalWorks_LLC_EndpointSources.json +++ b/resources/prod_resources/eClinicalWorks_LLC_EndpointSources.json @@ -1,7066 +1,6982 @@ { "Endpoints": [ { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBFCCA", - "OrganizationName": "Mon-Vale Professional Services, Inc.", - "NPIID": "", - "OrganizationZipCode": "15063" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHEAA", - "OrganizationName": "Valley Women s Health", - "NPIID": "", - "OrganizationZipCode": "15063" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIEBDD", - "OrganizationName": "Park Place Healthcare LLC", - "NPIID": "", - "OrganizationZipCode": "35242" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHCJBA", - "OrganizationName": "Tri-County Medical Practice", - "NPIID": "", - "OrganizationZipCode": "15012" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHDACA", - "OrganizationName": "Skin Care Now Pueblo PLLC", - "NPIID": "", - "OrganizationZipCode": "81003" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDEFBA", - "OrganizationName": "Pain and Spine Centers of Florida", - "NPIID": "", - "OrganizationZipCode": "32778" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECGFCA", - "OrganizationName": "George Nasser, MD", - "NPIID": "", - "OrganizationZipCode": "77384" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCICAA", - "OrganizationName": "Handelsman Family Practice", - "NPIID": "", - "OrganizationZipCode": "15120" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDFCA", - "OrganizationName": "Bindusagar Reddy, MD Inc", - "NPIID": "", - "OrganizationZipCode": "93257" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHACA", - "OrganizationName": "Western Nephrology", - "NPIID": "", - "OrganizationZipCode": "80033" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJABCA", - "OrganizationName": "CrossRoads Family Medicine", - "NPIID": "", - "OrganizationZipCode": "42718" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIABA", - "OrganizationName": "Advocate - Midwest Womens Obstetrics/ Gynecologists, LTD", - "NPIID": "", - "OrganizationZipCode": "60515" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFBBA", - "OrganizationName": "Rania Abdel-Rahman, MD PLLC", - "NPIID": "", - "OrganizationZipCode": "32207-8343" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCBAA", - "OrganizationName": "Franklin Rodney", - "NPIID": "", - "OrganizationZipCode": "79413" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDABD", - "OrganizationName": "North Valley Breast Clinic", - "NPIID": "", - "OrganizationZipCode": "96001" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHIDAD", - "OrganizationName": "Cisca Pulmonary", - "NPIID": "", - "OrganizationZipCode": "32250" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIEBA", - "OrganizationName": "Monadnock Community Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGIACA", + "OrganizationName": "Surgical Assoicates", "NPIID": "", - "OrganizationZipCode": "03458" + "OrganizationZipCode": "59101" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDFAA", - "OrganizationName": "High Desert Nephrology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHECDA", + "OrganizationName": "Pinnacle Family Care", "NPIID": "", - "OrganizationZipCode": "87301" + "OrganizationZipCode": "28304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCGGAA", - "OrganizationName": "Finger Lakes Migrant Health Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIDAD", + "OrganizationName": "Carlos Aguilar MD", "NPIID": "", - "OrganizationZipCode": "14527" + "OrganizationZipCode": "77504" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIAEAD", - "OrganizationName": "Kevin M Jenkins DO Inc - NAMM", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIADA", + "OrganizationName": "Surgical Associates PA", "NPIID": "", - "OrganizationZipCode": "91786" + "OrganizationZipCode": "66502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJIAA", - "OrganizationName": "AIP - AZ Ear Nose Throat Phys", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCCAA", + "OrganizationName": "GastroDoxs PLLC", "NPIID": "", - "OrganizationZipCode": "85375" + "OrganizationZipCode": "77429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDJBD", - "OrganizationName": "Primary Care Specialists, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAAAAA", + "OrganizationName": "MEDPEDS, LLC", "NPIID": "", - "OrganizationZipCode": "23504" + "OrganizationZipCode": "20707" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJCBBA", - "OrganizationName": "BIDMC - Hatfield Cardiology LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBCCD", + "OrganizationName": "Hillside Pain Management", "NPIID": "", - "OrganizationZipCode": "02601" + "OrganizationZipCode": "17331" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHFBA", - "OrganizationName": "Kevin Jones, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFBCD", + "OrganizationName": "Paragon Pain and Rehabilitation, LLP", "NPIID": "", - "OrganizationZipCode": "76067" + "OrganizationZipCode": "75460-9331" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCADBA", - "OrganizationName": "Steven Hilty MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBBCD", + "OrganizationName": "Summit Medical Center dba Summit Medical Clinic", "NPIID": "", - "OrganizationZipCode": "93405" + "OrganizationZipCode": "82609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHIBD", - "OrganizationName": "493 Internal Medicine, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CABIAD", + "OrganizationName": "Crescent City Internal Medicine", "NPIID": "", - "OrganizationZipCode": "38555" + "OrganizationZipCode": "95531" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCIBA", - "OrganizationName": "Advocate - Naperbrook Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHEEAD", + "OrganizationName": "PROD - ACMH Hospital", "NPIID": "", - "OrganizationZipCode": "60440" + "OrganizationZipCode": "16201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGGFBA", - "OrganizationName": "Sutter Family Practice, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHBBA", + "OrganizationName": "Orlando Family Medical, Inc.", "NPIID": "", - "OrganizationZipCode": "30705" + "OrganizationZipCode": "34741" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICACCA", - "OrganizationName": "Advocate - Optimum Kidney Care, SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCABA", + "OrganizationName": "Sumter Ear, Nose, Throat Facial Plastic Surgery", "NPIID": "", - "OrganizationZipCode": "60657" + "OrganizationZipCode": "29150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICIBA", - "OrganizationName": "Advocate - Alameda Foot Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHJFBA", + "OrganizationName": "Tariq Mahmood MD", "NPIID": "", - "OrganizationZipCode": "60634" + "OrganizationZipCode": "73110" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCGHBA", - "OrganizationName": "Joan F. Bailey, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAEJCA", + "OrganizationName": "Operation Samahan", "NPIID": "", - "OrganizationZipCode": "85004" + "OrganizationZipCode": "91950" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECFCD", - "OrganizationName": "West Texas Neurology Clinic LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAEJBD", + "OrganizationName": "Fairfax Colon Rectal Surgery PC", "NPIID": "", - "OrganizationZipCode": "79414" + "OrganizationZipCode": "22031" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBFJCA", - "OrganizationName": "GASTROENTEROLOGY DIAGNOSTIC CLINIC, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDCACD", + "OrganizationName": "New England Community Medical Services PLLC", "NPIID": "", - "OrganizationZipCode": "77505" + "OrganizationZipCode": "01845" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHCBCA", - "OrganizationName": "Adam, Pritzker", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJEIBA", + "OrganizationName": "Gary L Howard M.D.", "NPIID": "", - "OrganizationZipCode": "31405" + "OrganizationZipCode": "35115" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFFFCA", - "OrganizationName": "Desert Canyon Foot Ankle", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGGACD", + "OrganizationName": "The Ear Nose Throat Allergy Sleep Center", "NPIID": "", - "OrganizationZipCode": "85392" + "OrganizationZipCode": "77304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHBCD", - "OrganizationName": "South Florida Foot and Ankle Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECCFAA", + "OrganizationName": "Bushra Cheema MD PA", "NPIID": "", - "OrganizationZipCode": "33411" + "OrganizationZipCode": "77469" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHEFBA", - "OrganizationName": "Princeton Sports and Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFCEAD", + "OrganizationName": "Center for Family Medicine", "NPIID": "", - "OrganizationZipCode": "08648" + "OrganizationZipCode": "57105" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJIAA", - "OrganizationName": "Brain \u0026 Spine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBEBA", + "OrganizationName": "David H Panossian, M.D., P.C.", "NPIID": "", - "OrganizationZipCode": "85224" + "OrganizationZipCode": "97601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBIBBD", - "OrganizationName": "Horizons Medical Care, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFFBA", + "OrganizationName": "Comprehensive Neurology Center PLLC", "NPIID": "", - "OrganizationZipCode": "35758" + "OrganizationZipCode": "37129" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDABDA", - "OrganizationName": "Eagles Landing Diabetes and Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAHGCA", + "OrganizationName": "Grapevine Rheumatology Clinic", "NPIID": "", - "OrganizationZipCode": "30281" + "OrganizationZipCode": "76051" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIAGAD", - "OrganizationName": "DESERT SKY ENDOCRINOLOGY", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEDJAD", + "OrganizationName": "Clifton Care Inc", "NPIID": "", - "OrganizationZipCode": "85209" + "OrganizationZipCode": "35957" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBCIBA", - "OrganizationName": "Heart Care CFL, P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGCHAA", + "OrganizationName": "Laura Regan, MD", "NPIID": "", - "OrganizationZipCode": "32780" + "OrganizationZipCode": "23113" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIHIAA", - "OrganizationName": "Olga Freeman, M.D. P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGACD", + "OrganizationName": "Johnson Internal Medicine Inc", "NPIID": "", - "OrganizationZipCode": "33912" + "OrganizationZipCode": "33487" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEBBA", - "OrganizationName": "Othopedic Associates of S.W. Ohio", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHFIAD", + "OrganizationName": "Vinod Patel MD", "NPIID": "", - "OrganizationZipCode": "45459" + "OrganizationZipCode": "11215" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDIAD", - "OrganizationName": "Henry Stark County Health Department", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBHCD", + "OrganizationName": "Hernando Pasco Primary Care", "NPIID": "", - "OrganizationZipCode": "61443" + "OrganizationZipCode": "34638" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EABECA", - "OrganizationName": "HCA-John Hau Lien, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIHEAA", + "OrganizationName": "Mark A Greenberger M P S C", "NPIID": "", - "OrganizationZipCode": "95116" + "OrganizationZipCode": "60035" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHEMED", - "OrganizationName": "Chemed Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJBGAD", + "OrganizationName": "Southwest Kansas Cardiology", "NPIID": "", - "OrganizationZipCode": "08701" + "OrganizationZipCode": "67801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEIBD", - "OrganizationName": "Gastro Consultants of Atlanta, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAGCD", + "OrganizationName": "Heart and Vascular Associates LLC", "NPIID": "", - "OrganizationZipCode": "30342" + "OrganizationZipCode": "85635" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEHBD", - "OrganizationName": "Paul Grayson Smith, DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHDFAD", + "OrganizationName": "Deepak Vadhan, M.D., FCCP", "NPIID": "", - "OrganizationZipCode": "37311" + "OrganizationZipCode": "11209" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHFAA", - "OrganizationName": "Horizon Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDJHBA", + "OrganizationName": "Advanced Ankle Foot", "NPIID": "", - "OrganizationZipCode": "07306" + "OrganizationZipCode": "85234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBADA", - "OrganizationName": "Freedman Clinic of Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIADCA", + "OrganizationName": "Orthopedic Specialists", "NPIID": "", - "OrganizationZipCode": "71303" + "OrganizationZipCode": "63122-3356" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBFAD", - "OrganizationName": "Community Physicians Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEFGBA", + "OrganizationName": "Ravi S. Randhawa MD", "NPIID": "", - "OrganizationZipCode": "72761" + "OrganizationZipCode": "33484" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGFIBD", - "OrganizationName": "Endocrine Associates of Florida, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHCBD", + "OrganizationName": "Robert T Simon MD", "NPIID": "", - "OrganizationZipCode": "32746" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBGAA", - "OrganizationName": "Kasper John", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIHIBA", + "OrganizationName": "Livingston Clinic", "NPIID": "", - "OrganizationZipCode": "08406" + "OrganizationZipCode": "77351" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBDGCA", - "OrganizationName": "TKFMC-South Valley Vascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDHIAA", + "OrganizationName": "Cross Road Care of Texas LLC", "NPIID": "", - "OrganizationZipCode": "93291" + "OrganizationZipCode": "77904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICBECA", - "OrganizationName": "Miyakawa Medical Group Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDFBCA", + "OrganizationName": "Asloyan Medical PC", "NPIID": "", - "OrganizationZipCode": "93274" + "OrganizationZipCode": "11235" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEDEBA", - "OrganizationName": "Advocate - Southland Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAGHAA", + "OrganizationName": "Columbus Skin Surgery Center", "NPIID": "", - "OrganizationZipCode": "60461" + "OrganizationZipCode": "43016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDEBA", - "OrganizationName": "Advocate - Southland Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDHECD", + "OrganizationName": "VIP Healthcare PLLC", "NPIID": "", - "OrganizationZipCode": "60461" + "OrganizationZipCode": "75119" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJGCA", - "OrganizationName": "OHS - Drs. Gunjan and Dipti Shah", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEGEBA", + "OrganizationName": "Respicare", "NPIID": "", - "OrganizationZipCode": "48154" + "OrganizationZipCode": "08807" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJEBD", - "OrganizationName": "Cardiovascular Institute of Northwest Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAEBD", + "OrganizationName": "PriMMed", "NPIID": "", - "OrganizationZipCode": "32401" + "OrganizationZipCode": "89148" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGJBA", - "OrganizationName": "OHS - Baldev Gupta, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIHADD", + "OrganizationName": "Test Southern Nevada Health District", "NPIID": "", - "OrganizationZipCode": "48183" + "OrganizationZipCode": "89107" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIDGBA", - "OrganizationName": "Michael Palazzolo, M.D", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJAACA", + "OrganizationName": "HCA - Alexander Tiu, MD PA", "NPIID": "", - "OrganizationZipCode": "19006" + "OrganizationZipCode": "77339" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEAAA", - "OrganizationName": "ERIC HOLMBERG, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEIICD", + "OrganizationName": "Mark Blair, MD, PC", "NPIID": "", - "OrganizationZipCode": "94954-2310" + "OrganizationZipCode": "37388" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBCBD", - "OrganizationName": "Neurology and Headache Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGGAA", + "OrganizationName": "Lakeview Internal Medicine", "NPIID": "", - "OrganizationZipCode": "25304" + "OrganizationZipCode": "29678" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCJBA", - "OrganizationName": "Endocrinology Consultants, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJBACD", + "OrganizationName": "J. DEAN STOCKSTILL, M.D.", "NPIID": "", - "OrganizationZipCode": "19901-4969" + "OrganizationZipCode": "71203" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJGCDA", - "OrganizationName": "BlueSky HouseCalls, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFHIAD", + "OrganizationName": "Focus Mental Health", "NPIID": "", - "OrganizationZipCode": "37027" + "OrganizationZipCode": "89144" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHIAD", - "OrganizationName": "LifeBrite Hospital Group, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIADAA", + "OrganizationName": "Cardio Vascular Clinic of Texas", "NPIID": "", - "OrganizationZipCode": "30047" + "OrganizationZipCode": "77375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFEBD", - "OrganizationName": "Alpha Medical Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJECBA", + "OrganizationName": "Darst Dermatology", "NPIID": "", - "OrganizationZipCode": "28303" + "OrganizationZipCode": "28277" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEBCD", - "OrganizationName": "Scott Colquhoun, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGEBA", + "OrganizationName": "Phoenix Associates", "NPIID": "", - "OrganizationZipCode": "95382" + "OrganizationZipCode": "75077" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDECA", - "OrganizationName": "Neurology Center Of Lumberton", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBFEAD", + "OrganizationName": "Siva P. Sontineni, MD, PA DBA: Radiant Heart Vascular Care", "NPIID": "", - "OrganizationZipCode": "28358" + "OrganizationZipCode": "76201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEBCAA", - "OrganizationName": "Michael S. Grocki, M.D., P.A..", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFDAA", + "OrganizationName": "Calvert Dermatology", "NPIID": "", - "OrganizationZipCode": "78028" + "OrganizationZipCode": "20678" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCCAAA", - "OrganizationName": "Lake Village Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGFCBA", + "OrganizationName": "Main Line Foot Ankle Center", "NPIID": "", - "OrganizationZipCode": "71653" + "OrganizationZipCode": "19003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEFHAA", - "OrganizationName": "North Texas Endocrinology and Diabetes Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCJCD", + "OrganizationName": "Joseph G. Krick, MD, PLLC", "NPIID": "", - "OrganizationZipCode": "75035" + "OrganizationZipCode": "37388" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCFBD", - "OrganizationName": "Pain Specialists of America", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIHDBA", + "OrganizationName": "Suhail A. Masudi, MD", "NPIID": "", - "OrganizationZipCode": "78132" + "OrganizationZipCode": "33414" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHHECA", - "OrganizationName": "Millennium Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHIHAA", + "OrganizationName": "SURGICAL GROUP OF SOUTH LAGUNA", "NPIID": "", - "OrganizationZipCode": "63128" + "OrganizationZipCode": "92651" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBIDAA", - "OrganizationName": "Excel Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFHCCD", + "OrganizationName": "Heart Care Vascular Medicine, PA", "NPIID": "", - "OrganizationZipCode": "01801" + "OrganizationZipCode": "32778" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBBACA", - "OrganizationName": "Comprehensive Kidney Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHHACD", + "OrganizationName": "Colon Stomach and Liver Center LLC", "NPIID": "", - "OrganizationZipCode": "44130" + "OrganizationZipCode": "20176" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAEHAD", - "OrganizationName": "ADM Medical Care LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDIGAA", + "OrganizationName": "Saweikis Family Medicine", "NPIID": "", - "OrganizationZipCode": "08755" + "OrganizationZipCode": "26726" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJEBD", - "OrganizationName": "Benezra Gynecology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAAFAA", + "OrganizationName": "NYCDOHMH-West Side Medical Group, PC", "NPIID": "", - "OrganizationZipCode": "32903" + "OrganizationZipCode": "10014" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABICAD", - "OrganizationName": "Naples Interventional Cardiac Electrophysiology, L.L.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACIBA", + "OrganizationName": "Mountain Medical Specialties Inc", "NPIID": "", - "OrganizationZipCode": "34102" + "OrganizationZipCode": "30525" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDACD", - "OrganizationName": "H D Cardiology PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHGAA", + "OrganizationName": "Heart and Rhythm Specialists", "NPIID": "", - "OrganizationZipCode": "32278" + "OrganizationZipCode": "30720" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCDCA", - "OrganizationName": "Vikram Mehta MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCDEBD", + "OrganizationName": "Keystone Surgical Group PLC", "NPIID": "", - "OrganizationZipCode": "32746" + "OrganizationZipCode": "48322" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBIBA", - "OrganizationName": "Womancare, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEFBD", + "OrganizationName": "Elkhart Clinic LLC", "NPIID": "", - "OrganizationZipCode": "60004" + "OrganizationZipCode": "46514" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EECJBD", - "OrganizationName": "Shima Hadidchi, MD, A Professional Corp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEJAA", + "OrganizationName": "Jemison Internal Medicine - A", "NPIID": "", - "OrganizationZipCode": "93295" + "OrganizationZipCode": "35085" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAEGAD", - "OrganizationName": "Gilbert Simoni, MD, FACG", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEIDCD", + "OrganizationName": "Maverick County Hospital District", "NPIID": "", - "OrganizationZipCode": "91360" + "OrganizationZipCode": "78852" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFGJCA", - "OrganizationName": "Karan Bhalla MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHCJBD", + "OrganizationName": "Rashid M Siddiqi, MD PA", "NPIID": "", - "OrganizationZipCode": "77504" + "OrganizationZipCode": "77521" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBIFAA", - "OrganizationName": "Huntington Dermatology, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADFAD", + "OrganizationName": "Allergy Clinic of Tulsa", "NPIID": "", - "OrganizationZipCode": "25701" + "OrganizationZipCode": "74133" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJHBA", - "OrganizationName": "Cardiology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEFEAD", + "OrganizationName": "Texas Eye Physicians", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "76011" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEGABD", - "OrganizationName": "Texas Associates of Endocrinology and Diabetes, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBFCCA", + "OrganizationName": "Mon-Vale Professional Services, Inc.", "NPIID": "", - "OrganizationZipCode": "75069" + "OrganizationZipCode": "15063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHBFCD", - "OrganizationName": "S. Thomas Sehy DPM, LLC dba Page Foot Ankle", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDIBD", + "OrganizationName": "Tamarack Family Medicine, LLC", "NPIID": "", - "OrganizationZipCode": "63132" + "OrganizationZipCode": "05661" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBHDCD", - "OrganizationName": "TEST - TALKIATRY MANAGEMENT SERVICES, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHEAA", + "OrganizationName": "Valley Women s Health", "NPIID": "", - "OrganizationZipCode": "10001-6208" + "OrganizationZipCode": "15063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJEAA", - "OrganizationName": "Huntington Beach Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFAACD", + "OrganizationName": "Estrella Ear Nose and Throat", "NPIID": "", - "OrganizationZipCode": "92663" + "OrganizationZipCode": "85395" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHACD", - "OrganizationName": "Kaditam V Reddy, MD, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEJBD", + "OrganizationName": "Syed M. Riaz, MD", "NPIID": "", - "OrganizationZipCode": "91360" + "OrganizationZipCode": "21090" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHFIBA", - "OrganizationName": "ASPA - Grace Zlaket-Matta, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIEBDD", + "OrganizationName": "Park Place Healthcare LLC", "NPIID": "", - "OrganizationZipCode": "85260" + "OrganizationZipCode": "35242" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGBFAD", - "OrganizationName": "Mary South MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEEEBD", + "OrganizationName": "Advanced Cardiac Care", "NPIID": "", - "OrganizationZipCode": "44304" + "OrganizationZipCode": "32825" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEEAA", - "OrganizationName": "NJ Spine and Pain Clinic, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHCJBA", + "OrganizationName": "Tri-County Medical Practice", "NPIID": "", - "OrganizationZipCode": "09860" + "OrganizationZipCode": "15012" }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEECA", - "OrganizationName": "HCA - Shenandoah Podiatry", + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCHAA", + "OrganizationName": "SouthShore Cardiovascular Associates", "NPIID": "", - "OrganizationZipCode": "24175" + "OrganizationZipCode": "33511" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIABAA", - "OrganizationName": "Beach Medical Specialist, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHDACA", + "OrganizationName": "Skin Care Now Pueblo PLLC", "NPIID": "", - "OrganizationZipCode": "32246" + "OrganizationZipCode": "81003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHFGAA", - "OrganizationName": "The Center for Neurosciences,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDEFBA", + "OrganizationName": "Pain and Spine Centers of Florida", "NPIID": "", - "OrganizationZipCode": "61201" + "OrganizationZipCode": "32778" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAAICD", - "OrganizationName": "Texas Interventional Joint and Spine, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHDDAD", + "OrganizationName": "Goldfield Cardiovascular Institute", "NPIID": "", - "OrganizationZipCode": "75024" + "OrganizationZipCode": "85119" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCAGCA", - "OrganizationName": "Mohammed G. Choudhury, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECGFCA", + "OrganizationName": "George Nasser, MD", "NPIID": "", - "OrganizationZipCode": "32055" + "OrganizationZipCode": "77384" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACDFAD", - "OrganizationName": "Tri-County Heart Institute PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIDEBD", + "OrganizationName": "Third Coast Health, PLLC", "NPIID": "", - "OrganizationZipCode": "32159" + "OrganizationZipCode": "78411" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBCABD", - "OrganizationName": "Wiregras Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCICAA", + "OrganizationName": "Handelsman Family Practice", "NPIID": "", - "OrganizationZipCode": "36301" + "OrganizationZipCode": "15120" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJAJBA", - "OrganizationName": "Bachman and Scully, LTD; DBA Arthritis Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBFHAD", + "OrganizationName": "Inlet Pulmonary Critical Care and Sleep Medicine", "NPIID": "", - "OrganizationZipCode": "89511-4040" + "OrganizationZipCode": "29585" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDGBD", - "OrganizationName": "Pain and Spine Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDFCA", + "OrganizationName": "Bindusagar Reddy, MD Inc", "NPIID": "", - "OrganizationZipCode": "60435" + "OrganizationZipCode": "93257" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHHFBD", - "OrganizationName": "Brandon Sutton MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFFBD", + "OrganizationName": "SHCN - Michael A. Venazio MD", "NPIID": "", - "OrganizationZipCode": "40202" + "OrganizationZipCode": "32958" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJGCBD", - "OrganizationName": "CGHN - Georgia Spine and Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHACA", + "OrganizationName": "Western Nephrology", "NPIID": "", - "OrganizationZipCode": "31217" + "OrganizationZipCode": "80033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCGDCD", - "OrganizationName": "Ohio Valley ENT,Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGIBA", + "OrganizationName": "Bend Neurological Associates", "NPIID": "", - "OrganizationZipCode": "45458" + "OrganizationZipCode": "97701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFJBD", - "OrganizationName": "Texas ENT Allergy Associates LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJADAA", + "OrganizationName": "Mathew, MD. Jose", "NPIID": "", - "OrganizationZipCode": "77845" + "OrganizationZipCode": "71446" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDABA", - "OrganizationName": "Advocate - Naperville Internist", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJABCA", + "OrganizationName": "CrossRoads Family Medicine", "NPIID": "", - "OrganizationZipCode": "60540" + "OrganizationZipCode": "42718" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBBACD", - "OrganizationName": "East Los Angeles Cardiology Medical Group Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIABA", + "OrganizationName": "Advocate - Midwest Womens Obstetrics/ Gynecologists, LTD", "NPIID": "", - "OrganizationZipCode": "90033" + "OrganizationZipCode": "60515" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEFFAA", - "OrganizationName": "Ventana Group of Brevard", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFBBA", + "OrganizationName": "Rania Abdel-Rahman, MD PLLC", "NPIID": "", - "OrganizationZipCode": "32796" + "OrganizationZipCode": "32207-8343" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADICD", - "OrganizationName": "JAIME L SILVA, M D , P L L C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCBAA", + "OrganizationName": "Franklin Rodney", "NPIID": "", - "OrganizationZipCode": "78520" + "OrganizationZipCode": "79413" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GABFAD", - "OrganizationName": "Westcare Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDABD", + "OrganizationName": "North Valley Breast Clinic", "NPIID": "", - "OrganizationZipCode": "70072" + "OrganizationZipCode": "96001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCGADA", - "OrganizationName": "Benny Wang, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHIDAD", + "OrganizationName": "Cisca Pulmonary", "NPIID": "", - "OrganizationZipCode": "77380" + "OrganizationZipCode": "32250" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBABBD", - "OrganizationName": "Neuro Care of Louisiana", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIEBA", + "OrganizationName": "Monadnock Community Hospital", "NPIID": "", - "OrganizationZipCode": "70433" + "OrganizationZipCode": "03458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHABCA", - "OrganizationName": "Advocate - Twenty First Century Pediatrics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDFAA", + "OrganizationName": "High Desert Nephrology Associates", "NPIID": "", - "OrganizationZipCode": "60540" + "OrganizationZipCode": "87301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCIBAA", - "OrganizationName": "Hull Dermatology, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCGGAA", + "OrganizationName": "Finger Lakes Migrant Health Care", "NPIID": "", - "OrganizationZipCode": "72758" + "OrganizationZipCode": "14527" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACDCA", - "OrganizationName": "ElyssElyssa Blissenbach MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIAEAD", + "OrganizationName": "Kevin M Jenkins DO Inc - NAMM", "NPIID": "", - "OrganizationZipCode": "32204" + "OrganizationZipCode": "91786" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIGBD", - "OrganizationName": "Central Florida Infectious Diseases LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJIAA", + "OrganizationName": "AIP - AZ Ear Nose Throat Phys", "NPIID": "", - "OrganizationZipCode": "33569" + "OrganizationZipCode": "85375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HABBCA", - "OrganizationName": "Interventional Spine and Pain Physicians PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDJBD", + "OrganizationName": "Primary Care Specialists, Inc", "NPIID": "", - "OrganizationZipCode": "55369" + "OrganizationZipCode": "23504" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEBACD", - "OrganizationName": "Heart and Vascular Associates of Tampa LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJCBBA", + "OrganizationName": "BIDMC - Hatfield Cardiology LLC", "NPIID": "", - "OrganizationZipCode": "33606" + "OrganizationZipCode": "02601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHHCAD", - "OrganizationName": "Central Arkansas Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHFBA", + "OrganizationName": "Kevin Jones, MD", "NPIID": "", - "OrganizationZipCode": "72034" + "OrganizationZipCode": "76067" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHCCD", - "OrganizationName": "Graham Medical Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCADBA", + "OrganizationName": "Steven Hilty MD", "NPIID": "", - "OrganizationZipCode": "76450" + "OrganizationZipCode": "93405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBHBD", - "OrganizationName": "Brain Spine and Sleep Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHIBD", + "OrganizationName": "493 Internal Medicine, PLLC", "NPIID": "", - "OrganizationZipCode": "33853" + "OrganizationZipCode": "38555" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFABDA", - "OrganizationName": "Jadav, Priti, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCIBA", + "OrganizationName": "Advocate - Naperbrook Medical Center", "NPIID": "", - "OrganizationZipCode": "77479" + "OrganizationZipCode": "60440" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDFEBA", - "OrganizationName": "Mell \u0026 Jones Orthopedics, Ltd.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGGFBA", + "OrganizationName": "Sutter Family Practice, Inc", "NPIID": "", - "OrganizationZipCode": "63017" + "OrganizationZipCode": "30705" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIIAAA", - "OrganizationName": "Kings Bay Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICACCA", + "OrganizationName": "Advocate - Optimum Kidney Care, SC", "NPIID": "", - "OrganizationZipCode": "11229" + "OrganizationZipCode": "60657" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHDDCD", - "OrganizationName": "RHEUMATOLOGY CARE ASSOCIATES PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICIBA", + "OrganizationName": "Advocate - Alameda Foot Centers", "NPIID": "", - "OrganizationZipCode": "34711" + "OrganizationZipCode": "60634" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHDADA", - "OrganizationName": "Elias M. Rifkah M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCGHBA", + "OrganizationName": "Joan F. Bailey, MD", "NPIID": "", - "OrganizationZipCode": "16601" + "OrganizationZipCode": "85004" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCJBA", - "OrganizationName": "Advocate - Aleksander Podolsky, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECFCD", + "OrganizationName": "West Texas Neurology Clinic LLC", "NPIID": "", - "OrganizationZipCode": "60048" + "OrganizationZipCode": "79414" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEDEBD", - "OrganizationName": "Naples Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBFJCA", + "OrganizationName": "GASTROENTEROLOGY DIAGNOSTIC CLINIC, PA", "NPIID": "", - "OrganizationZipCode": "34102" + "OrganizationZipCode": "77505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHIBCD", - "OrganizationName": "Lifetime Medical Associates of Aventura, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHCBCA", + "OrganizationName": "Adam, Pritzker", "NPIID": "", - "OrganizationZipCode": "33160" + "OrganizationZipCode": "31405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJFBA", - "OrganizationName": "HCA - The Surgical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFFFCA", + "OrganizationName": "Desert Canyon Foot Ankle", "NPIID": "", - "OrganizationZipCode": "37203" + "OrganizationZipCode": "85392" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGECD", - "OrganizationName": "Heart Rhythm Associates,PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHBCD", + "OrganizationName": "South Florida Foot and Ankle Centers", "NPIID": "", - "OrganizationZipCode": "32405" + "OrganizationZipCode": "33411" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJGBD", - "OrganizationName": "Sita Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHEFBA", + "OrganizationName": "Princeton Sports and Family Medicine", "NPIID": "", - "OrganizationZipCode": "48192" + "OrganizationZipCode": "08648" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJEAA", - "OrganizationName": "Bend Spine Pain Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJIAA", + "OrganizationName": "Brain \u0026 Spine Center", "NPIID": "", - "OrganizationZipCode": "97701" + "OrganizationZipCode": "85224" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEAAA", - "OrganizationName": "Innovative Pain Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBIBBD", + "OrganizationName": "Horizons Medical Care, P.C", "NPIID": "", - "OrganizationZipCode": "57201" + "OrganizationZipCode": "35758" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHGAD", - "OrganizationName": "Atlanta Kidney Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDABDA", + "OrganizationName": "Eagles Landing Diabetes and Endocrinology", "NPIID": "", - "OrganizationZipCode": "30274" + "OrganizationZipCode": "30281" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJACA", - "OrganizationName": "Fui Dawson MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIAGAD", + "OrganizationName": "DESERT SKY ENDOCRINOLOGY", "NPIID": "", - "OrganizationZipCode": "30338" + "OrganizationZipCode": "85209" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIJIBD", - "OrganizationName": "TEXAS COASTAL BEND PULMONARY CRITICAL CARE ASSOCIATES", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBCIBA", + "OrganizationName": "Heart Care CFL, P.A", "NPIID": "", - "OrganizationZipCode": "78414" + "OrganizationZipCode": "32780" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEEBD", - "OrganizationName": "Pulmonary Critical Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIHIAA", + "OrganizationName": "Olga Freeman, M.D. P.A.", "NPIID": "", - "OrganizationZipCode": "33462" + "OrganizationZipCode": "33912" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFACCA", - "OrganizationName": "Northeast Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEBBA", + "OrganizationName": "Othopedic Associates of S.W. Ohio", "NPIID": "", - "OrganizationZipCode": "77338" + "OrganizationZipCode": "45459" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGIIBA", - "OrganizationName": "PPIN", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDIAD", + "OrganizationName": "Henry Stark County Health Department", "NPIID": "", - "OrganizationZipCode": "46410" + "OrganizationZipCode": "61443" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHAGCD", - "OrganizationName": "RI Rheumatology LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EABECA", + "OrganizationName": "HCA-John Hau Lien, MD", "NPIID": "", - "OrganizationZipCode": "02910" + "OrganizationZipCode": "95116" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHJACD", - "OrganizationName": "Edward G. Mackay, M.D PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJDEAA", + "OrganizationName": "Valley Cardiovascular Associates", "NPIID": "", - "OrganizationZipCode": "34683" + "OrganizationZipCode": "95116" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEFADA", - "OrganizationName": "Berta De Leon Scaglia, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHEMED", + "OrganizationName": "Chemed Health", "NPIID": "", - "OrganizationZipCode": "77023" + "OrganizationZipCode": "08701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIIJBA", - "OrganizationName": "Rai Kakkar MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEIBD", + "OrganizationName": "Gastro Consultants of Atlanta, P.C.", "NPIID": "", - "OrganizationZipCode": "80230" + "OrganizationZipCode": "30342" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCJBD", - "OrganizationName": "SWHR - KOKORO HEALTH \u0026 WELLNESS, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCIIBA", + "OrganizationName": "Broward Institute of Orthopaedics", "NPIID": "", - "OrganizationZipCode": "75254" + "OrganizationZipCode": "33021" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJJCA", - "OrganizationName": "Michael A Barnett MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEHBD", + "OrganizationName": "Paul Grayson Smith, DO", "NPIID": "", - "OrganizationZipCode": "78213" + "OrganizationZipCode": "37311" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/WECARE", - "OrganizationName": "Statcare Urgent Care Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDJBCD", + "OrganizationName": "NORTHWEST PAIN INSTITUTE LLC", "NPIID": "", - "OrganizationZipCode": "11801" + "OrganizationZipCode": "97116" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHFDBD", - "OrganizationName": "Grayson Digestive Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHFAA", + "OrganizationName": "Horizon Health Center", "NPIID": "", - "OrganizationZipCode": "75012" + "OrganizationZipCode": "07306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJIAD", - "OrganizationName": "Pramod Joseph, MD, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGDCD", + "OrganizationName": "New Access Medical Center INC", "NPIID": "", - "OrganizationZipCode": "34960" + "OrganizationZipCode": "33186" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADHAA", - "OrganizationName": "Arnab Biswas D.O.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBADA", + "OrganizationName": "Freedman Clinic of Internal Medicine", "NPIID": "", - "OrganizationZipCode": "92395" + "OrganizationZipCode": "71303" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBFDBA", - "OrganizationName": "Texas Heart Rhythm Center, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGGFCD", + "OrganizationName": "NEUROCENTER AZ PLLC", "NPIID": "", - "OrganizationZipCode": "77074" + "OrganizationZipCode": "85306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJECCD", - "OrganizationName": "Advanced Vascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBFAD", + "OrganizationName": "Community Physicians Group", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "72761" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFEEBD", - "OrganizationName": "VERZOSA UNGAB INTERNAL MEDICINE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJCBA", + "OrganizationName": "Yash P. Sangwan, M.D., P.A.", "NPIID": "", - "OrganizationZipCode": "38134" + "OrganizationZipCode": "32034" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCACBA", - "OrganizationName": "NYCDOHMH - Future Bright Management, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGFIBD", + "OrganizationName": "Endocrine Associates of Florida, PA", "NPIID": "", - "OrganizationZipCode": "10013" + "OrganizationZipCode": "32746" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEGABA", - "OrganizationName": "HCA - Frontier Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJIFBA", + "OrganizationName": "Central Florida Heart Associates", "NPIID": "", - "OrganizationZipCode": "79925" + "OrganizationZipCode": "32763" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJDAD", - "OrganizationName": "Sandia Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBGAA", + "OrganizationName": "Kasper John", "NPIID": "", - "OrganizationZipCode": "87109" + "OrganizationZipCode": "08406" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDECA", - "OrganizationName": "Georgia Pain Wellness", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACICA", + "OrganizationName": "Kuttawa Clinic, PLLC", "NPIID": "", - "OrganizationZipCode": "30046" + "OrganizationZipCode": "42055" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAHCCA", - "OrganizationName": "Westside Family Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBDGCA", + "OrganizationName": "TKFMC-South Valley Vascular", "NPIID": "", - "OrganizationZipCode": "90405-4901" + "OrganizationZipCode": "93291" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAFDBD", - "OrganizationName": "Vineyard Medical Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEAHAD", + "OrganizationName": "Sumter Medical Specialists, PA", "NPIID": "", - "OrganizationZipCode": "02568" + "OrganizationZipCode": "29150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGAIBD", - "OrganizationName": "Little River Medical Center Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICBECA", + "OrganizationName": "Miyakawa Medical Group Inc", "NPIID": "", - "OrganizationZipCode": "29566" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBDBD", - "OrganizationName": "HeartCare Associates of Arizona", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEDEBA", + "OrganizationName": "Advocate - Southland Orthopedics", "NPIID": "", - "OrganizationZipCode": "85375" + "OrganizationZipCode": "60461" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJCGAA", - "OrganizationName": "Fishkill Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBFCD", + "OrganizationName": "Mahendra Mahatma, M.D.. P.A.", "NPIID": "", - "OrganizationZipCode": "12524" + "OrganizationZipCode": "75039" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAFBD", - "OrganizationName": "Advocare LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDEBA", + "OrganizationName": "Advocate - Southland Rheumatology", "NPIID": "", - "OrganizationZipCode": "08053" + "OrganizationZipCode": "60461" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGACBD", - "OrganizationName": "Metro Community Health Centers, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDHGCA", + "OrganizationName": "Sheridan Healthcorp Inc", "NPIID": "", - "OrganizationZipCode": "10460" + "OrganizationZipCode": "33323" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEDEBD", - "OrganizationName": "Advocare LLC_TEST1", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJGCA", + "OrganizationName": "OHS - Drs. Gunjan and Dipti Shah", "NPIID": "", - "OrganizationZipCode": "08053" + "OrganizationZipCode": "48154" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFEDBA", - "OrganizationName": "Paoli Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCBFAD", + "OrganizationName": "Concerto Healthcare, INC---TEST---", "NPIID": "", - "OrganizationZipCode": "19301" + "OrganizationZipCode": "92614" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHIAA", - "OrganizationName": "Sridhar K. Iyer, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJEBD", + "OrganizationName": "Cardiovascular Institute of Northwest Florida", "NPIID": "", - "OrganizationZipCode": "76208" + "OrganizationZipCode": "32401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGDBA", - "OrganizationName": "HCA - Family Physicians of Kansas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEADBA", + "OrganizationName": "M. Todd Peacock, MD, PC", "NPIID": "", - "OrganizationZipCode": "67002" + "OrganizationZipCode": "31023" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDICAA", - "OrganizationName": "Internal Medicine, Hypertension and Kidney Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGJBA", + "OrganizationName": "OHS - Baldev Gupta, MD", "NPIID": "", - "OrganizationZipCode": "23502" + "OrganizationZipCode": "48183" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIHJBA", - "OrganizationName": "HCA - Atlanta Allergy and Otolaryngology Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIDGBA", + "OrganizationName": "Michael Palazzolo, M.D", "NPIID": "", - "OrganizationZipCode": "30606" + "OrganizationZipCode": "19006" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHACDA", - "OrganizationName": "BHN - Pioneer Cardiovascular Consultants, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGCDBA", + "OrganizationName": "Irfan Lalani, MD PA", "NPIID": "", - "OrganizationZipCode": "85283" + "OrganizationZipCode": "77479" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JACADA", - "OrganizationName": "20 20 Eye Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEAAA", + "OrganizationName": "ERIC HOLMBERG, M.D.", "NPIID": "", - "OrganizationZipCode": "46404" + "OrganizationZipCode": "94954-2310" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAIBBD", - "OrganizationName": "Spine and Orthopedic Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHFIAA", + "OrganizationName": "Rani Anbarasu MD PA", "NPIID": "", - "OrganizationZipCode": "30236" + "OrganizationZipCode": "76207" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECIBAA", - "OrganizationName": "Om Chaurasia, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFBACA", + "OrganizationName": "PLATINUM ENT", "NPIID": "", - "OrganizationZipCode": "92691" + "OrganizationZipCode": "33446" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCFAA", - "OrganizationName": "Texas Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBCBD", + "OrganizationName": "Neurology and Headache Clinic", "NPIID": "", - "OrganizationZipCode": "77380" + "OrganizationZipCode": "25304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBIGBD", - "OrganizationName": "Sathish and Radha IM Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHACD", + "OrganizationName": "SKYLANDS VASCULAR SPECIALISTS LLC", "NPIID": "", - "OrganizationZipCode": "25601" + "OrganizationZipCode": "07871" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBGBDA", - "OrganizationName": "Atlantic Neurosurgical and Spine Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEDACA", + "OrganizationName": "Suzanne Gharb", "NPIID": "", - "OrganizationZipCode": "28401" + "OrganizationZipCode": "25309" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFCABA", - "OrganizationName": "Advocate - YR Medical Group SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCJBA", + "OrganizationName": "Endocrinology Consultants, PA", "NPIID": "", - "OrganizationZipCode": "60062" + "OrganizationZipCode": "19901-4969" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDJBD", - "OrganizationName": "ChristiMD Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIABD", + "OrganizationName": "Bloomington Kidney and Hypertension Specialists PC", "NPIID": "", - "OrganizationZipCode": "77094" + "OrganizationZipCode": "47401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIFBD", - "OrganizationName": "Pulmonology Clinic of Opelousas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJCADA", + "OrganizationName": "Georgia Renal Associates", "NPIID": "", - "OrganizationZipCode": "70570" + "OrganizationZipCode": "30606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJJDBA", - "OrganizationName": "NYCDOHMH - Wuhua Jing MD, PhD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJGCDA", + "OrganizationName": "BlueSky HouseCalls, LLC", "NPIID": "", - "OrganizationZipCode": "10038" + "OrganizationZipCode": "37027" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIJADA", - "OrganizationName": "Heart and Vascular Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADIJAD", + "OrganizationName": "Ravi S Shankar, M.D.", "NPIID": "", - "OrganizationZipCode": "32807" + "OrganizationZipCode": "93534" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECJEBD", - "OrganizationName": "Frontier Gastroenterology and Hepatology LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDCDA", + "OrganizationName": "Best Way Clinic of Burleson", "NPIID": "", - "OrganizationZipCode": "34655" + "OrganizationZipCode": "76028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEDBCA", - "OrganizationName": "Etowah Gastroenterology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHIAD", + "OrganizationName": "LifeBrite Hospital Group, LLC", "NPIID": "", - "OrganizationZipCode": "35903" + "OrganizationZipCode": "30047" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGDECD", - "OrganizationName": "Cutting Edge Foot and Ankle Clinic PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEBIAA", + "OrganizationName": "Madera Family Medical", "NPIID": "", - "OrganizationZipCode": "37207" + "OrganizationZipCode": "93697" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DICCDA", - "OrganizationName": "Cardiology Associates of Somerset County", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFEBD", + "OrganizationName": "Alpha Medical Centers", "NPIID": "", - "OrganizationZipCode": "08800" + "OrganizationZipCode": "28303" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGICD", - "OrganizationName": "Music City Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACDBD", + "OrganizationName": "Kenai Peninsula Orthopaedics", "NPIID": "", - "OrganizationZipCode": "37203" + "OrganizationZipCode": "99669" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJFBD", - "OrganizationName": "Lower Merion Rehabilitation Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBACBA", + "OrganizationName": "Advanced Vein Center", "NPIID": "", - "OrganizationZipCode": "19096" + "OrganizationZipCode": "85215" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCDCDA", - "OrganizationName": "Sarma S. Challa, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEBCD", + "OrganizationName": "Scott Colquhoun, MD, PC", "NPIID": "", - "OrganizationZipCode": "77521" + "OrganizationZipCode": "95382" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJECBA", - "OrganizationName": "Digestive Disease Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIHEBA", + "OrganizationName": "Lincoln Family Wellness, P.C.", "NPIID": "", - "OrganizationZipCode": "35903" + "OrganizationZipCode": "68510" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDEADD", - "OrganizationName": "MSO - Honeycomb Management Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEJDAA", + "OrganizationName": "NYCDOHMH: Arjun Medical Group", "NPIID": "", - "OrganizationZipCode": "38119" + "OrganizationZipCode": "10016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEGDAA", - "OrganizationName": "Glenn Waldman MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDECA", + "OrganizationName": "Neurology Center Of Lumberton", "NPIID": "", - "OrganizationZipCode": "91361" + "OrganizationZipCode": "28358" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGBAA", - "OrganizationName": "Tri-Cities Digestive Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJEBCD", + "OrganizationName": "B L HEALTH, INC DBA ALLHEALTH", "NPIID": "", - "OrganizationZipCode": "99352" + "OrganizationZipCode": "11230" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEIBDA", - "OrganizationName": "Ponderosa Family Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHABA", + "OrganizationName": "CHCF - Shyam Bhaskar, MD", "NPIID": "", - "OrganizationZipCode": "85541" + "OrganizationZipCode": "93277" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHBABA", - "OrganizationName": "Sierra Care Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEBCAA", + "OrganizationName": "Michael S. Grocki, M.D., P.A..", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "78028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFDHCA", - "OrganizationName": "SNMH - Bruce V. Lattyak", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDGDCD", + "OrganizationName": "Tudor M. Scridon, MD, PL", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "32963" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHFJBD", - "OrganizationName": "Lilac Ob-Gyn", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHFBA", + "OrganizationName": "Allergy \u0026 Asthma Clinic of Northwest Arkansas", "NPIID": "", - "OrganizationZipCode": "85224" + "OrganizationZipCode": "72712" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDFIBA", - "OrganizationName": "Foothill Podiatry Clinic Of Grass Valley, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCCAAA", + "OrganizationName": "Lake Village Clinic", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "71653" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJEAA", - "OrganizationName": "Eko Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGADBA", + "OrganizationName": "Daniel Bendetowicz", "NPIID": "", - "OrganizationZipCode": "37375" + "OrganizationZipCode": "33912" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJEDBA", - "OrganizationName": "William C. Brown, Jr, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCIBA", + "OrganizationName": "SHS - Prime Care Medical LLP", "NPIID": "", - "OrganizationZipCode": "33756" + "OrganizationZipCode": "06902" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGJBDA", - "OrganizationName": "Satish Patel, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEFHAA", + "OrganizationName": "North Texas Endocrinology and Diabetes Center", "NPIID": "", - "OrganizationZipCode": "34652" + "OrganizationZipCode": "75035" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFIAAA", - "OrganizationName": "Drs. Shahla And Fleer, P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFJBDA", + "OrganizationName": "Kim D. Keller, M.D.", "NPIID": "", - "OrganizationZipCode": "34135" + "OrganizationZipCode": "77429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJBFCD", - "OrganizationName": "CATALYST NEUROMEDICAL CENTER, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCFBD", + "OrganizationName": "Pain Specialists of America", "NPIID": "", - "OrganizationZipCode": "96001" + "OrganizationZipCode": "78132" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIDCD", - "OrganizationName": "HOSPICE OF THE CHESAPEAKE, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJGBD", + "OrganizationName": "Rockford Pain Center", "NPIID": "", - "OrganizationZipCode": "21122" + "OrganizationZipCode": "61107" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJHIBA", - "OrganizationName": "Churchland Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHHECA", + "OrganizationName": "Millennium Pain Management", "NPIID": "", - "OrganizationZipCode": "23435" + "OrganizationZipCode": "63128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDEECD", - "OrganizationName": "The Howard Center for Wellness LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBAIBD", + "OrganizationName": "Pain Management Plus, PLLC", "NPIID": "", - "OrganizationZipCode": "08859" + "OrganizationZipCode": "28043" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCEAA", - "OrganizationName": "Arizona Foot and Ankle Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEEBD", + "OrganizationName": "CAN Community Health", "NPIID": "", - "OrganizationZipCode": "92673" + "OrganizationZipCode": "34237" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGIBD", - "OrganizationName": "Carolina OBGYN LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBIDAA", + "OrganizationName": "Excel Orthopedics", "NPIID": "", - "OrganizationZipCode": "29576" + "OrganizationZipCode": "01801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCADA", - "OrganizationName": "Caswell Family Medical Center Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGFJAD", + "OrganizationName": "Austin Pulmonary Consultants", "NPIID": "", - "OrganizationZipCode": "27379" + "OrganizationZipCode": "78727" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEFAAA", - "OrganizationName": "Gethsemane Cardiovascular Clinic, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHDDCA", + "OrganizationName": "Marc Behar MD", "NPIID": "", - "OrganizationZipCode": "37130" + "OrganizationZipCode": "11530" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECJBA", - "OrganizationName": "GastroCare LI", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBBACA", + "OrganizationName": "Comprehensive Kidney Care", "NPIID": "", - "OrganizationZipCode": "11581" + "OrganizationZipCode": "44130" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIACA", - "OrganizationName": "Berkower Pain \u0026 Spine Rehabilitation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGECA", + "OrganizationName": "Quraishi, Mohammed MD", "NPIID": "", - "OrganizationZipCode": "33027" + "OrganizationZipCode": "77504" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEIJBA", - "OrganizationName": "HCA - Mendicino and Lo", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCBBD", + "OrganizationName": "SWHR - BE WELL PRIMARY CARE MEDICINE, PLLC", "NPIID": "", - "OrganizationZipCode": "77082" + "OrganizationZipCode": "76177" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIHJBA", - "OrganizationName": "Advocate - Robert Schwartzenberg, M.D., PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAEHAD", + "OrganizationName": "ADM Medical Care LLC", "NPIID": "", - "OrganizationZipCode": "60021" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIDECA", - "OrganizationName": "Neurology of Central Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHECBD", + "OrganizationName": "Orthopedic Foot and Ankle Surgeon", "NPIID": "", - "OrganizationZipCode": "32701" + "OrganizationZipCode": "34109" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEGCAA", - "OrganizationName": "Springfield Family Physicians, LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDHCAD", + "OrganizationName": "Kameswari Kalluri MD PC", "NPIID": "", - "OrganizationZipCode": "97477" + "OrganizationZipCode": "46321" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDDCA", - "OrganizationName": "Arizona Physical Medicine Rehabilitaion PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJEBD", + "OrganizationName": "Benezra Gynecology", "NPIID": "", - "OrganizationZipCode": "85280" + "OrganizationZipCode": "32903" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGIACA", - "OrganizationName": "Surgical Assoicates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHCCBD", + "OrganizationName": "Long Island Medical Group", "NPIID": "", - "OrganizationZipCode": "59101" + "OrganizationZipCode": "11735" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAJHAA", - "OrganizationName": "NYCDOHMH-Rosman Wasserman", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCDCD", + "OrganizationName": "Premier Primary Care, PLLC", "NPIID": "", - "OrganizationZipCode": "11375" + "OrganizationZipCode": "38261" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAGDAA", - "OrganizationName": "North Florida Pain Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABICAD", + "OrganizationName": "Naples Interventional Cardiac Electrophysiology, L.L.C.", "NPIID": "", - "OrganizationZipCode": "32210" + "OrganizationZipCode": "34102" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHECDA", - "OrganizationName": "Pinnacle Family Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFHEBD", + "OrganizationName": "Gregory Shannon, MD", "NPIID": "", - "OrganizationZipCode": "28304" + "OrganizationZipCode": "77469" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHDAA", - "OrganizationName": "Crystal Arthritis Center, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIIBD", + "OrganizationName": "Dallas Ear Institute", "NPIID": "", - "OrganizationZipCode": "44333" + "OrganizationZipCode": "75230" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIDAD", - "OrganizationName": "Carlos Aguilar MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDACD", + "OrganizationName": "H D Cardiology PA", "NPIID": "", - "OrganizationZipCode": "77504" + "OrganizationZipCode": "32278" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDFCDA", - "OrganizationName": "Cardiovascular Center of Hagerstown", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICIBD", + "OrganizationName": "Tri County Physicians LLC", "NPIID": "", - "OrganizationZipCode": "21742" + "OrganizationZipCode": "32159" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIADA", - "OrganizationName": "Surgical Associates PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIBAA", + "OrganizationName": "Carson Office", "NPIID": "", - "OrganizationZipCode": "66502" + "OrganizationZipCode": "89703" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJEBD", - "OrganizationName": "AMITA - Nirali Parikh, MD LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCDCA", + "OrganizationName": "Vikram Mehta MD PA", "NPIID": "", - "OrganizationZipCode": "60169" + "OrganizationZipCode": "32746" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCCAA", - "OrganizationName": "GastroDoxs PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIFBA", + "OrganizationName": "South Bay MOHS and Skin Cancer Clinic", "NPIID": "", - "OrganizationZipCode": "77429" + "OrganizationZipCode": "95126" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBCADA", - "OrganizationName": "Jigar Ghelani, M.D. Professional Corp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJFHBD", + "OrganizationName": "Health Education Assessment and Leadership", "NPIID": "", - "OrganizationZipCode": "91360" + "OrganizationZipCode": "30311" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAAAAA", - "OrganizationName": "MEDPEDS, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBIBA", + "OrganizationName": "Womancare, PC", "NPIID": "", - "OrganizationZipCode": "20707" + "OrganizationZipCode": "60004" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHIBAA", - "OrganizationName": "Milan Medical Center PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDDCBA", + "OrganizationName": "Neurosurgical Associates", "NPIID": "", - "OrganizationZipCode": "38358" + "OrganizationZipCode": "37203" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBCCD", - "OrganizationName": "Hillside Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIFAA", + "OrganizationName": "Faiz Niaz_TEST Facility, MD", "NPIID": "", - "OrganizationZipCode": "17331" + "OrganizationZipCode": "37312" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGHJAD", - "OrganizationName": "Advocate - Internal Medicine Family Practice, S.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJBAA", + "OrganizationName": "Robert Smythe, M.D.", "NPIID": "", - "OrganizationZipCode": "60435" + "OrganizationZipCode": "85364" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFBCD", - "OrganizationName": "Paragon Pain and Rehabilitation, LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHGJBA", + "OrganizationName": "Aaron Morgan, MD", "NPIID": "", - "OrganizationZipCode": "75460-9331" + "OrganizationZipCode": "07755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFGAA", - "OrganizationName": "Pacific Coast Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCDAA", + "OrganizationName": "Rich, Phoebe MD", "NPIID": "", - "OrganizationZipCode": "91710" + "OrganizationZipCode": "97210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBBCD", - "OrganizationName": "Summit Medical Center dba Summit Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIJBA", + "OrganizationName": "Gulf Coast Internist, LLC", "NPIID": "", - "OrganizationZipCode": "82609" + "OrganizationZipCode": "33710" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEHBD", - "OrganizationName": "WAFL Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJGAA", + "OrganizationName": "NYCDOHMH-NY Total Medical Care P.C.", "NPIID": "", - "OrganizationZipCode": "43113" + "OrganizationZipCode": "11215" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CABIAD", - "OrganizationName": "Crescent City Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCCFBD", + "OrganizationName": "Integrative Medicine - MO", "NPIID": "", - "OrganizationZipCode": "95531" + "OrganizationZipCode": "65053" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFCCA", - "OrganizationName": "Sovereign Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGJBBD", + "OrganizationName": "Jandali Surgical Associates", "NPIID": "", - "OrganizationZipCode": "07410" + "OrganizationZipCode": "53143" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDGECD", - "OrganizationName": "OZ Healthcare PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDIAA", + "OrganizationName": "Rocky Mountain Neurology", "NPIID": "", - "OrganizationZipCode": "77479" + "OrganizationZipCode": "80124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHEEAD", - "OrganizationName": "PROD - ACMH Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEGCCD", + "OrganizationName": "Southwest Kidney Care, LLC", "NPIID": "", - "OrganizationZipCode": "16201" + "OrganizationZipCode": "87109" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHHDAA", - "OrganizationName": "Neurological Care Center, P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBCACA", + "OrganizationName": "Bucks Mont Rheumatology", "NPIID": "", - "OrganizationZipCode": "08757" + "OrganizationZipCode": "18964" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHBBA", - "OrganizationName": "Orlando Family Medical, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDJHAA", + "OrganizationName": "Saeed, Shahid M.D.", "NPIID": "", - "OrganizationZipCode": "34741" + "OrganizationZipCode": "21237" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACABD", - "OrganizationName": "The Family Medicine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCEAD", + "OrganizationName": "Brevard Neuro Center", "NPIID": "", - "OrganizationZipCode": "96720" + "OrganizationZipCode": "32901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCABA", - "OrganizationName": "Sumter Ear, Nose, Throat Facial Plastic Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDBDA", + "OrganizationName": "Internal Medicine of Southeast GA.", "NPIID": "", - "OrganizationZipCode": "29150" + "OrganizationZipCode": "31545" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHCIAA", - "OrganizationName": "James Brazil, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBACBA", + "OrganizationName": "NYCDOHMH - Cuidado Medico Y Geriatrico Of Queens, P.C", "NPIID": "", - "OrganizationZipCode": "42211" + "OrganizationZipCode": "11372" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHJFBA", - "OrganizationName": "Tariq Mahmood MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGHICD", + "OrganizationName": "Seema A. Dar, M.D., P.A", "NPIID": "", - "OrganizationZipCode": "73110" + "OrganizationZipCode": "78258" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABHIBA", - "OrganizationName": "HCA - Mohammad Riaz, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EADGAA", + "OrganizationName": "Twin City Medical Group", "NPIID": "", - "OrganizationZipCode": "34972" + "OrganizationZipCode": "44621" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAEJCA", - "OrganizationName": "Operation Samahan", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJJBA", + "OrganizationName": "OCEAN CARDIOVASCULAR", "NPIID": "", - "OrganizationZipCode": "91950" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJEGAD", - "OrganizationName": "Rockland Family Medical Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBBAA", + "OrganizationName": "Dr. Mark Cooper M.D, P.C", "NPIID": "", - "OrganizationZipCode": "10952" + "OrganizationZipCode": "35768" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAEJBD", - "OrganizationName": "Fairfax Colon Rectal Surgery PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAJFAA", + "OrganizationName": "NYCDOHMH-pfaff David MD", "NPIID": "", - "OrganizationZipCode": "22031" + "OrganizationZipCode": "10306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFCFAA", - "OrganizationName": "Noe R. Olvera, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFBCA", + "OrganizationName": "OHS - Crescent Family Practice", "NPIID": "", - "OrganizationZipCode": "77901" + "OrganizationZipCode": "48228" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDCACD", - "OrganizationName": "New England Community Medical Services PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBICA", + "OrganizationName": "Internal Medicine Clinic of Tangipahoa, LLC", "NPIID": "", - "OrganizationZipCode": "01845" + "OrganizationZipCode": "70403" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEEBDD", - "OrganizationName": "OMNI PRIMARY CARE, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBBBDA", + "OrganizationName": "Top Pain Center", "NPIID": "", - "OrganizationZipCode": "30328" + "OrganizationZipCode": "60542" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJEIBA", - "OrganizationName": "Gary L Howard M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGCGAD", + "OrganizationName": "Doylestown Hospital - ECW Ambulatory", "NPIID": "", - "OrganizationZipCode": "35115" + "OrganizationZipCode": "18901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEBCDA", - "OrganizationName": "Rebecca Kerr MD DBA California Pain Institute, a Med Grp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGDCA", + "OrganizationName": "Quan Nguyen DO PA", "NPIID": "", - "OrganizationZipCode": "90045" + "OrganizationZipCode": "32701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGGACD", - "OrganizationName": "The Ear Nose Throat Allergy Sleep Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCGACA", + "OrganizationName": "Chestnut Hill Allergy Asthma Associates", "NPIID": "", - "OrganizationZipCode": "77304" + "OrganizationZipCode": "19118" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJEBA", - "OrganizationName": "ACME Medical Specialties PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBHACA", + "OrganizationName": "HCA - Lafayette Arthritis And Endocrine Clinic", "NPIID": "", - "OrganizationZipCode": "28358" + "OrganizationZipCode": "70506" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECCFAA", - "OrganizationName": "Bushra Cheema MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDBCD", + "OrganizationName": "Robert Neville Associates, PLLC", "NPIID": "", - "OrganizationZipCode": "77469" + "OrganizationZipCode": "77380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIHCA", - "OrganizationName": "Gregory Maidoh, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJIIAA", + "OrganizationName": "Community of Hope(COH)", "NPIID": "", - "OrganizationZipCode": "70301" + "OrganizationZipCode": "20005" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFCEAD", - "OrganizationName": "Center for Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGFBBD", + "OrganizationName": "Kensington Valley Heart", "NPIID": "", - "OrganizationZipCode": "57105" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGADD", - "OrganizationName": "Eastern Internal Medicine, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJBFCA", + "OrganizationName": "Wythe Medical Associates", "NPIID": "", - "OrganizationZipCode": "27893" + "OrganizationZipCode": "24382" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBEBA", - "OrganizationName": "David H Panossian, M.D., P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFFBA", + "OrganizationName": "MLH - Delaware Valley ID Associates", "NPIID": "", - "OrganizationZipCode": "97601" + "OrganizationZipCode": "19096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJBJAD", - "OrganizationName": "East Side Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGJBBD", + "OrganizationName": "Michael A Codiga MD", "NPIID": "", - "OrganizationZipCode": "40601" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIJAA", - "OrganizationName": "Adventist - William Mullins, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJACBD", + "OrganizationName": "Cardiovascular Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32174" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFIFAA", - "OrganizationName": "Norcal Skin Disease Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIHECD", + "OrganizationName": "JAROSLAW K. PASZKOWIAK, M.D.P.C.", "NPIID": "", - "OrganizationZipCode": "95482" + "OrganizationZipCode": "73505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIHFBD", - "OrganizationName": "Progressive Primary Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGEHCD", + "OrganizationName": "Kirkwood Diagnostic Orthopedic Associates LLC", "NPIID": "", - "OrganizationZipCode": "22003" + "OrganizationZipCode": "63122" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCJBA", - "OrganizationName": "Shoals Kidney HTN Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEIACD", + "OrganizationName": "Allergy A.R.T.S LLP", "NPIID": "", - "OrganizationZipCode": "35630" + "OrganizationZipCode": "79124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDJCCD", - "OrganizationName": "Lake Endocrinology and Diabetes", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDHHAD", + "OrganizationName": "Bashir Al kaddoumi MD", "NPIID": "", - "OrganizationZipCode": "33782" + "OrganizationZipCode": "77070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIDDAD", - "OrganizationName": "Lake Health Care Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECCBD", + "OrganizationName": "Alma S Rigonan MD PA", "NPIID": "", - "OrganizationZipCode": "32726" + "OrganizationZipCode": "78405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBHBDA", - "OrganizationName": "Paul E Kim MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHDFBA", + "OrganizationName": "Coastal Surgical Vascular Vein Specialists", "NPIID": "", - "OrganizationZipCode": "92108" + "OrganizationZipCode": "29407" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCJAA", - "OrganizationName": "Palm Coast Cardiovascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJFECD", + "OrganizationName": "NSC Cardiology", "NPIID": "", - "OrganizationZipCode": "32137" + "OrganizationZipCode": "30024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGJHBD", - "OrganizationName": "Prime Healthcare Management Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGFADD", + "OrganizationName": "Pain Care Physicians PLLC", "NPIID": "", - "OrganizationZipCode": "78572" + "OrganizationZipCode": "98057" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEECBD", - "OrganizationName": "Christopher Arnold DO A Medical Corp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFIGAD", + "OrganizationName": "Zeidy Roche MD PA", "NPIID": "", - "OrganizationZipCode": "93010" + "OrganizationZipCode": "34947" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBJEAD", - "OrganizationName": "Comprehensive Cardiovascular Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHFCD", + "OrganizationName": "Neurology Consultants of Kansas, LLC", "NPIID": "", - "OrganizationZipCode": "63127" + "OrganizationZipCode": "67206" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJDBA", - "OrganizationName": "Georgetown Internal Medicine and Pediatrics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHAABA", + "OrganizationName": "Ricardo Rodriguez MD", "NPIID": "", - "OrganizationZipCode": "29585" + "OrganizationZipCode": "07204" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDGAD", - "OrganizationName": "Prasad Maddukuri MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCGGCD", + "OrganizationName": "Gill Neurosciences, PA", "NPIID": "", - "OrganizationZipCode": "75182" + "OrganizationZipCode": "77065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBBIAD", - "OrganizationName": "United Cerebral Palsy Association of Nassau County", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFFGBA", + "OrganizationName": "OHS - Advanced Pulmonary Sleep Associates", "NPIID": "", - "OrganizationZipCode": "11575" + "OrganizationZipCode": "48124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFEAA", - "OrganizationName": "Jackie Nguyen, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBAICA", + "OrganizationName": "Mulqueeny Eye Centers", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "631416714" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIFABD", - "OrganizationName": "PWMD - Venice Podiatry PLLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBDGBA", + "OrganizationName": "Family First Urgent Care", "NPIID": "", - "OrganizationZipCode": "34292" + "OrganizationZipCode": "07755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHHCA", - "OrganizationName": "Howard Memorial Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFAHBD", + "OrganizationName": "Healthy Heart Cardiology", "NPIID": "", - "OrganizationZipCode": "71852" + "OrganizationZipCode": "75094" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHEAD", - "OrganizationName": "Family Health of South Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGHDAD", + "OrganizationName": "Alexandria Neurosurgical Clinic", "NPIID": "", - "OrganizationZipCode": "78201" + "OrganizationZipCode": "71301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGFBA", - "OrganizationName": "Advocate - Harold Jamies, MD, PC DBA Jamies Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCGADA", + "OrganizationName": "Dr. Ben B. Shenassa, MD", "NPIID": "", - "OrganizationZipCode": "60647" + "OrganizationZipCode": "90041" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHIBD", - "OrganizationName": "Pulmonics Plus", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBAHAD", + "OrganizationName": "Cigarroa Heart Clinic", "NPIID": "", - "OrganizationZipCode": "75165" + "OrganizationZipCode": "78040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAAJBA", - "OrganizationName": "Copley Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACFBD", + "OrganizationName": "Gerard Varlotta, MD", "NPIID": "", - "OrganizationZipCode": "05661" + "OrganizationZipCode": "10017" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFFBA", - "OrganizationName": "Comprehensive Neurology Center PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDDBDA", + "OrganizationName": "BluePoint Medical Group", "NPIID": "", - "OrganizationZipCode": "37129" + "OrganizationZipCode": "89129" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJDEAA", - "OrganizationName": "Valley Cardiovascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDHGBA", + "OrganizationName": "REC - Steven B Degalan, M.D", "NPIID": "", - "OrganizationZipCode": "95116" + "OrganizationZipCode": "94545" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCAFBA", - "OrganizationName": "Corpus Christi Gastro", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEEAA", + "OrganizationName": "Northeastern Ohio Medical Specialists.", "NPIID": "", - "OrganizationZipCode": "78412" + "OrganizationZipCode": "44320" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFJBCA", - "OrganizationName": "First Colony Primary Care, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFECA", + "OrganizationName": "Kabul S Garg MD LLC", "NPIID": "", - "OrganizationZipCode": "77478" + "OrganizationZipCode": "06511" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAHGCA", - "OrganizationName": "Grapevine Rheumatology Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGAFBD", + "OrganizationName": "Texas Midwest Gastroenterology Center", "NPIID": "", - "OrganizationZipCode": "76051" + "OrganizationZipCode": "79606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJICD", - "OrganizationName": "Aaron J Affleck MD PA DBA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHGCAA", + "OrganizationName": "Anastasia Medical Group", "NPIID": "", - "OrganizationZipCode": "83406" + "OrganizationZipCode": "32080" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHBBD", - "OrganizationName": "Samuel B Cobarrubias MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEDBA", + "OrganizationName": "Maxa Internal Medicine", "NPIID": "", - "OrganizationZipCode": "31634" + "OrganizationZipCode": "30096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCIIBA", - "OrganizationName": "Broward Institute of Orthopaedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJAACD", + "OrganizationName": "Surgical Innovations of Texoma PLLC", "NPIID": "", - "OrganizationZipCode": "33021" + "OrganizationZipCode": "75090" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHJAA", - "OrganizationName": "Imperial Valley Family Care Medical Group AP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCIFBA", + "OrganizationName": "Endocrinology, Diabetes \u0026 Metabolism, NY PC", "NPIID": "", - "OrganizationZipCode": "92251" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEDJAD", - "OrganizationName": "Clifton Care Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIAIAD", + "OrganizationName": "Huntington Heart Center", "NPIID": "", - "OrganizationZipCode": "35957" + "OrganizationZipCode": "11743" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJBAA", - "OrganizationName": "Katherine Atkinson MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACFJAA", + "OrganizationName": "Princeton Brain and Spine Center", "NPIID": "", - "OrganizationZipCode": "01002" + "OrganizationZipCode": "19047" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJDBA", - "OrganizationName": "Gross Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIHAD", + "OrganizationName": "Willow Pain and Wellness LLC", "NPIID": "", - "OrganizationZipCode": "29115" + "OrganizationZipCode": "38655" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGCHAA", - "OrganizationName": "Laura Regan, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBJBA", + "OrganizationName": "IPECH - Chandan Saw D.O.", "NPIID": "", - "OrganizationZipCode": "23113" + "OrganizationZipCode": "94040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDJBCD", - "OrganizationName": "NORTHWEST PAIN INSTITUTE LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBGAD", + "OrganizationName": "Rheumatology Express", "NPIID": "", - "OrganizationZipCode": "97116" + "OrganizationZipCode": "21104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCACBA", - "OrganizationName": "Tucson Endocrine Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICEACA", + "OrganizationName": "Pulmonary Critical Care Consultants, Inc.", "NPIID": "", - "OrganizationZipCode": "85704" + "OrganizationZipCode": "45409" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBCHBD", - "OrganizationName": "Pulmonary Consultants - AZ", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBBACD", + "OrganizationName": "Sasse Surgical Associates", "NPIID": "", - "OrganizationZipCode": "85206" + "OrganizationZipCode": "89502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGACD", - "OrganizationName": "Johnson Internal Medicine Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIACA", + "OrganizationName": "ENT and Allergy Specialists", "NPIID": "", - "OrganizationZipCode": "33487" + "OrganizationZipCode": "19460" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAFCAA", - "OrganizationName": "South Rankin Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFIFAA", + "OrganizationName": "Norcal Skin Disease Surgery", "NPIID": "", - "OrganizationZipCode": "39219" + "OrganizationZipCode": "95482" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJDAD", - "OrganizationName": "Manuel Gonzalez MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHACDA", + "OrganizationName": "Reed Ward DO", "NPIID": "", - "OrganizationZipCode": "78041" + "OrganizationZipCode": "83404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGDCD", - "OrganizationName": "New Access Medical Center INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCDAA", + "OrganizationName": "Norfolk Center for Cancer Care and Hematology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "02301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHFIAD", - "OrganizationName": "Vinod Patel MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEFACA", + "OrganizationName": "Carolina Heart Physicians, PC", "NPIID": "", - "OrganizationZipCode": "11215" + "OrganizationZipCode": "28328" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBHAD", - "OrganizationName": "Neuroversion", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHEHBA", + "OrganizationName": "Jon Yardney, M.D.", "NPIID": "", - "OrganizationZipCode": "99508" + "OrganizationZipCode": "19087" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACDGCA", - "OrganizationName": "Advocate - Northwest Associates For Womens Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIBCA", + "OrganizationName": "Pulmonary Associates, LTD", "NPIID": "", - "OrganizationZipCode": "60169" + "OrganizationZipCode": "22311" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGGFCD", - "OrganizationName": "NEUROCENTER AZ PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AABDAD", + "OrganizationName": "Atul Aggarwal MD Cardiology Clinic", "NPIID": "", - "OrganizationZipCode": "85306" + "OrganizationZipCode": "93311" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEBDAA", - "OrganizationName": "Sleep Centers of Middle Tennessee", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDBBA", + "OrganizationName": "Surgical Dermatology Assoc", "NPIID": "", - "OrganizationZipCode": "37129" + "OrganizationZipCode": "76208" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBHCD", - "OrganizationName": "Hernando Pasco Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDGDAA", + "OrganizationName": "Kikkeri International", "NPIID": "", - "OrganizationZipCode": "34638" + "OrganizationZipCode": "75150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJBIAD", - "OrganizationName": "COASTAL PAIN CARE MAIN ACCOUNT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDJCCD", + "OrganizationName": "Lake Endocrinology and Diabetes", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33782" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCABAA", - "OrganizationName": "Fairfield Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJDADD", + "OrganizationName": "Michigan Pain Consultants PC", "NPIID": "", - "OrganizationZipCode": "29180" + "OrganizationZipCode": "49503" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJCBA", - "OrganizationName": "Yash P. Sangwan, M.D., P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBFAD", + "OrganizationName": "Cape Cod Orthopaedics and Sports Medicine PC", "NPIID": "", - "OrganizationZipCode": "32034" + "OrganizationZipCode": "02601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIHEAA", - "OrganizationName": "Mark A Greenberger M P S C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BACACA", + "OrganizationName": "Gainesville Internal Medicine Physicians", "NPIID": "", - "OrganizationZipCode": "60035" + "OrganizationZipCode": "32605" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAFCDA", - "OrganizationName": "HealthWise Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIBADD", + "OrganizationName": "Healthful Healthcare PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85307" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEECA", - "OrganizationName": "Richard C. Lock, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJCBA", + "OrganizationName": "Nephrology Associates of the Carolinas, PA", "NPIID": "", - "OrganizationZipCode": "770822439" + "OrganizationZipCode": "28150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHIIBD", - "OrganizationName": "Key Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DICAAA", + "OrganizationName": "Arthritis Center of Nebraska", "NPIID": "", - "OrganizationZipCode": "93277" + "OrganizationZipCode": "68516" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGGBD", - "OrganizationName": "Trieu Foot Solutions LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCJAA", + "OrganizationName": "Palm Coast Cardiovascular Institute", "NPIID": "", - "OrganizationZipCode": "32046" + "OrganizationZipCode": "32137" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJIFBA", - "OrganizationName": "Central Florida Heart Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBHBCD", + "OrganizationName": "Sarasota Medical Pregnancy Center INC", "NPIID": "", - "OrganizationZipCode": "32763" + "OrganizationZipCode": "34239" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJBGAD", - "OrganizationName": "Southwest Kansas Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGJBA", + "OrganizationName": "Baycare - West Coast Primary Care LLC", "NPIID": "", - "OrganizationZipCode": "67801" + "OrganizationZipCode": "33701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIFBCA", - "OrganizationName": "Adventist - Khandagle Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAEGBA", + "OrganizationName": "Advocate - Ghazanfai and Olivers Gastroenterology", "NPIID": "", - "OrganizationZipCode": "20904" + "OrganizationZipCode": "60657" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAFDCA", - "OrganizationName": "Omega Practice Management, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEDGAA", + "OrganizationName": "Dingmans Medical", "NPIID": "", - "OrganizationZipCode": "74133" + "OrganizationZipCode": "18328" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCADD", - "OrganizationName": "Litchfield Hills Orthopedic Associates, LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEJFAA", + "OrganizationName": "Mass Lung And Allergy", "NPIID": "", - "OrganizationZipCode": "06790" + "OrganizationZipCode": "01453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACICA", - "OrganizationName": "Kuttawa Clinic, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCEAA", + "OrganizationName": "So Others Might Eat.", "NPIID": "", - "OrganizationZipCode": "42055" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAGCD", - "OrganizationName": "Heart and Vascular Associates LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGHABD", + "OrganizationName": "NORTH GEORGIA UROLOGY CENTER PC INC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30720" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAGBDA", - "OrganizationName": "Lifepoint - Ashley Valley Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGFFBD", + "OrganizationName": "Doctor Today TLC LLC", "NPIID": "", - "OrganizationZipCode": "84078" + "OrganizationZipCode": "33813" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADHCCA", - "OrganizationName": "HCA - Coastal Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJDBA", + "OrganizationName": "Georgetown Internal Medicine and Pediatrics", "NPIID": "", - "OrganizationZipCode": "34982" + "OrganizationZipCode": "29585" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHDFAD", - "OrganizationName": "Deepak Vadhan, M.D., FCCP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFDGBA", + "OrganizationName": "Frank Daniel Mongiardo, MD, PSC", "NPIID": "", - "OrganizationZipCode": "11209" + "OrganizationZipCode": "41701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEAHAD", - "OrganizationName": "Sumter Medical Specialists, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFACAA", + "OrganizationName": "Cornerstone Pulmonary and Critical Care Associates", "NPIID": "", - "OrganizationZipCode": "29150" + "OrganizationZipCode": "37087" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEDECA", - "OrganizationName": "Cardiology Center of Houston, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBEHAA", + "OrganizationName": "Sami I Dagher, MD PA", "NPIID": "", - "OrganizationZipCode": "77450" + "OrganizationZipCode": "33435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDJHBA", - "OrganizationName": "Advanced Ankle Foot", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEGAD", + "OrganizationName": "Sugar Land Endocrine", "NPIID": "", - "OrganizationZipCode": "85234" + "OrganizationZipCode": "77479" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACHAA", - "OrganizationName": "Shyamali M. Singhal", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAIBD", + "OrganizationName": "ASIMA RAHMAN LLC", "NPIID": "", - "OrganizationZipCode": "94040" + "OrganizationZipCode": "21045" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGJDBD", - "OrganizationName": "Anwer Jaffri, MD (Wabash Infectious Disease)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGACBA", + "OrganizationName": "Spanish Catholic Clinic", "NPIID": "", - "OrganizationZipCode": "47802" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBFCD", - "OrganizationName": "Mahendra Mahatma, M.D.. P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIFABD", + "OrganizationName": "PWMD - Venice Podiatry PLLLC", "NPIID": "", - "OrganizationZipCode": "75039" + "OrganizationZipCode": "34292" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDJAD", - "OrganizationName": "Valley Physical Medicine and Rehabilitation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFBHAA", + "OrganizationName": "Commonwealth Dermatology, PC", "NPIID": "", - "OrganizationZipCode": "85013" + "OrganizationZipCode": "23230" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIADCA", - "OrganizationName": "Orthopedic Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHGECA", + "OrganizationName": "Regional Womens Health Group PRODUCTION", "NPIID": "", - "OrganizationZipCode": "63122-3356" + "OrganizationZipCode": "08043" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIEABA", - "OrganizationName": "NYCDOHMH - George Lum, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFCAA", + "OrganizationName": "Northwest Medical Care, LLC.", "NPIID": "", - "OrganizationZipCode": "11355" + "OrganizationZipCode": "07876" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEJAD", - "OrganizationName": "AMH Family Practice Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDIDBA", + "OrganizationName": "Angel Raposas, MD", "NPIID": "", - "OrganizationZipCode": "68756" + "OrganizationZipCode": "16601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBECA", - "OrganizationName": "Allergy Institute - CA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCDCA", + "OrganizationName": "HCA - Southeastern Cardiology", "NPIID": "", - "OrganizationZipCode": "93720" + "OrganizationZipCode": "31904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDHGCA", - "OrganizationName": "Sheridan Healthcorp Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEIBD", + "OrganizationName": "Gastroenterology Consultants - SC", "NPIID": "", - "OrganizationZipCode": "33323" + "OrganizationZipCode": "29572" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEFGBA", - "OrganizationName": "Ravi S. Randhawa MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGBBA", + "OrganizationName": "Amy Smith, MD", "NPIID": "", - "OrganizationZipCode": "33484" + "OrganizationZipCode": "19096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJCCA", - "OrganizationName": "Piedmont Spine Pain Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBCBD", + "OrganizationName": "Francois J. du Toit M.D.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "73505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABACDA", - "OrganizationName": "Prabhasadanam G. Sadhujan, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAAJBA", + "OrganizationName": "Copley Hospital", "NPIID": "", - "OrganizationZipCode": "01605" + "OrganizationZipCode": "05661" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDDJCA", - "OrganizationName": "Lianne Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJFBA", + "OrganizationName": "Marc Lieberman, MD", "NPIID": "", - "OrganizationZipCode": "01608" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCBFAD", - "OrganizationName": "Concerto Healthcare, INC---TEST---", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECJBD", + "OrganizationName": "Belmont Anderson Associates", "NPIID": "", - "OrganizationZipCode": "92614" + "OrganizationZipCode": "89146" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEADA", - "OrganizationName": "Otolaryngology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEBDA", + "OrganizationName": "Modern Pain Management", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHCBD", - "OrganizationName": "Robert T Simon MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFFICA", + "OrganizationName": "INDIAN RIVER MEDICAL OFFICE", "NPIID": "", - "OrganizationZipCode": "08755" + "OrganizationZipCode": "32796" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEHCAA", - "OrganizationName": "Associates in Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJFDBD", + "OrganizationName": "Advocate - Chicago Hand Orthopedic Surgery Centers", "NPIID": "", - "OrganizationZipCode": "35801" + "OrganizationZipCode": "60173" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHBAA", - "OrganizationName": "Adult Medicine Clinic of Blytheville, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDDBDA", + "OrganizationName": "Abbas Khans LLC", "NPIID": "", - "OrganizationZipCode": "72315" + "OrganizationZipCode": "32955" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEBBA", - "OrganizationName": "Adventist - Neil Julie, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJBBD", + "OrganizationName": "Family Wellness Clinic", "NPIID": "", - "OrganizationZipCode": "20850" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIHIBA", - "OrganizationName": "Livingston Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCIJBA", + "OrganizationName": "Preventive Care Network Services", "NPIID": "", - "OrganizationZipCode": "77351" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEADBA", - "OrganizationName": "M. Todd Peacock, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHJAA", + "OrganizationName": "Imperial Valley Family Care Medical Group AP", "NPIID": "", - "OrganizationZipCode": "31023" + "OrganizationZipCode": "92251" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIAFAA", - "OrganizationName": "Central Oregon Dermatology, PC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFGJBA", + "OrganizationName": "William J. Lewis MD PC", "NPIID": "", - "OrganizationZipCode": "97702" + "OrganizationZipCode": "19096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJGBBA", - "OrganizationName": "HMA - Adnan Mohammadbhoy, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEIBD", + "OrganizationName": "Arizona Pain Care Center PLLC", "NPIID": "", - "OrganizationZipCode": "33428" + "OrganizationZipCode": "85755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFFBA", - "OrganizationName": "HCA - Denver Spine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCAEBA", + "OrganizationName": "Platte Valley Internal Medicine and Pulmonary", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "80601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDHIAA", - "OrganizationName": "Cross Road Care of Texas LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEBJCA", + "OrganizationName": "Complete Foot Care Associates", "NPIID": "", - "OrganizationZipCode": "77904" + "OrganizationZipCode": "32128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGCDBA", - "OrganizationName": "Irfan Lalani, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDFCCA", + "OrganizationName": "MLH-Irina Joukova, MD", "NPIID": "", - "OrganizationZipCode": "77479" + "OrganizationZipCode": "19116" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGBJBA", - "OrganizationName": "All County Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDEHBD", + "OrganizationName": "Physicians Specialists of Northern NJ", "NPIID": "", - "OrganizationZipCode": "11570" + "OrganizationZipCode": "07562" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIFBA", - "OrganizationName": "Attleboro Dermatology, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFIFCD", + "OrganizationName": "Beats Cardiology PLLC", "NPIID": "", - "OrganizationZipCode": "02703" + "OrganizationZipCode": "75024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJIBA", - "OrganizationName": "Suffolk Cardic Care PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBCHBD", + "OrganizationName": "Pulmonary Consultants - AZ", "NPIID": "", - "OrganizationZipCode": "11772" + "OrganizationZipCode": "85206" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDFBCA", - "OrganizationName": "Asloyan Medical PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHCBD", + "OrganizationName": "David Braun MD PLLC", "NPIID": "", - "OrganizationZipCode": "11235" + "OrganizationZipCode": "33701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFBACA", - "OrganizationName": "PLATINUM ENT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDGCA", + "OrganizationName": "Southern Illinois Heart Vascular PC", "NPIID": "", - "OrganizationZipCode": "33446" + "OrganizationZipCode": "62864" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJHEBA", - "OrganizationName": "Southeast Houston Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFIGAA", + "OrganizationName": "Michelle Plaster MD", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "30655" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJECA", - "OrganizationName": "Anointed Health Partners, Ltd", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBHAA", + "OrganizationName": "Benson Huang, MD", "NPIID": "", - "OrganizationZipCode": "60617" + "OrganizationZipCode": "78041" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECBHCD", - "OrganizationName": "Boca Raton Neurologic Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDFGAA", + "OrganizationName": "Dr Benson Chin and Dr Lynn Lang", "NPIID": "", - "OrganizationZipCode": "33486" + "OrganizationZipCode": "95993" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAGHAA", - "OrganizationName": "Columbus Skin Surgery Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFHEAD", + "OrganizationName": "Erickson Living Management", "NPIID": "", - "OrganizationZipCode": "43016" + "OrganizationZipCode": "21228" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHBBD", - "OrganizationName": "Port Jeff Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECBHBA", + "OrganizationName": "East Valley Diabetes and Endocrinology, PC", "NPIID": "", - "OrganizationZipCode": "11776" + "OrganizationZipCode": "85095" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEDACA", - "OrganizationName": "Suzanne Gharb", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHFECD", + "OrganizationName": "CARDIOVASCULAR CLINIC OF TEXAS, INC", "NPIID": "", - "OrganizationZipCode": "25309" + "OrganizationZipCode": "77054" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBAEBA", - "OrganizationName": "NYCDOHMH - Kee Y. Shum, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIAGAA", + "OrganizationName": "Cynthia Williams, MD Inc", "NPIID": "", - "OrganizationZipCode": "11355" + "OrganizationZipCode": "90503" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFEAA", - "OrganizationName": "Katy Rheumatology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCBCD", + "OrganizationName": "NAZEERI FAMILY MEDICINE", "NPIID": "", - "OrganizationZipCode": "77094" + "OrganizationZipCode": "17042" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDHECD", - "OrganizationName": "VIP Healthcare PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAJAA", + "OrganizationName": "HCA - MD Total Care, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "37404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAAEAA", - "OrganizationName": "Idaho Physical Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHBCA", + "OrganizationName": "Lepow Podiatric Medical Associates", "NPIID": "", - "OrganizationZipCode": "83642" + "OrganizationZipCode": "77030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFHDCD", - "OrganizationName": "WALKUP FAMILY MEDICINE CLINIC LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEJIBD", + "OrganizationName": "Hope Physicians and Urgent Care", "NPIID": "", - "OrganizationZipCode": "74745" + "OrganizationZipCode": "28501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBEEBD", - "OrganizationName": "Gramercy Pain Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAJECA", + "OrganizationName": "Cancer Care Institute", "NPIID": "", - "OrganizationZipCode": "07733" + "OrganizationZipCode": "90036" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAEBBD", - "OrganizationName": "West Valley Endocrinology and Diabetes", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJCECD", + "OrganizationName": "UPPER CUMBERLAND OTOLARYNGOLOGY CLINIC", "NPIID": "", - "OrganizationZipCode": "85338" + "OrganizationZipCode": "38501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFCJAA", - "OrganizationName": "Center for Symptom Relief LLS", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGGBD", + "OrganizationName": "Trieu Foot Solutions LLC", "NPIID": "", - "OrganizationZipCode": "43214" + "OrganizationZipCode": "32046" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEGEBA", - "OrganizationName": "Respicare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBDBA", + "OrganizationName": "OHS - Zachary H Lewis DO PC", "NPIID": "", - "OrganizationZipCode": "08807" + "OrganizationZipCode": "48183" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFGEBD", - "OrganizationName": "Anil Verma, MD, FACC, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBHBCA", + "OrganizationName": "Abdallah Karam, MD, SC", "NPIID": "", - "OrganizationZipCode": "33435" + "OrganizationZipCode": "60005" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBDCD", - "OrganizationName": "Stamford Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGDAAA", + "OrganizationName": "COMMONWEALTH INTERNAL MEDICINE, LLC", "NPIID": "", - "OrganizationZipCode": "06905" + "OrganizationZipCode": "22191-3310" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAIACA", - "OrganizationName": "Faster Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EECJBD", + "OrganizationName": "Shima Hadidchi, MD, A Professional Corp", "NPIID": "", - "OrganizationZipCode": "29150" + "OrganizationZipCode": "93295" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAEBD", - "OrganizationName": "PriMMed", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIGCD", + "OrganizationName": "Vascular Surgery Associates of Richmond PC", "NPIID": "", - "OrganizationZipCode": "89148" + "OrganizationZipCode": "23226" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEFAAA", - "OrganizationName": "Mark Rodrigues, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFCJAD", + "OrganizationName": "Greiner Orthopedics LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "64055" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJCADA", - "OrganizationName": "Georgia Renal Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJHAD", + "OrganizationName": "Metrolyna Healthcare, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "29058" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBBFBD", - "OrganizationName": "NWMC Winfield Physicians, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJHJCD", + "OrganizationName": "Prime Medical Group LLC", "NPIID": "", - "OrganizationZipCode": "35594" + "OrganizationZipCode": "77014" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJIDBA", - "OrganizationName": "Heart of the America Eyecare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAHJBA", + "OrganizationName": "Venu Prabaker MD Inc - MPMG", "NPIID": "", - "OrganizationZipCode": "66215" + "OrganizationZipCode": "91942-7435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIHADD", - "OrganizationName": "Test Southern Nevada Health District", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCFCBD", + "OrganizationName": "Advanced Center for Internal Medicine SC", "NPIID": "", - "OrganizationZipCode": "89107" + "OrganizationZipCode": "60134" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADCDA", - "OrganizationName": "Alicja Steiner MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICJJCD", + "OrganizationName": "Axia MSO", "NPIID": "", - "OrganizationZipCode": "92108" + "OrganizationZipCode": "32246" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDCDA", - "OrganizationName": "Best Way Clinic of Burleson", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAGBDA", + "OrganizationName": "Lifepoint - Ashley Valley Family Practice", "NPIID": "", - "OrganizationZipCode": "76028" + "OrganizationZipCode": "84078" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGAJAD", - "OrganizationName": "Shirley Wong MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAEGAD", + "OrganizationName": "Gilbert Simoni, MD, FACG", "NPIID": "", - "OrganizationZipCode": "60616" + "OrganizationZipCode": "91360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGJBBD", - "OrganizationName": "Comprehensive Neurosurgery, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDCBA", + "OrganizationName": "Advanced Cardiovascular Specialist", "NPIID": "", - "OrganizationZipCode": "75056" + "OrganizationZipCode": "94040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFAJBA", - "OrganizationName": "HCA - ENT Associates of CC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GABFCD", + "OrganizationName": "Arizona Diabetes and Endocrinology PLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85249" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJAACA", - "OrganizationName": "HCA - Alexander Tiu, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIGCD", + "OrganizationName": "360 Cardiac Care, PC", "NPIID": "", - "OrganizationZipCode": "77339" + "OrganizationZipCode": "76180" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACDBD", - "OrganizationName": "Kenai Peninsula Orthopaedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEIDBD", + "OrganizationName": "Idaho Heart Institute", "NPIID": "", - "OrganizationZipCode": "99669" + "OrganizationZipCode": "83404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABHECD", - "OrganizationName": "Sanjeev K. Goswami, MD, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJGCA", + "OrganizationName": "Premier Medical Institute", "NPIID": "", - "OrganizationZipCode": "95210" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDFAD", - "OrganizationName": "Covered Bridge Healthcare Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGCAA", + "OrganizationName": "Digestive and Liver Center of FL", "NPIID": "", - "OrganizationZipCode": "49032" + "OrganizationZipCode": "32828" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEIICD", - "OrganizationName": "Mark Blair, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGDBDA", + "OrganizationName": "Baominh, Vinh MD", "NPIID": "", - "OrganizationZipCode": "37388" + "OrganizationZipCode": "77065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDCAA", - "OrganizationName": "North Fulton Internal Medicine Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHGGBA", + "OrganizationName": "Carl Vogel Center", "NPIID": "", - "OrganizationZipCode": "30076" + "OrganizationZipCode": "62005" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHCAA", - "OrganizationName": "Fremont Neurology Medical Associates, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJFFCD", + "OrganizationName": "ART VASCULAR INTERVENTIONAL ASSOCIATES, INC.", "NPIID": "", - "OrganizationZipCode": "94536" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIHEBA", - "OrganizationName": "Lincoln Family Wellness, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFGJCA", + "OrganizationName": "Karan Bhalla MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCEBD", - "OrganizationName": "Heart and Vascular Wellness Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJEAD", + "OrganizationName": "Southampton Healthcare", "NPIID": "", - "OrganizationZipCode": "92562" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBICCD", - "OrganizationName": "Wisconsin Spine and Pain SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDJAD", + "OrganizationName": "Valley Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGGAA", - "OrganizationName": "Lakeview Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBEAA", + "OrganizationName": "Northwest Houston Heart Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJCBA", - "OrganizationName": "Apollo Health, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDHGCA", + "OrganizationName": "Ankle and Foot Clinic of Oregon", "NPIID": "", - "OrganizationZipCode": "08759" + "OrganizationZipCode": "97206" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJEBCD", - "OrganizationName": "B L HEALTH, INC DBA ALLHEALTH", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIIEBA", + "OrganizationName": "Kumar Desai, MD", "NPIID": "", - "OrganizationZipCode": "11230" + "OrganizationZipCode": "91360-1869" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEBDAD", - "OrganizationName": "Dodge County Hospital Mid Georgia Total Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEAAAA", + "OrganizationName": "Hugh H. Windom, MD. PA.", "NPIID": "", - "OrganizationZipCode": "31023" + "OrganizationZipCode": "34233" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBDJBA", - "OrganizationName": "Midcoast Cardiovascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDJFBD", + "OrganizationName": "Ling Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJBACD", - "OrganizationName": "J. DEAN STOCKSTILL, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAEFAD", + "OrganizationName": "B. Dixit, MD, PC", "NPIID": "", - "OrganizationZipCode": "71203" + "OrganizationZipCode": "31901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJFCA", - "OrganizationName": "HCA - Dr. Sheng-Yong Wang, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCHBCD", + "OrganizationName": "Umpqua Orthopedics PC", "NPIID": "", - "OrganizationZipCode": "95116" + "OrganizationZipCode": "97471" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCACCA", - "OrganizationName": "John Kartsonis", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBIFAA", + "OrganizationName": "Huntington Dermatology, Inc", "NPIID": "", - "OrganizationZipCode": "32256" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCGCD", - "OrganizationName": "Heart Care Consultants LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIBJAD", + "OrganizationName": "Virginia Spine Specialists", "NPIID": "", - "OrganizationZipCode": "19139" + "OrganizationZipCode": "20110" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDGDCD", - "OrganizationName": "Tudor M. Scridon, MD, PL", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDDJCA", + "OrganizationName": "Lianne Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFHIAD", - "OrganizationName": "Focus Mental Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBJGAD", + "OrganizationName": "Progressive Pain Management", "NPIID": "", - "OrganizationZipCode": "89144" + "OrganizationZipCode": "07712" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCABD", - "OrganizationName": "Anees Ahsan MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFGJAD", + "OrganizationName": "SWHR - North Texas Preferred Health Partners", "NPIID": "", - "OrganizationZipCode": "20912" + "OrganizationZipCode": "75246" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFDAD", - "OrganizationName": "Dodge County Hospital - Rosenbaum Orthopaedics, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEHAA", + "OrganizationName": "Kiumarce Kashi, MD", "NPIID": "", - "OrganizationZipCode": "31023" + "OrganizationZipCode": "21222" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIADAA", - "OrganizationName": "Cardio Vascular Clinic of Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJHBA", + "OrganizationName": "Cardiology Associates", "NPIID": "", - "OrganizationZipCode": "77375" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGADBA", - "OrganizationName": "Daniel Bendetowicz", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCEBA", + "OrganizationName": "Great Lakes Physiatrists", "NPIID": "", - "OrganizationZipCode": "33912" + "OrganizationZipCode": "48081" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABIBD", - "OrganizationName": "San Antonio Podiatry Associates, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHIFAD", + "OrganizationName": "Vero Beach Neurology and Research Institute", "NPIID": "", - "OrganizationZipCode": "78229" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGACA", - "OrganizationName": "Advocate - Manuel A. Malicay", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFJCA", + "OrganizationName": "Jason A. Seiden, M.D., P.A.", "NPIID": "", - "OrganizationZipCode": "60440" + "OrganizationZipCode": "76028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJECBA", - "OrganizationName": "Darst Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGBBCD", + "OrganizationName": "Academy Orthopedics LLC", "NPIID": "", - "OrganizationZipCode": "28277" + "OrganizationZipCode": "30040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBBBCD", - "OrganizationName": "Center for Advanced Gyn Urogynecology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICBCA", + "OrganizationName": "Volusia Hand Surgery Clinic", "NPIID": "", - "OrganizationZipCode": "20815" + "OrganizationZipCode": "32129" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFJBDA", - "OrganizationName": "Kim D. Keller, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADECAD", + "OrganizationName": "Us Helping Us", "NPIID": "", - "OrganizationZipCode": "77429" + "OrganizationZipCode": "20010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIBFAD", - "OrganizationName": "Ozarks Family Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIAFAA", + "OrganizationName": "Central Oregon Dermatology, PC.", "NPIID": "", - "OrganizationZipCode": "65721" + "OrganizationZipCode": "97702" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIAEAD", - "OrganizationName": "Sequoia Institute for Surgical Services INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHBGBD", + "OrganizationName": "Compassionate Medical Care, PLLC", "NPIID": "", - "OrganizationZipCode": "93277" + "OrganizationZipCode": "10040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGEBA", - "OrganizationName": "Phoenix Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEFHAA", + "OrganizationName": "Stephen A. White, M.D.", "NPIID": "", - "OrganizationZipCode": "75077" + "OrganizationZipCode": "37043" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCEBA", - "OrganizationName": "Mobile Physician Services PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JADCDA", + "OrganizationName": "Primary Care Associates of Texas", "NPIID": "", - "OrganizationZipCode": "34652" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJDCD", - "OrganizationName": "Dr. Tamader H. Mira, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEGABD", + "OrganizationName": "Texas Associates of Endocrinology and Diabetes, PA", "NPIID": "", - "OrganizationZipCode": "21225" + "OrganizationZipCode": "75069" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBAIBD", - "OrganizationName": "Pain Management Plus, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDICA", + "OrganizationName": "Cardiac Consultants", "NPIID": "", - "OrganizationZipCode": "28043" + "OrganizationZipCode": "77707" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBFEAD", - "OrganizationName": "Siva P. Sontineni, MD, PA DBA: Radiant Heart Vascular Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHCBA", + "OrganizationName": "PRMC - Eastern Shore ENT Allergy Associates, PA", "NPIID": "", - "OrganizationZipCode": "76201" + "OrganizationZipCode": "21804" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGHICD", - "OrganizationName": "Seema A. Dar, M.D., P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGJAA", + "OrganizationName": "Riverside Medical, SC", "NPIID": "", - "OrganizationZipCode": "78258" + "OrganizationZipCode": "60004" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHBCD", - "OrganizationName": "SHORELINE ORTHOPAEDIC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEBAA", + "OrganizationName": "Vani Duvuuri, MD, PA", "NPIID": "", - "OrganizationZipCode": "49424" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFCBA", - "OrganizationName": "Advocate - John Oh M.D.S.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJHEBA", + "OrganizationName": "Southeast Houston Cardiology", "NPIID": "", - "OrganizationZipCode": "60714" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGFJAD", - "OrganizationName": "Austin Pulmonary Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDDAA", + "OrganizationName": "Loudoun Community Health Center", "NPIID": "", - "OrganizationZipCode": "78727" + "OrganizationZipCode": "20176" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFDAA", - "OrganizationName": "Calvert Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEAGBD", + "OrganizationName": "Cape Cardiology MD PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "02601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECJHBA", - "OrganizationName": "Bruce Peters MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHGHBA", + "OrganizationName": "Advocate - Midwestern Institute of Health", "NPIID": "", - "OrganizationZipCode": "08753" + "OrganizationZipCode": "60073" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBBAA", - "OrganizationName": "Dr. Mark Cooper M.D, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHAIAA", + "OrganizationName": "Jay Care Medical Center", "NPIID": "", - "OrganizationZipCode": "35768" + "OrganizationZipCode": "33805" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEFEAA", - "OrganizationName": "Midwest Nephology Associates .P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIJCAD", + "OrganizationName": "Max-Med Clinic", "NPIID": "", - "OrganizationZipCode": "73130" + "OrganizationZipCode": "33165" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGFCBA", - "OrganizationName": "Main Line Foot Ankle Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIAGBD", + "OrganizationName": "Wellness Life Center", "NPIID": "", - "OrganizationZipCode": "19003" + "OrganizationZipCode": "39828" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGJCAA", - "OrganizationName": "Michael S. Lovoi, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJGDCD", + "OrganizationName": "Coastal Vascular Medicine Inc", "NPIID": "", - "OrganizationZipCode": "78410" + "OrganizationZipCode": "92663" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGECA", - "OrganizationName": "Quraishi, Mohammed MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDBEAA", + "OrganizationName": "WhitmanWalker", "NPIID": "", - "OrganizationZipCode": "77504" + "OrganizationZipCode": "20009" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIDFAA", - "OrganizationName": "Ashook Mittal, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFJACD", + "OrganizationName": "Mason District Hospital", "NPIID": "", - "OrganizationZipCode": "33709" + "OrganizationZipCode": "62644" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEAAAA", - "OrganizationName": "Hugh H. Windom, MD. PA.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHBFCD", + "OrganizationName": "S. Thomas Sehy DPM, LLC dba Page Foot Ankle", "NPIID": "", - "OrganizationZipCode": "34233" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCHAD", - "OrganizationName": "SWHR - Greenville Healthcare Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGICCD", + "OrganizationName": "New Ananda Medical and Urgent Care", "NPIID": "", - "OrganizationZipCode": "75401" + "OrganizationZipCode": "91733" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGEBD", - "OrganizationName": "Suresh K Gupta MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGADAA", + "OrganizationName": "Florida ENT Adult And Pediatrics, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34741" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCJCD", - "OrganizationName": "Joseph G. Krick, MD, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBAIAA", + "OrganizationName": "Active Life", "NPIID": "", - "OrganizationZipCode": "37388" + "OrganizationZipCode": "06611" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHECBD", - "OrganizationName": "Orthopedic Foot and Ankle Surgeon", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIIFBA", + "OrganizationName": "Providence Hospital", "NPIID": "", - "OrganizationZipCode": "34109" + "OrganizationZipCode": "20017" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEHCA", - "OrganizationName": "HCA - Central Florida Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBHDCD", + "OrganizationName": "TEST - TALKIATRY MANAGEMENT SERVICES, LLC", "NPIID": "", - "OrganizationZipCode": "34474" + "OrganizationZipCode": "10001-6208" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEGCBA", - "OrganizationName": "Selena Ellis, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBCGBD", + "OrganizationName": "John D Atwater MD PA", "NPIID": "", - "OrganizationZipCode": "94705" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICBCA", - "OrganizationName": "Volusia Hand Surgery Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJDICA", + "OrganizationName": "Pain Addiction Consultants, PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIHDBA", - "OrganizationName": "Suhail A. Masudi, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGICCD", + "OrganizationName": "SWHR - Allen Dr. Careing INC.", "NPIID": "", - "OrganizationZipCode": "33414" + "OrganizationZipCode": "75002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIEGAA", - "OrganizationName": "Allied Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFCAA", + "OrganizationName": "Del Mar Medical", "NPIID": "", - "OrganizationZipCode": "07470" + "OrganizationZipCode": "92130" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHCCBD", - "OrganizationName": "Long Island Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDDJCD", + "OrganizationName": "Pulmonary and Sleep Private Care, PLLC", "NPIID": "", - "OrganizationZipCode": "11735" + "OrganizationZipCode": "86301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DABABA", - "OrganizationName": "Comprehensive Heart and Sleep", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJEAA", + "OrganizationName": "Huntington Beach Internal Medicine", "NPIID": "", - "OrganizationZipCode": "32578" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIAIBA", - "OrganizationName": "HCA - South Florida Center for Gynecologic Oncology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIEDBD", + "OrganizationName": "NNamdi Dike MD", "NPIID": "", - "OrganizationZipCode": "33487" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHHCAD", - "OrganizationName": "Urbancare, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHIEBD", + "OrganizationName": "Advanced Pain Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEBAA", - "OrganizationName": "Vani Duvuuri, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFGEBD", + "OrganizationName": "Anil Verma, MD, FACC, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHIHAA", - "OrganizationName": "SURGICAL GROUP OF SOUTH LAGUNA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDIBD", + "OrganizationName": "Northwest Mississippi Otolaryngology", "NPIID": "", - "OrganizationZipCode": "92651" + "OrganizationZipCode": "38672" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAFHBA", - "OrganizationName": "Matthew Keum MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBAAA", + "OrganizationName": "Anil George, M.D PA", "NPIID": "", - "OrganizationZipCode": "44094" + "OrganizationZipCode": "32209" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFHEBD", - "OrganizationName": "Gregory Shannon, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGDACA", + "OrganizationName": "OHS - Mohammad Saleh, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIAGBD", - "OrganizationName": "Wellness Life Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHACD", + "OrganizationName": "Kaditam V Reddy, MD, INC", "NPIID": "", - "OrganizationZipCode": "39828" + "OrganizationZipCode": "91360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADBBA", - "OrganizationName": "St. Louis Surgical Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFJBAA", + "OrganizationName": "Knott Street Dermatology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "97212" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFHCCD", - "OrganizationName": "Heart Care Vascular Medicine, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFIFCA", + "OrganizationName": "San Luis Podiatry Group", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "93401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJFBA", - "OrganizationName": "TRISTATE NEUROLOGY CENTER", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFDIBD", + "OrganizationName": "Desoto Thyroid and Endocrinology, LLC", "NPIID": "", - "OrganizationZipCode": "21742" + "OrganizationZipCode": "38672" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFJBA", - "OrganizationName": "Hudson Valley Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJGJCA", + "OrganizationName": "Group One Demo Database", "NPIID": "", - "OrganizationZipCode": "12528-1401" + "OrganizationZipCode": "89703" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBJHBD", - "OrganizationName": "Kavuri Collier Internal Medicine, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHFIBA", + "OrganizationName": "ASPA - Grace Zlaket-Matta, MD", "NPIID": "", - "OrganizationZipCode": "31021" + "OrganizationZipCode": "85260" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICIBD", - "OrganizationName": "Tri County Physicians LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDCJBD", + "OrganizationName": "Family Care Center", "NPIID": "", - "OrganizationZipCode": "32159" + "OrganizationZipCode": "67156" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHHACD", - "OrganizationName": "Colon Stomach and Liver Center LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAHCA", + "OrganizationName": "SMMH - Nabil Sultani, MD", "NPIID": "", - "OrganizationZipCode": "20176" + "OrganizationZipCode": "48154" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADDCD", - "OrganizationName": "Coplin Health Systems", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBDBBA", + "OrganizationName": "John T. Frasca, MD, FACS", "NPIID": "", - "OrganizationZipCode": "26143" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJDICA", - "OrganizationName": "Pain Addiction Consultants, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADCDA", + "OrganizationName": "Alicja Steiner MD", "NPIID": "", - "OrganizationZipCode": "77380" + "OrganizationZipCode": "92108" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIGECA", - "OrganizationName": "Robert Taylor, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHEEAA", + "OrganizationName": "Roger H Karlin MD", "NPIID": "", - "OrganizationZipCode": "04103" + "OrganizationZipCode": "06812" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDIGAA", - "OrganizationName": "Saweikis Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBADAA", + "OrganizationName": "Kitsap General Surgery", "NPIID": "", - "OrganizationZipCode": "26726" + "OrganizationZipCode": "98383" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIFBA", - "OrganizationName": "South Bay MOHS and Skin Cancer Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJBBD", + "OrganizationName": "Diley Medical Group", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "43110" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHEBA", - "OrganizationName": "Jeffery Liu, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBDCD", + "OrganizationName": "New York Allergy Sinus Group, PLLC", "NPIID": "", - "OrganizationZipCode": "96813" + "OrganizationZipCode": "10016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBFFBA", - "OrganizationName": "Baycare- St. Pete Endocrinology Associates, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHBBD", + "OrganizationName": "David A. Herf, MD General Surgery", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32539" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAGECD", - "OrganizationName": "DR GALAN,MD NEUROLOGY AND PAIN MANAGEMENT, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGBFAD", + "OrganizationName": "Mary South MD", "NPIID": "", - "OrganizationZipCode": "93454" + "OrganizationZipCode": "44304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJBIAA", - "OrganizationName": "South Coast Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADEAD", + "OrganizationName": "Kaveh Parvaresh MD PC", "NPIID": "", - "OrganizationZipCode": "77901" + "OrganizationZipCode": "22204" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJGJCA", - "OrganizationName": "Group One Demo Database", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIIEAA", + "OrganizationName": "Center for Med Endo and Diabetes", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30342" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAAFAA", - "OrganizationName": "NYCDOHMH-West Side Medical Group, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGHFAA", + "OrganizationName": "Bright McConnell, III, MD, LLC", "NPIID": "", - "OrganizationZipCode": "10014" + "OrganizationZipCode": "29492" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDDCBA", - "OrganizationName": "Neurosurgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEEAA", + "OrganizationName": "NJ Spine and Pain Clinic, Inc", "NPIID": "", - "OrganizationZipCode": "37203" + "OrganizationZipCode": "09860" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFHBA", - "OrganizationName": "HCA - Bishnu P Verma MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFJCCA", + "OrganizationName": "HCA - Michael N. Newton MD", "NPIID": "", - "OrganizationZipCode": "32725" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBEEAA", - "OrganizationName": "Dr. Tuyen T. Trinh, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFFCD", + "OrganizationName": "Mohan S Kumar MD PLLC", "NPIID": "", - "OrganizationZipCode": "10013" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACIBA", - "OrganizationName": "Mountain Medical Specialties Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDCAA", + "OrganizationName": "North Fulton Internal Medicine Group", "NPIID": "", - "OrganizationZipCode": "30525" + "OrganizationZipCode": "30076" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHCAA", - "OrganizationName": "V PAIN LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEFBBD", + "OrganizationName": "Advance Medical Specialty, LLC", "NPIID": "", - "OrganizationZipCode": "29732-8039" + "OrganizationZipCode": "32159" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJBAA", - "OrganizationName": "Robert Smythe, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHICD", + "OrganizationName": "Vladimir Gabay MD", "NPIID": "", - "OrganizationZipCode": "85364" + "OrganizationZipCode": "11375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABAFCD", - "OrganizationName": "Palo Verde Pain Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCCBDD", + "OrganizationName": "Whole Care Pediatrics, PLLC", "NPIID": "", - "OrganizationZipCode": "85381" + "OrganizationZipCode": "77070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJDECD", - "OrganizationName": "Premier Pain Spine Center PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCABD", + "OrganizationName": "Cedar Valley Medical Specialists", "NPIID": "", - "OrganizationZipCode": "37207" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIIEAA", - "OrganizationName": "Center for Med Endo and Diabetes", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEECA", + "OrganizationName": "HCA - Shenandoah Podiatry", "NPIID": "", - "OrganizationZipCode": "30342" + "OrganizationZipCode": "24175" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEBGBA", - "OrganizationName": "South Shore", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBABD", + "OrganizationName": "Diabetes and Endocrine Center of Florida", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32819" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHGAA", - "OrganizationName": "Heart and Rhythm Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFGICD", + "OrganizationName": "Progressive Cardiology Associates, PC", "NPIID": "", - "OrganizationZipCode": "30720" + "OrganizationZipCode": "48532" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCDAA", - "OrganizationName": "Rich, Phoebe MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEGGCD", + "OrganizationName": "Collier Neurologic Specialists, LLC", "NPIID": "", - "OrganizationZipCode": "97210" + "OrganizationZipCode": "34105" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCDEBD", - "OrganizationName": "Keystone Surgical Group PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBFEBA", + "OrganizationName": "Ingleside Medical Associates", "NPIID": "", - "OrganizationZipCode": "48322" + "OrganizationZipCode": "19372" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIAAA", - "OrganizationName": "Dr Samuel Koszer", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFABBD", + "OrganizationName": "Malone Davis Neurology", "NPIID": "", - "OrganizationZipCode": "12571" + "OrganizationZipCode": "89120" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICECA", - "OrganizationName": "Southern Vascular of Panama City", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIABAA", + "OrganizationName": "Beach Medical Specialist, PA", "NPIID": "", - "OrganizationZipCode": "32047" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBFCBA", - "OrganizationName": "Skin Cancer Consultants PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJFADA", + "OrganizationName": "South Lake Pain Institute", "NPIID": "", - "OrganizationZipCode": "75251" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJGAA", - "OrganizationName": "NYCDOHMH-NY Total Medical Care P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEBDAD", + "OrganizationName": "Dodge County Hospital Mid Georgia Total Care", "NPIID": "", - "OrganizationZipCode": "11215" + "OrganizationZipCode": "31023" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFGICD", - "OrganizationName": "Progressive Cardiology Associates, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADACD", + "OrganizationName": "Capital Nephrology Clinic PA", "NPIID": "", - "OrganizationZipCode": "48532" + "OrganizationZipCode": "32308" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJBBCA", - "OrganizationName": "Footcare PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDIFBD", + "OrganizationName": "Oscar Ortiz, MD PC", "NPIID": "", - "OrganizationZipCode": "75010" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEFBD", - "OrganizationName": "Elkhart Clinic LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIGCBD", + "OrganizationName": "United Vein Centers", "NPIID": "", - "OrganizationZipCode": "46514" + "OrganizationZipCode": "33624" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJFBCA", - "OrganizationName": "Family Practice Center of Abbeville PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIECBD", + "OrganizationName": "Dream Sleep Center", "NPIID": "", - "OrganizationZipCode": "36310" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEHGBA", - "OrganizationName": "Jose G Garcia MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHFGAA", + "OrganizationName": "The Center for Neurosciences,LLC", "NPIID": "", - "OrganizationZipCode": "33026" + "OrganizationZipCode": "61201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGJBBD", - "OrganizationName": "Jandali Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCCBA", + "OrganizationName": "Nacogdoches Pulmonary and Sleep Associates", "NPIID": "", - "OrganizationZipCode": "53143" + "OrganizationZipCode": "75961" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEJAA", - "OrganizationName": "Jemison Internal Medicine - A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDCBCA", + "OrganizationName": "MHS - Carlos R. Santos, MD, PA", "NPIID": "", - "OrganizationZipCode": "35085" + "OrganizationZipCode": "33162" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAFBCA", - "OrganizationName": "New Wave Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJAFCD", + "OrganizationName": "EASTERN NEW MEXICO FOOT ANKLE, PC", "NPIID": "", - "OrganizationZipCode": "39564-3421" + "OrganizationZipCode": "88101" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBACA", - "OrganizationName": "Michael Stasko, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICFBD", + "OrganizationName": "Metropolitan Health Partners, LLC", "NPIID": "", - "OrganizationZipCode": "21502" + "OrganizationZipCode": "33410" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHEFAA", - "OrganizationName": "Bowling Green Dermatology Skin Cancer Specialists, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEIHCD", + "OrganizationName": "Atlanta Prime Physicians, LLC", "NPIID": "", - "OrganizationZipCode": "42103" + "OrganizationZipCode": "30097" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEIDCD", - "OrganizationName": "Maverick County Hospital District", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCEBA", + "OrganizationName": "Sasha Cavanagh MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "98502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEGCCD", - "OrganizationName": "Southwest Kidney Care, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFDAD", + "OrganizationName": "Dodge County Hospital - Rosenbaum Orthopaedics, LLC", "NPIID": "", - "OrganizationZipCode": "87109" + "OrganizationZipCode": "31023" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEGEAA", - "OrganizationName": "Jolita Klementavlclene MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGBDAD", + "OrganizationName": "Florida Orthocare Network", "NPIID": "", - "OrganizationZipCode": "325617801" + "OrganizationZipCode": "33410" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJABCA", - "OrganizationName": "South Lake Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHGGAA", + "OrganizationName": "Lowcountry Spine And Sport", "NPIID": "", - "OrganizationZipCode": "34711" + "OrganizationZipCode": "29927" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABADBA", - "OrganizationName": "Orange Coast Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAAICD", + "OrganizationName": "Texas Interventional Joint and Spine, PLLC", "NPIID": "", - "OrganizationZipCode": "92663" + "OrganizationZipCode": "75024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHCJBD", - "OrganizationName": "Rashid M Siddiqi, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDJAD", + "OrganizationName": "Regenerative Medicine and Pain Management", "NPIID": "", - "OrganizationZipCode": "77521" + "OrganizationZipCode": "32563" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFDBBA", - "OrganizationName": "NYCDOHMH - Steve C C Chang MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHIIBA", + "OrganizationName": "Sumeet Anand, MD", "NPIID": "", - "OrganizationZipCode": "11354" + "OrganizationZipCode": "11706" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCEAD", - "OrganizationName": "Brevard Neuro Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHBGBA", + "OrganizationName": "Red River ENT Associates", "NPIID": "", - "OrganizationZipCode": "32901" + "OrganizationZipCode": "71303" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHJHBA", - "OrganizationName": "Internists Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAIEAA", + "OrganizationName": "Luo Cameron MD", "NPIID": "", - "OrganizationZipCode": "19078" + "OrganizationZipCode": "40217" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADFAD", - "OrganizationName": "Allergy Clinic of Tulsa", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFBBA", + "OrganizationName": "Gentle Touch Inc", "NPIID": "", - "OrganizationZipCode": "74133" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DICBBA", - "OrganizationName": "Jih-Lih Chiang, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJFCA", + "OrganizationName": "Lompoc Valley Cardio", "NPIID": "", - "OrganizationZipCode": "11354" + "OrganizationZipCode": "93438" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFHBD", - "OrganizationName": "Main Street Medical PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDIHAD", + "OrganizationName": "Tampa Bay Diabetes, Thyroid and Endocrinology Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33710" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBACBA", - "OrganizationName": "NYCDOHMH - Cuidado Medico Y Geriatrico Of Queens, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFD1AD", + "OrganizationName": "Elion Krok, MD PC, DBA - IMMC Health", "NPIID": "", - "OrganizationZipCode": "11372" + "OrganizationZipCode": "07052" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFBBA", - "OrganizationName": "Gentle Touch Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCAGCA", + "OrganizationName": "Mohammed G. Choudhury, MD", "NPIID": "", - "OrganizationZipCode": "95128" + "OrganizationZipCode": "32055" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEFEAD", - "OrganizationName": "Texas Eye Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIGBA", + "OrganizationName": "Stephen Kaiser, M.D.", "NPIID": "", - "OrganizationZipCode": "76011" + "OrganizationZipCode": "11230" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBFBA", - "OrganizationName": "Mohamed O. Jeroudi, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAAAA", + "OrganizationName": "Lance, Gaynes, Zavadil Argento, M.D. P.A.", "NPIID": "", - "OrganizationZipCode": "77504" + "OrganizationZipCode": "20707-5234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEDBD", - "OrganizationName": "Maximed Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGHDAA", + "OrganizationName": "Fairhope Family Medicine", "NPIID": "", - "OrganizationZipCode": "20906" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JECDBD", - "OrganizationName": "Accent on Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIBDBD", + "OrganizationName": "Sri Sastry MD Bethesda Retinal, LLC", "NPIID": "", - "OrganizationZipCode": "20032" + "OrganizationZipCode": "20602" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEJAD", - "OrganizationName": "Metropolitan Institute of Pain", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFBICA", + "OrganizationName": "Gitlin Cardiology", "NPIID": "", - "OrganizationZipCode": "60607" + "OrganizationZipCode": "89128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJJBA", - "OrganizationName": "OCEAN CARDIOVASCULAR", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACDFAD", + "OrganizationName": "Tri-County Heart Institute PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32159" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDIBD", - "OrganizationName": "Tamarack Family Medicine, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DECFCD", + "OrganizationName": "THE NEUROLOGY INSTITUTE LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33067" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFBCCD", - "OrganizationName": "PADMINI BHADRIRAJU MD P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICFCBA", + "OrganizationName": "Prabhakara Kunamnani, M.D.", "NPIID": "", - "OrganizationZipCode": "78503" + "OrganizationZipCode": "32778" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGGBA", - "OrganizationName": "Nitin K. G. Golechha, M.D., P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGJCAA", + "OrganizationName": "Michael S. Lovoi, M.D.", "NPIID": "", - "OrganizationZipCode": "48453" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBGIBD", - "OrganizationName": "The Surgery Clinic, L.L.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JECDBD", + "OrganizationName": "Accent on Health", "NPIID": "", - "OrganizationZipCode": "35901" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBCAA", - "OrganizationName": "Town Center Family Practice.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHEJCD", + "OrganizationName": "ARTERY AND VEIN SPECIALISTS OF AMERICA, PLLC", "NPIID": "", - "OrganizationZipCode": "32763" + "OrganizationZipCode": "77386" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFAACD", - "OrganizationName": "Estrella Ear Nose and Throat", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCACD", + "OrganizationName": "Rock Canyon Foot and Ankle Clinic, LLC", "NPIID": "", - "OrganizationZipCode": "85395" + "OrganizationZipCode": "80109" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGDGAA", - "OrganizationName": "Florida Center for Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAHAAA", + "OrganizationName": "Opthalmic Plastic Surgeons of Texas", "NPIID": "", - "OrganizationZipCode": "33701" + "OrganizationZipCode": "77063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DECBDA", - "OrganizationName": "Aaron L Cernero DO PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGICD", + "OrganizationName": "West Park Primary Care", "NPIID": "", - "OrganizationZipCode": "75020" + "OrganizationZipCode": "77351" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAEEBA", - "OrganizationName": "Cedars Heart Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBAEAD", + "OrganizationName": "Bradley C. Rue, M.D.", "NPIID": "", - "OrganizationZipCode": "85286" + "OrganizationZipCode": "75090" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGFCAA", - "OrganizationName": "Ellis County Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBCABD", + "OrganizationName": "Wiregras Neurology", "NPIID": "", - "OrganizationZipCode": "75119" + "OrganizationZipCode": "36301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHEEBD", - "OrganizationName": "The Vascular Group of Bradenton", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDCBCA", + "OrganizationName": "Gastro Cure", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEJBD", - "OrganizationName": "Syed M. Riaz, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FABIAA", + "OrganizationName": "Enhanced Wellness at Oak Grove PLLC", "NPIID": "", - "OrganizationZipCode": "21090" + "OrganizationZipCode": "39402" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFJACA", - "OrganizationName": "Chia-Der Wu, M.D., PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFEEBA", + "OrganizationName": "Pinnacle ENT Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19087" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDFAD", - "OrganizationName": "Nirmala Aryal, M.D", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBCAA", + "OrganizationName": "Town Center Family Practice.", "NPIID": "", - "OrganizationZipCode": "85037" + "OrganizationZipCode": "32763" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICDGAA", - "OrganizationName": "Southern Utah Ear,Nose, and Throat", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGICA", + "OrganizationName": "Bury Hettrick, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "53168" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAFIAA", - "OrganizationName": "Visalia Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHIAD", + "OrganizationName": "Insight Medical Clinic", "NPIID": "", - "OrganizationZipCode": "93227" + "OrganizationZipCode": "77657" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEEEBD", - "OrganizationName": "Advanced Cardiac Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIEGAA", + "OrganizationName": "Allied Medical Associates", "NPIID": "", - "OrganizationZipCode": "32825" + "OrganizationZipCode": "07470" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHGBAA", - "OrganizationName": "Nacogdoches Nephrology PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEICAA", + "OrganizationName": "Hamilton Medical Group", "NPIID": "", - "OrganizationZipCode": "79565" + "OrganizationZipCode": "70506" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBJECA", - "OrganizationName": "Williamson Health Wellness Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJAJBA", + "OrganizationName": "Bachman and Scully, LTD; DBA Arthritis Consultants", "NPIID": "", - "OrganizationZipCode": "25661" + "OrganizationZipCode": "89511-4040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIICBD", - "OrganizationName": "Southern ENT Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIJHAA", + "OrganizationName": "Wake Spine and Pain Specialists, PC", "NPIID": "", - "OrganizationZipCode": "30115" + "OrganizationZipCode": "27609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJHCA", - "OrganizationName": "Schreier Family Medicine LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJHAA", + "OrganizationName": "NYCDOHMH - Union Tpke Medical P.C.", "NPIID": "", - "OrganizationZipCode": "64024" + "OrganizationZipCode": "11367" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCHAA", - "OrganizationName": "SouthShore Cardiovascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAHHBD", + "OrganizationName": "Suburban Surgical Associates Ltd", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGJDCD", - "OrganizationName": "Vascular Care Specialists of Los Angeles", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFEAA", + "OrganizationName": "City Medical Healthcare Associates, PLLC", "NPIID": "", - "OrganizationZipCode": "91803" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBDCD", - "OrganizationName": "New York Allergy Sinus Group, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGCAA", + "OrganizationName": "George, MD, Sabu", "NPIID": "", - "OrganizationZipCode": "10016" + "OrganizationZipCode": "33410" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHHFCD", - "OrganizationName": "ATLANTIC CARDIOVASCULAR CONSULTANTS, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJACBD", + "OrganizationName": "Advanced Kidney Specialists", "NPIID": "", - "OrganizationZipCode": "33431" + "OrganizationZipCode": "38305" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABDAD", - "OrganizationName": "ENM, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFHDBA", + "OrganizationName": "Flatbush Family Medicine, PC", "NPIID": "", - "OrganizationZipCode": "35903" + "OrganizationZipCode": "11225" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHDDAD", - "OrganizationName": "Goldfield Cardiovascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFACDA", + "OrganizationName": "Foot and Ankle Surgery of New Braunfels", "NPIID": "", - "OrganizationZipCode": "85119" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDADAA", - "OrganizationName": "Pacific Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDBFBA", + "OrganizationName": "Annesley Associates", "NPIID": "", - "OrganizationZipCode": "98664" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCECCA", - "OrganizationName": "Sudhir Sehgal MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDGBD", + "OrganizationName": "Pain and Spine Institute", "NPIID": "", - "OrganizationZipCode": "77340" + "OrganizationZipCode": "60435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCABD", - "OrganizationName": "Cedar Valley Medical Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJFBA", + "OrganizationName": "TRISTATE NEUROLOGY CENTER", "NPIID": "", - "OrganizationZipCode": "50701" + "OrganizationZipCode": "21742" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGAJBD", - "OrganizationName": "Spine DFW PA dba Texas Spine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEHGAD", + "OrganizationName": "Philip J Weintraub MD", "NPIID": "", - "OrganizationZipCode": "75063" + "OrganizationZipCode": "10021" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJJGCD", - "OrganizationName": "Align Spine and Pain Institute, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFEAD", + "OrganizationName": "Homeria Mehrabian MD Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92663" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHIDBA", - "OrganizationName": "Huntington Practice Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAIAAA", + "OrganizationName": "Family Dermatology", "NPIID": "", - "OrganizationZipCode": "91105" + "OrganizationZipCode": "22911" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIDEBD", - "OrganizationName": "Third Coast Health, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEFABA", + "OrganizationName": "HCA - Joseph M Caruso MD", "NPIID": "", - "OrganizationZipCode": "78411" + "OrganizationZipCode": "76014" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJEAD", - "OrganizationName": "HCA - Chesapeake Medical Associates P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEFHAA", + "OrganizationName": "Coastal Carolina Neuropsychiatric Center", "NPIID": "", - "OrganizationZipCode": "21061" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEGAA", - "OrganizationName": "Martin Berry, M.D., Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHHFBD", + "OrganizationName": "Brandon Sutton MD", "NPIID": "", - "OrganizationZipCode": "CA" + "OrganizationZipCode": "40202" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAGEBA", - "OrganizationName": "Southeastern Endocrine Diabetes, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBHCCD", + "OrganizationName": "Kingwood Gastroenterology, PLLC", "NPIID": "", - "OrganizationZipCode": "30076" + "OrganizationZipCode": "77365" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBFHAD", - "OrganizationName": "Inlet Pulmonary Critical Care and Sleep Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFCCD", + "OrganizationName": "Vascular Institute", "NPIID": "", - "OrganizationZipCode": "29585" + "OrganizationZipCode": "85015" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIECBD", - "OrganizationName": "Dream Sleep Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBFFBA", + "OrganizationName": "Baycare- St. Pete Endocrinology Associates, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32955" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHHHAA", - "OrganizationName": "Gerald Family Care PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDAGAA", + "OrganizationName": "MSA Chiropractic", "NPIID": "", - "OrganizationZipCode": "20910" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCBHAA", - "OrganizationName": "Wrightington Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEEAD", + "OrganizationName": "Todd J. Maltese, DO PC", "NPIID": "", - "OrganizationZipCode": "31405" + "OrganizationZipCode": "11779" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFFBD", - "OrganizationName": "SHCN - Michael A. Venazio MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJGCBD", + "OrganizationName": "CGHN - Georgia Spine and Orthopedics", "NPIID": "", - "OrganizationZipCode": "32958" + "OrganizationZipCode": "31217" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCEJCA", - "OrganizationName": "Michael P Roberts MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCFCA", + "OrganizationName": "Cardiology Associates of Sandwich", "NPIID": "", - "OrganizationZipCode": "32578" + "OrganizationZipCode": "02643" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEHBA", - "OrganizationName": "STJ - Naber and Gill, MD s / Kenneth J Dziuba MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFDDAA", + "OrganizationName": "Mohammad Afzal, MD. Internal Medicine, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "42503" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIJBA", - "OrganizationName": "Weibo Medical Care, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGFCCD", + "OrganizationName": "Central Nebraska Medical Clinic", "NPIID": "", - "OrganizationZipCode": "11354" + "OrganizationZipCode": "68822" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHIIBA", - "OrganizationName": "Sumeet Anand, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBHCBA", + "OrganizationName": "Community Medical Center", "NPIID": "", - "OrganizationZipCode": "11706" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEBCA", - "OrganizationName": "South County Endocrinology and Obesity Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIGBBD", + "OrganizationName": "Regional Spine and Wrist Center", "NPIID": "", - "OrganizationZipCode": "63128" + "OrganizationZipCode": "35763" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEHJCD", - "OrganizationName": "Internal Health and Medical Services LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCGDCD", + "OrganizationName": "Ohio Valley ENT,Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGIBA", - "OrganizationName": "Bend Neurological Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGBFAA", + "OrganizationName": "Arizona Medical Center", "NPIID": "", - "OrganizationZipCode": "97701" + "OrganizationZipCode": "85364" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGDCD", - "OrganizationName": "Montgomery Cardiology,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFCCD", + "OrganizationName": "Advanced Wound Institute", "NPIID": "", - "OrganizationZipCode": "20850" + "OrganizationZipCode": "85234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEJAAA", - "OrganizationName": "Family Medicine of Pampa", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHCAA", + "OrganizationName": "V PAIN LLC", "NPIID": "", - "OrganizationZipCode": "79065" + "OrganizationZipCode": "29732-8039" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFBICA", - "OrganizationName": "Gitlin Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBJECA", + "OrganizationName": "Williamson Health Wellness Center", "NPIID": "", - "OrganizationZipCode": "89128" + "OrganizationZipCode": "25661" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJADAA", - "OrganizationName": "Mathew, MD. Jose", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFJBD", + "OrganizationName": "Texas ENT Allergy Associates LLP", "NPIID": "", - "OrganizationZipCode": "71446" + "OrganizationZipCode": "77845" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDEBD", - "OrganizationName": "Red Sands Vein Laser Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCGHBD", + "OrganizationName": "Prody Urology PLLC", "NPIID": "", - "OrganizationZipCode": "84780" + "OrganizationZipCode": "32904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIIABD", - "OrganizationName": "Medical Associates of Clinton", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAIICA", + "OrganizationName": "Affiliated Cardiologists", "NPIID": "", - "OrganizationZipCode": "52732" + "OrganizationZipCode": "85006" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIADCD", - "OrganizationName": "Magic Valley Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAEJCA", + "OrganizationName": "Margaret Leila Rasouli MD Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92653" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGEADD", - "OrganizationName": "Central Georgia Heart Center, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHCAD", + "OrganizationName": "Upper East Orthopaedics, PC", "NPIID": "", - "OrganizationZipCode": "31201" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FABIAA", - "OrganizationName": "Enhanced Wellness at Oak Grove PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHHBD", + "OrganizationName": "Kesar Family PLLC dba Gastro Star", "NPIID": "", - "OrganizationZipCode": "39402" + "OrganizationZipCode": "78251" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIBADD", - "OrganizationName": "East Memphis Healthcare LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADBBD", + "OrganizationName": "Diagnostic Center of Medicine", "NPIID": "", - "OrganizationZipCode": "38119" + "OrganizationZipCode": "89117" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCECBD", - "OrganizationName": "Stacey W Mayeaux, MD LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDABA", + "OrganizationName": "Advocate - Naperville Internist", "NPIID": "", - "OrganizationZipCode": "70570" + "OrganizationZipCode": "60540" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFFAD", - "OrganizationName": "Ludwig Orozco MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJJAA", + "OrganizationName": "Alabama Digestive Disorders Center, P.C.", "NPIID": "", - "OrganizationZipCode": "75088" + "OrganizationZipCode": "35802" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHFIAA", - "OrganizationName": "Rani Anbarasu MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIHCA", + "OrganizationName": "Westchester Putnam Gastroenterology", "NPIID": "", - "OrganizationZipCode": "76207" + "OrganizationZipCode": "10512" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFAIBD", - "OrganizationName": "Wilmington Surgical Assoc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIDJBD", + "OrganizationName": "Susan Biegel MD INC", "NPIID": "", - "OrganizationZipCode": "28401" + "OrganizationZipCode": "91786" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHGCAA", - "OrganizationName": "George, MD, Sabu", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIAAA", + "OrganizationName": "Dr Samuel Koszer", "NPIID": "", - "OrganizationZipCode": "33410" + "OrganizationZipCode": "12571" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBACD", - "OrganizationName": "Intermed, Ltd.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJIAAA", + "OrganizationName": "FCA-Cynthiana", "NPIID": "", - "OrganizationZipCode": "60526" + "OrganizationZipCode": "41031" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIBIAD", - "OrganizationName": "Health Services of North Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHHFCD", + "OrganizationName": "ATLANTIC CARDIOVASCULAR CONSULTANTS, PLLC", "NPIID": "", - "OrganizationZipCode": "76207" + "OrganizationZipCode": "33431" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHACD", - "OrganizationName": "SKYLANDS VASCULAR SPECIALISTS LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBBACD", + "OrganizationName": "East Los Angeles Cardiology Medical Group Inc", "NPIID": "", - "OrganizationZipCode": "07871" + "OrganizationZipCode": "90033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABBCAA", - "OrganizationName": "Redmond Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFDHCD", + "OrganizationName": "The Heart Center of Palm Coast", "NPIID": "", - "OrganizationZipCode": "97756" + "OrganizationZipCode": "32164" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDHAD", - "OrganizationName": "Florida Gulf Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDBIAA", + "OrganizationName": "Kelso Dermatology, PA", "NPIID": "", - "OrganizationZipCode": "33908" + "OrganizationZipCode": "78229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBBBDA", - "OrganizationName": "Top Pain Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBEHAD", + "OrganizationName": "Doylestown AssociatesThyroid Endocrine", "NPIID": "", - "OrganizationZipCode": "60542" + "OrganizationZipCode": "18901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCBICA", - "OrganizationName": "Duc M Nguyen MD FACS", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEHAA", + "OrganizationName": "Gramercy Pain Management", "NPIID": "", - "OrganizationZipCode": "94062" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAIAAA", - "OrganizationName": "Family Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCBJAD", + "OrganizationName": "North Florida Medical Centers", "NPIID": "", - "OrganizationZipCode": "22911" + "OrganizationZipCode": "32308" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIABD", - "OrganizationName": "Bloomington Kidney and Hypertension Specialists PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIDFCD", + "OrganizationName": "Caldwell County Hospital, Inc", "NPIID": "", - "OrganizationZipCode": "47401" + "OrganizationZipCode": "42445" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDFBCD", - "OrganizationName": "Imad E. Tarabishy MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEFFAA", + "OrganizationName": "Ventana Group of Brevard", "NPIID": "", - "OrganizationZipCode": "34613" + "OrganizationZipCode": "32796" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJEIBD", - "OrganizationName": "Nadir Mir Ali, MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGAIAA", + "OrganizationName": "Misty Snyder", "NPIID": "", - "OrganizationZipCode": "775984160" + "OrganizationZipCode": "25301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDEGAA", - "OrganizationName": "Zhu, MD,Isabel", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIECD", + "OrganizationName": "Savannah Endocrinology,LLC", "NPIID": "", - "OrganizationZipCode": "80027" + "OrganizationZipCode": "31405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADIJAD", - "OrganizationName": "Ravi S Shankar, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEHGBA", + "OrganizationName": "Jose G Garcia MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33026" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDFCAA", - "OrganizationName": "Amarillo Medical Specialist LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEBBA", + "OrganizationName": "Munson - BirchTree Podiatry", "NPIID": "", - "OrganizationZipCode": "79106" + "OrganizationZipCode": "49686" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBHCBA", - "OrganizationName": "Community Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGAJBD", + "OrganizationName": "Spine DFW PA dba Texas Spine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDHBCD", - "OrganizationName": "Medical Pain and Spine Care of Indiana", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADICD", + "OrganizationName": "JAIME L SILVA, M D , P L L C", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78520" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGDCA", - "OrganizationName": "Quan Nguyen DO PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCFBA", + "OrganizationName": "George M. Elias, DO", "NPIID": "", - "OrganizationZipCode": "32701" + "OrganizationZipCode": "32703" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJEAD", - "OrganizationName": "Cardiology of Miami", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGGDAA", + "OrganizationName": "Michael Murphy", "NPIID": "", - "OrganizationZipCode": "33126" + "OrganizationZipCode": "46143" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEBIAA", - "OrganizationName": "Madera Family Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIAEBD", + "OrganizationName": "Endocrinology Associates of Southern Maryland", "NPIID": "", - "OrganizationZipCode": "93697" + "OrganizationZipCode": "20735" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGGBA", - "OrganizationName": "Summit Digestive and Liver", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBIJCA", + "OrganizationName": "Orthopaedic Surgery Specialists", "NPIID": "", - "OrganizationZipCode": "60181" + "OrganizationZipCode": "91505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEGCA", - "OrganizationName": "Excellence in Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEJACA", + "OrganizationName": "Westside Cardiovascular Associates", "NPIID": "", - "OrganizationZipCode": "96001" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJCBD", - "OrganizationName": "The Lung Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GABFAD", + "OrganizationName": "Westcare Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHHBD", - "OrganizationName": "Kesar Family PLLC dba Gastro Star", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFACBD", + "OrganizationName": "Allergy and Asthma Associates - NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEEHBA", - "OrganizationName": "Northside Gastroenterology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJGBA", + "OrganizationName": "Ogden Clinic", "NPIID": "", - "OrganizationZipCode": "77070" + "OrganizationZipCode": "84405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBACBA", - "OrganizationName": "Advanced Vein Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABADBA", + "OrganizationName": "Orange Coast Urology", "NPIID": "", - "OrganizationZipCode": "85215" + "OrganizationZipCode": "92663" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAGEBA", - "OrganizationName": "Coosa Valley Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJEBD", + "OrganizationName": "Zaheen Medical Center", "NPIID": "", - "OrganizationZipCode": "35150" + "OrganizationZipCode": "01845" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFFACA", - "OrganizationName": "Texas Neurosurgery LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAGEBA", + "OrganizationName": "Southeastern Endocrine Diabetes, PC", "NPIID": "", - "OrganizationZipCode": "75246" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEDDCA", - "OrganizationName": "Advocate- Mukesh K Ahluwalia, MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCGADA", + "OrganizationName": "Benny Wang, MD", "NPIID": "", - "OrganizationZipCode": "60634" + "OrganizationZipCode": "77380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCBJAD", - "OrganizationName": "North Florida Medical Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJIFCD", + "OrganizationName": "Richard L. Chang, P.A", "NPIID": "", - "OrganizationZipCode": "32308" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JECFBD", - "OrganizationName": "Texoma Arthritis Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICIAA", + "OrganizationName": "Women s Medicine of Niagara", "NPIID": "", - "OrganizationZipCode": "75069" + "OrganizationZipCode": "14072" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEJDAA", - "OrganizationName": "NYCDOHMH: Arjun Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJGCDA", + "OrganizationName": "South Island Gastroenterology", "NPIID": "", - "OrganizationZipCode": "10016" + "OrganizationZipCode": "11559" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHDAD", - "OrganizationName": "Sendas Northwest Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIBCD", + "OrganizationName": "Neurology Consultants of Montgomery,P.C", "NPIID": "", - "OrganizationZipCode": "93311" + "OrganizationZipCode": "36106" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBAIAD", - "OrganizationName": "Meharry Medical College", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFHAD", + "OrganizationName": "Start Community Health Center", "NPIID": "", - "OrganizationZipCode": "37208" + "OrganizationZipCode": "70360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADGCA", - "OrganizationName": "Advocate - Metro Chest Professionals", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBABBD", + "OrganizationName": "Neuro Care of Louisiana", "NPIID": "", - "OrganizationZipCode": "60657" + "OrganizationZipCode": "70433" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIIBBD", - "OrganizationName": "Neel Raya, MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGEHAA", + "OrganizationName": "Sills Shawn, MD", "NPIID": "", - "OrganizationZipCode": "43130" + "OrganizationZipCode": "97504" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEJACA", - "OrganizationName": "Westside Cardiovascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFBAA", + "OrganizationName": "Advanced Physical Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48080" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHABA", - "OrganizationName": "CHCF - Shyam Bhaskar, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIHBCD", + "OrganizationName": "Women s Care Florida North - Physician", "NPIID": "", - "OrganizationZipCode": "93277" + "OrganizationZipCode": "33609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHBCD", - "OrganizationName": "Markims Nephrology Network Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHIBBA", + "OrganizationName": "HCA - Constance Irick MD", "NPIID": "", - "OrganizationZipCode": "71457" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDBECA", - "OrganizationName": "Arthur L Ostrowski MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEAHBA", + "OrganizationName": "Oklahoma Surgical Group, PLLC", "NPIID": "", - "OrganizationZipCode": "60010" + "OrganizationZipCode": "73112" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHEBCA", - "OrganizationName": "Baylor - Texas Kidney Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCEJCA", + "OrganizationName": "Michael P Roberts MD PA", "NPIID": "", - "OrganizationZipCode": "75231" + "OrganizationZipCode": "32578" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCHAA", - "OrganizationName": "G A Valdez Associates Inc DBA FHP Geriatrics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHABCA", + "OrganizationName": "Advocate - Twenty First Century Pediatrics", "NPIID": "", - "OrganizationZipCode": "77375" + "OrganizationZipCode": "60540" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHDJCA", - "OrganizationName": "Southern Dutchess Family Practice / Edward Schneider, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJFBD", + "OrganizationName": "Ades and Castro", "NPIID": "", - "OrganizationZipCode": "12590-2753" + "OrganizationZipCode": "61265" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHFAD", - "OrganizationName": "Primary Care and Wellness", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAGFCD", + "OrganizationName": "Doctors United, Inc.", "NPIID": "", - "OrganizationZipCode": "78332" + "OrganizationZipCode": "33142" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIHBA", - "OrganizationName": "Diablo Digestive Care, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEHIBD", + "OrganizationName": "Idaho Falls Family and Sports Medicine", "NPIID": "", - "OrganizationZipCode": "94523" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBAICA", - "OrganizationName": "Mulqueeny Eye Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJCAD", + "OrganizationName": "Associated Cardiovascular and Thoracic Surgeons", "NPIID": "", - "OrganizationZipCode": "631416714" + "OrganizationZipCode": "77702" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHECD", - "OrganizationName": "DAN LE CARDIOLOGY DBA Advanced Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJBCA", + "OrganizationName": "Manhattan Ortho", "NPIID": "", - "OrganizationZipCode": "92683" + "OrganizationZipCode": "10128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFAHBD", - "OrganizationName": "Healthy Heart Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCHCD", + "OrganizationName": "Keith Bangart DPM PC DBA Peoria Foot Ankle", "NPIID": "", - "OrganizationZipCode": "75094" + "OrganizationZipCode": "85390" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDDBDA", - "OrganizationName": "BluePoint Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBFAD", + "OrganizationName": "Texas Behavioral Health, PLLC", "NPIID": "", - "OrganizationZipCode": "89129" + "OrganizationZipCode": "77584" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCGCBD", - "OrganizationName": "VitalCare Family, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCIBAA", + "OrganizationName": "Hull Dermatology, PA", "NPIID": "", - "OrganizationZipCode": "23832" + "OrganizationZipCode": "72758" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIJGAD", + "OrganizationName": "Northwoods Urology of Texas", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFBCA", - "OrganizationName": "OHS - Crescent Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBGIBD", + "OrganizationName": "The Surgery Clinic, L.L.C.", "NPIID": "", - "OrganizationZipCode": "48228" + "OrganizationZipCode": "35901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDECCA", - "OrganizationName": "Family First Wellness Clinic LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGDCD", + "OrganizationName": "Montgomery Cardiology,LLC", "NPIID": "", - "OrganizationZipCode": "32340-2363" + "OrganizationZipCode": "20850" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFBBAA", - "OrganizationName": "Advanced Hand Plastic Surgery Center, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDBBA", + "OrganizationName": "Christopher Ha MD", "NPIID": "", - "OrganizationZipCode": "33544" + "OrganizationZipCode": "95678" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBICA", - "OrganizationName": "Internal Medicine Clinic of Tangipahoa, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGFCAA", + "OrganizationName": "Yugal Maheswari", "NPIID": "", - "OrganizationZipCode": "70403" + "OrganizationZipCode": "77703" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADHCD", - "OrganizationName": "Complete Cardiology Care LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACDCA", + "OrganizationName": "ElyssElyssa Blissenbach MD PA", "NPIID": "", - "OrganizationZipCode": "32174" + "OrganizationZipCode": "32204" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEJBD", - "OrganizationName": "Pulmonary Sleep Specialists, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEEAD", + "OrganizationName": "Rogers Foot and Ankle Institute", "NPIID": "", - "OrganizationZipCode": "30033" + "OrganizationZipCode": "84003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCGACA", - "OrganizationName": "Chestnut Hill Allergy Asthma Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFABA", + "OrganizationName": "Advocate - O Bartolomeo, MD SC", "NPIID": "", - "OrganizationZipCode": "19118" + "OrganizationZipCode": "60010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBGAD", - "OrganizationName": "Rheumatology Express", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADDAA", + "OrganizationName": "Skin Solutions Dermatology", "NPIID": "", - "OrganizationZipCode": "21104" + "OrganizationZipCode": "37067" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAIDBA", - "OrganizationName": "Cornwall Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIGBD", + "OrganizationName": "Central Florida Infectious Diseases LLC", "NPIID": "", - "OrganizationZipCode": "12550" + "OrganizationZipCode": "33569" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJIIAA", - "OrganizationName": "Community of Hope(COH)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIFHAA", + "OrganizationName": "May River Dermatology", "NPIID": "", - "OrganizationZipCode": "20005" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCHCAA", - "OrganizationName": "Kansas City Foot Specialists, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIHCA", + "OrganizationName": "Tampa Bay Bone Joint Center", "NPIID": "", - "OrganizationZipCode": "66213" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGJBBD", - "OrganizationName": "Michael A Codiga MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAIGAD", + "OrganizationName": "Robson F. Araujo, DPM", "NPIID": "", - "OrganizationZipCode": "84780" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCDAA", - "OrganizationName": "Norfolk Center for Cancer Care and Hematology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADACD", + "OrganizationName": "Michigan Primary Care Partners", "NPIID": "", - "OrganizationZipCode": "02301" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBGCBD", - "OrganizationName": "Texas Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDFAD", + "OrganizationName": "Nirmala Aryal, M.D", "NPIID": "", - "OrganizationZipCode": "77521" + "OrganizationZipCode": "85037" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEIACD", - "OrganizationName": "Allergy A.R.T.S LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGDHCD", + "OrganizationName": "Stephen D Sandoval, MD", "NPIID": "", - "OrganizationZipCode": "79124" + "OrganizationZipCode": "75092" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICDJAA", - "OrganizationName": "Michael Whiteley", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIADCD", + "OrganizationName": "Magic Valley Urology", "NPIID": "", - "OrganizationZipCode": "77375" + "OrganizationZipCode": "83341" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDBBA", - "OrganizationName": "Surgical Dermatology Assoc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HABBCA", + "OrganizationName": "Interventional Spine and Pain Physicians PA", "NPIID": "", - "OrganizationZipCode": "76208" + "OrganizationZipCode": "55369" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGFADD", - "OrganizationName": "Pain Care Physicians PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBHFAD", + "OrganizationName": "The Kidney Clinic", "NPIID": "", - "OrganizationZipCode": "98057" + "OrganizationZipCode": "30241" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCFHAD", - "OrganizationName": "Jamie W. Cox, MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAHFAD", + "OrganizationName": "Mena Regional Health System", "NPIID": "", - "OrganizationZipCode": "73533" + "OrganizationZipCode": "71953" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHAABA", - "OrganizationName": "Ricardo Rodriguez MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFDBCD", + "OrganizationName": "Train_Unity Health Care Inc", "NPIID": "", - "OrganizationZipCode": "07204" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BACACA", - "OrganizationName": "Gainesville Internal Medicine Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGEDBD", + "OrganizationName": "Arizona State Orthopaedics", "NPIID": "", - "OrganizationZipCode": "32605" + "OrganizationZipCode": "85225" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCJDAA", - "OrganizationName": "Nash Chulamorkodt", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEBACD", + "OrganizationName": "Heart and Vascular Associates of Tampa LLC", "NPIID": "", - "OrganizationZipCode": "85364" + "OrganizationZipCode": "33606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCGADA", - "OrganizationName": "Dr. Ben B. Shenassa, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBABD", + "OrganizationName": "Allergy and Rheumatology Associates", "NPIID": "", - "OrganizationZipCode": "90041" + "OrganizationZipCode": "33709" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEHAA", - "OrganizationName": "TKFMC - Adolph Nava, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFJEBA", + "OrganizationName": "Medical and Aesthetic Dermatology", "NPIID": "", - "OrganizationZipCode": "93291-5121" + "OrganizationZipCode": "21046" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDHGBA", - "OrganizationName": "REC - Steven B Degalan, M.D", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABDAD", + "OrganizationName": "ENM, PC", "NPIID": "", - "OrganizationZipCode": "94545" + "OrganizationZipCode": "35903" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGJBA", - "OrganizationName": "Baycare - West Coast Primary Care LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EABGAA", + "OrganizationName": "Lone Star Ortho", "NPIID": "", - "OrganizationZipCode": "33701" + "OrganizationZipCode": "76115" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJDADD", - "OrganizationName": "Jeffrey M. Bloom M.D, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFIFBA", + "OrganizationName": "Whitney Dixon, MD", "NPIID": "", - "OrganizationZipCode": "93401" + "OrganizationZipCode": "95926" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCIFBA", - "OrganizationName": "Endocrinology, Diabetes \u0026 Metabolism, NY PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFCBA", + "OrganizationName": "Atlanta Center for Medicine", "NPIID": "", - "OrganizationZipCode": "11803" + "OrganizationZipCode": "30033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEECAA", - "OrganizationName": "Endocrine and Diabetes Associates, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGDFCA", + "OrganizationName": "University Orthopedics", "NPIID": "", - "OrganizationZipCode": "20817" + "OrganizationZipCode": "33321" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICEACA", - "OrganizationName": "Pulmonary Critical Care Consultants, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFFAD", + "OrganizationName": "Ludwig Orozco MD", "NPIID": "", - "OrganizationZipCode": "45409" + "OrganizationZipCode": "75088" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEFCBA", - "OrganizationName": "SNMH - Dr Kuldip Gill, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHHCAD", + "OrganizationName": "Central Arkansas Heart Center", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "72034" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIBCA", - "OrganizationName": "Pulmonary Associates, LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDBGCA", + "OrganizationName": "Texas Neuro Spine Institute", "NPIID": "", - "OrganizationZipCode": "22311" + "OrganizationZipCode": "75203" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHCHBD", - "OrganizationName": "Specialists in Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGGECD", + "OrganizationName": "Snehal A. Patel, MD PLLC dba Houston Heart Care", "NPIID": "", - "OrganizationZipCode": "37404" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEJFAA", - "OrganizationName": "Mass Lung And Allergy", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIFJBD", + "OrganizationName": "Florian Gegaj,MD LLC dba", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJCBA", - "OrganizationName": "Nephrology Associates of the Carolinas, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHCCD", + "OrganizationName": "Graham Medical Management", "NPIID": "", - "OrganizationZipCode": "28150" + "OrganizationZipCode": "76450" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHIGAA", - "OrganizationName": "The Dermatology Center of New Jersey", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDIAA", + "OrganizationName": "NYCDOHMH-Sindhu Gupta, M.D., P.C.", "NPIID": "", - "OrganizationZipCode": "08807" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBEHAA", - "OrganizationName": "Sami I Dagher, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGICBD", + "OrganizationName": "Amir Kaykha, MD", "NPIID": "", - "OrganizationZipCode": "33435" + "OrganizationZipCode": "95124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCEAA", - "OrganizationName": "So Others Might Eat.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGFBBD", + "OrganizationName": "Li Yee Guo MD LTD", "NPIID": "", - "OrganizationZipCode": "20001" + "OrganizationZipCode": "89117" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICCAA", - "OrganizationName": "Frances A. Berry-Brown, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEGAA", + "OrganizationName": "Martin Berry, M.D., Inc", "NPIID": "", - "OrganizationZipCode": "38464" + "OrganizationZipCode": "CA" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHIADA", - "OrganizationName": "Focus Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EADGCD", + "OrganizationName": "SACHIN SINGH, MD", "NPIID": "", - "OrganizationZipCode": "34711" + "OrganizationZipCode": "95926" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGACBA", - "OrganizationName": "Spanish Catholic Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJJCD", + "OrganizationName": "Test_8080_Tammy Spear", "NPIID": "", - "OrganizationZipCode": "20005" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFBHAA", - "OrganizationName": "Commonwealth Dermatology, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBHBD", + "OrganizationName": "Brain Spine and Sleep Institute", "NPIID": "", - "OrganizationZipCode": "23230" + "OrganizationZipCode": "33853" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCFFAA", - "OrganizationName": "Infectious Disease Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBIEBD", + "OrganizationName": "Manalapan Medical Center", "NPIID": "", - "OrganizationZipCode": "32608" + "OrganizationZipCode": "07726" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECGGCD", - "OrganizationName": "Jones Family Practice Clinic, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABBCAA", + "OrganizationName": "Redmond Internal Medicine", "NPIID": "", - "OrganizationZipCode": "74401" + "OrganizationZipCode": "97756" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBCBD", - "OrganizationName": "Francois J. du Toit M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEIAA", + "OrganizationName": "NYCDOHMH - Anil Gupta, M.D. P.C.", "NPIID": "", - "OrganizationZipCode": "73505" + "OrganizationZipCode": "10473" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECACDA", - "OrganizationName": "Cape Fear Physical Medicine Rehab", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBIJBD", + "OrganizationName": "Pikes Peak ENT LLC", "NPIID": "", - "OrganizationZipCode": "28303" + "OrganizationZipCode": "80908" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IABBDD", - "OrganizationName": "Greenspring Personal Oncology, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJEBA", + "OrganizationName": "Baycare Digestive Disease and Cancer Institute", "NPIID": "", - "OrganizationZipCode": "21042" + "OrganizationZipCode": "34684" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCDCA", - "OrganizationName": "HCA - Southeastern Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGGBA", + "OrganizationName": "Antony G Sankoorikal MD PA", "NPIID": "", - "OrganizationZipCode": "31904" + "OrganizationZipCode": "33761" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJBBD", - "OrganizationName": "Family Wellness Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECIAA", + "OrganizationName": "Los Altos Dermatology", "NPIID": "", - "OrganizationZipCode": "89052" + "OrganizationZipCode": "94024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIIGBA", - "OrganizationName": "HCA - Allergy Asthma Care of The Palm Beaches", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFAIBA", + "OrganizationName": "Jorge Barros, MD", "NPIID": "", - "OrganizationZipCode": "33458" + "OrganizationZipCode": "33028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBEBAA", - "OrganizationName": "William W. Huntley, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEHJCD", + "OrganizationName": "Internal Health and Medical Services LLC", "NPIID": "", - "OrganizationZipCode": "34698" + "OrganizationZipCode": "38138" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFIFCD", - "OrganizationName": "Beats Cardiology PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFHBD", + "OrganizationName": "Dallas Premier Heart and Vascular", "NPIID": "", - "OrganizationZipCode": "75024" + "OrganizationZipCode": "75243" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHJBA", - "OrganizationName": "Vittorio M Morreale MD PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFABDA", + "OrganizationName": "Jadav, Priti, MD", "NPIID": "", - "OrganizationZipCode": "48315-3140" + "OrganizationZipCode": "77479" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEBDD", - "OrganizationName": "Vidabuenamed, PLLC DBA DFW Interventional Pain Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDGGAA", + "OrganizationName": "Samaritan Family Health Center", "NPIID": "", - "OrganizationZipCode": "75038" + "OrganizationZipCode": "13601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHFECD", - "OrganizationName": "CARDIOVASCULAR CLINIC OF TEXAS, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBCBD", + "OrganizationName": "Sarasota OB GYN Associates, PA", "NPIID": "", - "OrganizationZipCode": "77054" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAJCA", - "OrganizationName": "OHS - Haddad Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDFBCD", + "OrganizationName": "Imad E. Tarabishy MD PA", "NPIID": "", - "OrganizationZipCode": "48120" + "OrganizationZipCode": "34613" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJCECD", - "OrganizationName": "UPPER CUMBERLAND OTOLARYNGOLOGY CLINIC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFJECD", + "OrganizationName": "Advanced Pain Anesthesia Consultants PC", "NPIID": "", - "OrganizationZipCode": "38501" + "OrganizationZipCode": "46311" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIJHCA", - "OrganizationName": "Advocate - Gopal Madhav, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJGGCA", + "OrganizationName": "Ashraf Farid, MD", "NPIID": "", - "OrganizationZipCode": "60805" + "OrganizationZipCode": "01655" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJJCCD", - "OrganizationName": "Wilson Almonte MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDFEBA", + "OrganizationName": "Mell \u0026 Jones Orthopedics, Ltd.", "NPIID": "", - "OrganizationZipCode": "77904" + "OrganizationZipCode": "63017" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECJBD", - "OrganizationName": "Belmont Anderson Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGFAA", + "OrganizationName": "Neurology Associates", "NPIID": "", - "OrganizationZipCode": "89146" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICJJCD", - "OrganizationName": "Axia MSO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFFABA", + "OrganizationName": "Advocate - James A Wilcox PC", "NPIID": "", - "OrganizationZipCode": "32246" + "OrganizationZipCode": "60010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCCCA", - "OrganizationName": "Advocate - Center for Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFAGBD", + "OrganizationName": "Bill Chang, MD", "NPIID": "", - "OrganizationZipCode": "60453" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEDCD", - "OrganizationName": "LIVING GEM PROFESSIONAL CORPORATION", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHCCD", + "OrganizationName": "Irshad Syed, MD, LLC dba Marietta Family Medicine", "NPIID": "", - "OrganizationZipCode": "85737" + "OrganizationZipCode": "30062" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHGGBA", - "OrganizationName": "Carl Vogel Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIBADD", + "OrganizationName": "East Memphis Healthcare LLC", "NPIID": "", - "OrganizationZipCode": "62005" + "OrganizationZipCode": "38119" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCIJBA", - "OrganizationName": "Preventive Care Network Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJJIBD", + "OrganizationName": "Atlantic Neurosurgical Specialists", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "07960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBBDA", - "OrganizationName": "Pulmonary \u0026 Critical Care Medicine Associates, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIIAAA", + "OrganizationName": "Kings Bay Medical", "NPIID": "", - "OrganizationZipCode": "17102" + "OrganizationZipCode": "11229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJBEAD", - "OrganizationName": "Angelo DiCenso MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFIEBD", + "OrganizationName": "Rheumatology of Central Indiana", "NPIID": "", - "OrganizationZipCode": "02919" + "OrganizationZipCode": "47304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIBJAD", - "OrganizationName": "Virginia Spine Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDHBCD", + "OrganizationName": "Medical Pain and Spine Care of Indiana", "NPIID": "", - "OrganizationZipCode": "20110" + "OrganizationZipCode": "46062" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCAEBA", - "OrganizationName": "Platte Valley Internal Medicine and Pulmonary", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBHAD", + "OrganizationName": "Digestive Health Associates", "NPIID": "", - "OrganizationZipCode": "80601" + "OrganizationZipCode": "34471" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBJAA", - "OrganizationName": "Christopher MD \u0026 Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGHHBA", + "OrganizationName": "Heartland Cardiology", "NPIID": "", - "OrganizationZipCode": "32539" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDBDD", - "OrganizationName": "Sleep Fit Medical, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJJAA", + "OrganizationName": "David Wexler, MD", "NPIID": "", - "OrganizationZipCode": "95476" + "OrganizationZipCode": "07066" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHCBD", - "OrganizationName": "David Braun MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBFBBA", + "OrganizationName": "Raymond I Huang, MD", "NPIID": "", - "OrganizationZipCode": "33701" + "OrganizationZipCode": "95124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADECAD", - "OrganizationName": "Us Helping Us", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHDDCD", + "OrganizationName": "RHEUMATOLOGY CARE ASSOCIATES PLLC", "NPIID": "", - "OrganizationZipCode": "20010" + "OrganizationZipCode": "34711" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFIABA", - "OrganizationName": "Four Seasons Pediatrics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDDFBA", + "OrganizationName": "Premier Health Care, Inc.", "NPIID": "", - "OrganizationZipCode": "12065" + "OrganizationZipCode": "33707" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHAFAA", - "OrganizationName": "Suncoast Community Health Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIGEBD", + "OrganizationName": "Institute of Precision Pain Medicine", "NPIID": "", - "OrganizationZipCode": "33570" + "OrganizationZipCode": "78414" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEHHBD", - "OrganizationName": "TEST-HCA-Ankle Foot Centers of Georgia", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCBICA", + "OrganizationName": "Duc M Nguyen MD FACS", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "94062" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDFGAA", - "OrganizationName": "Dr Benson Chin and Dr Lynn Lang", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDGAA", + "OrganizationName": "Romanowsky, MD, Mark", "NPIID": "", - "OrganizationZipCode": "95993" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBCCD", - "OrganizationName": "GOOD DERM, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBIIAD", + "OrganizationName": "Northeast Atlanta ENT", "NPIID": "", - "OrganizationZipCode": "90505" + "OrganizationZipCode": "77521" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDBEAA", - "OrganizationName": "WhitmanWalker", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHJCCD", + "OrganizationName": "Nitesh D Kuhadiya, MD MPH, PLLC", "NPIID": "", - "OrganizationZipCode": "20009" + "OrganizationZipCode": "89502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEAEAD", - "OrganizationName": "Concerto Healthcare, INC (Enterprise Directory)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHDADA", + "OrganizationName": "Elias M. Rifkah M.D.", "NPIID": "", - "OrganizationZipCode": "92614" + "OrganizationZipCode": "16601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJEBAA", - "OrganizationName": "Garden State Interventional Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEGCA", + "OrganizationName": "Excellence in Healthcare", "NPIID": "", - "OrganizationZipCode": "08759" + "OrganizationZipCode": "96001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEJIBD", - "OrganizationName": "Hope Physicians and Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFDDBA", + "OrganizationName": "Woodsmill Orthpedics", "NPIID": "", - "OrganizationZipCode": "28501" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFCAA", - "OrganizationName": "Del Mar Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGHHAA", + "OrganizationName": "NYCDOHMH - Khin Aung Medical PC", "NPIID": "", - "OrganizationZipCode": "92130" + "OrganizationZipCode": "11373" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBHBBD", - "OrganizationName": "TotalCare Emergency Room", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIBDCA", + "OrganizationName": "Spine Orthopaedic Specialists of South Carolina, PA", "NPIID": "", - "OrganizationZipCode": "76126" + "OrganizationZipCode": "29464" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCCBCD", - "OrganizationName": "Chatham Podiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBCAA", + "OrganizationName": "Austin Urological Associates", "NPIID": "", - "OrganizationZipCode": "02633" + "OrganizationZipCode": "78705" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDCJBD", - "OrganizationName": "Family Care Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGCDA", + "OrganizationName": "Quick Care Med, PL", "NPIID": "", - "OrganizationZipCode": "67156" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIHBD", - "OrganizationName": "The Bossier Eye Institute, APMC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEDEBD", + "OrganizationName": "Naples Rheumatology", "NPIID": "", - "OrganizationZipCode": "71111" + "OrganizationZipCode": "34102" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGJABD", - "OrganizationName": "Baltimore Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGGBA", + "OrganizationName": "Summit Digestive and Liver", "NPIID": "", - "OrganizationZipCode": "21229" + "OrganizationZipCode": "60181" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFCJAD", - "OrganizationName": "Greiner Orthopedics LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCJECD", + "OrganizationName": "Loudoun Neurology Associates", "NPIID": "", - "OrganizationZipCode": "64055" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFFCD", - "OrganizationName": "Mohan S Kumar MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHIEAA", + "OrganizationName": "Patrick M. Hatfield", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGCADA", - "OrganizationName": "Podiatric Medical Partners of Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJHGBD", + "OrganizationName": "Lakeland Physicians, LLC", "NPIID": "", - "OrganizationZipCode": "75224" + "OrganizationZipCode": "35565" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEADBD", - "OrganizationName": "Capitol Pain Institute, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEEDBA", + "OrganizationName": "Baycare - George B. Blake, MD PA", "NPIID": "", - "OrganizationZipCode": "78757" + "OrganizationZipCode": "33606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBFEBA", - "OrganizationName": "Ingleside Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAGEBA", + "OrganizationName": "Coosa Valley Medical Center", "NPIID": "", - "OrganizationZipCode": "19372" + "OrganizationZipCode": "35150" }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEIDBD", - "OrganizationName": "Idaho Heart Institute", + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJFBA", + "OrganizationName": "HCA - The Surgical Clinic", "NPIID": "", - "OrganizationZipCode": "83404" + "OrganizationZipCode": "37203" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHJFAA", - "OrganizationName": "George Wang", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFADD", + "OrganizationName": "Test Facility-Himanshu", "NPIID": "", - "OrganizationZipCode": "85212" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICFBD", - "OrganizationName": "Metropolitan Health Partners, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIIJBD", + "OrganizationName": "Frayser Medical Center", "NPIID": "", - "OrganizationZipCode": "33410" + "OrganizationZipCode": "38127" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHHBD", - "OrganizationName": "ANGELS NEUROLOGICAL CENTERS, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHICD", + "OrganizationName": "NMD MSO OPERATIONS LLC dba CommunityMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDJGAA", - "OrganizationName": "RheumEndoaffliate", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBHHAA", + "OrganizationName": "Pinellas Orthopedic Associates Lisa Flaherty, D.O.", "NPIID": "", - "OrganizationZipCode": "31201" + "OrganizationZipCode": "33709" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGICD", - "OrganizationName": "West Park Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHDAD", + "OrganizationName": "Sendas Northwest Urgent Care", "NPIID": "", - "OrganizationZipCode": "77351" + "OrganizationZipCode": "93311" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGJBD", - "OrganizationName": "Sleep Therapy and Research Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDAAAA", + "OrganizationName": "Brody Dermatology", "NPIID": "", - "OrganizationZipCode": "78229" + "OrganizationZipCode": "11030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJFBD", - "OrganizationName": "Family Medical Clinic Of McDonough", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGECD", + "OrganizationName": "Heart Rhythm Associates,PLLC", "NPIID": "", - "OrganizationZipCode": "30253" + "OrganizationZipCode": "32405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAHHBD", - "OrganizationName": "Suburban Surgical Associates Ltd", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEJBA", + "OrganizationName": "HCA - Electrophysiology Consultants of Florida", "NPIID": "", - "OrganizationZipCode": "60402" + "OrganizationZipCode": "33140" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJEAA", - "OrganizationName": "Paul D Jaychandra MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGHBD", + "OrganizationName": "Baxter Regional Medical Center", "NPIID": "", - "OrganizationZipCode": "32084" + "OrganizationZipCode": "72653" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAAFBD", - "OrganizationName": "Helix Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHEBA", + "OrganizationName": "Holistic Houston Pain Center, PA", "NPIID": "", - "OrganizationZipCode": "33441" + "OrganizationZipCode": "77479" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEFHAA", - "OrganizationName": "Coastal Carolina Neuropsychiatric Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDDFBA", + "OrganizationName": "BIDMC LGH - Eagle Medicine Associates", "NPIID": "", - "OrganizationZipCode": "28546" + "OrganizationZipCode": "01841" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDHGCA", - "OrganizationName": "Ankle and Foot Clinic of Oregon", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBAIAD", + "OrganizationName": "Meharry Medical College", "NPIID": "", - "OrganizationZipCode": "97206" + "OrganizationZipCode": "37208" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHBDA", - "OrganizationName": "Prime Rheumatology Clinic of Houston PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJIGCD", + "OrganizationName": "Caruso Foot and Ankle LLC", "NPIID": "", - "OrganizationZipCode": "77384" + "OrganizationZipCode": "07728" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCFAD", - "OrganizationName": "Family Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJEAA", + "OrganizationName": "Bend Spine Pain Specialists", "NPIID": "", - "OrganizationZipCode": "32806" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGFCCD", - "OrganizationName": "Central Nebraska Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCFIAA", + "OrganizationName": "Horizon Surgical Group", "NPIID": "", - "OrganizationZipCode": "68822" + "OrganizationZipCode": "20850" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEHAA", - "OrganizationName": "Kiumarce Kashi, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFADD", + "OrganizationName": "Limitless Male Test Site", "NPIID": "", - "OrganizationZipCode": "21222" + "OrganizationZipCode": "68144-2573" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAGHAD", - "OrganizationName": "Jay Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEIDBD", + "OrganizationName": "Andre Vasquez, MD", "NPIID": "", - "OrganizationZipCode": "30024" + "OrganizationZipCode": "77401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADBBD", - "OrganizationName": "Diagnostic Center of Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIJAA", + "OrganizationName": "Michael W. Chan, MD", "NPIID": "", - "OrganizationZipCode": "89117" + "OrganizationZipCode": "96701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGAAAA", - "OrganizationName": "Virginia Endocrinology and Osteoporosis Center, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBDAAA", + "OrganizationName": "Mission Ranch Primary Care", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95926" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JADCDA", - "OrganizationName": "Primary Care Associates of Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHGAD", + "OrganizationName": "Atlanta Kidney Specialists", "NPIID": "", - "OrganizationZipCode": "76104" + "OrganizationZipCode": "30274" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAIEBA", - "OrganizationName": "Sunil Shah, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEFHBD", + "OrganizationName": "Mukesh Patel MD", "NPIID": "", - "OrganizationZipCode": "60901" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIDFCD", - "OrganizationName": "Caldwell County Hospital, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFICA", + "OrganizationName": "Cardiovascular Institute", "NPIID": "", - "OrganizationZipCode": "42445" + "OrganizationZipCode": "77375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEGDBD", - "OrganizationName": "Midwest Therapeutic Endoscopy Consultants - MTEC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGDDAD", + "OrganizationName": "Saleem Saiyad LLC", "NPIID": "", - "OrganizationZipCode": "63131" + "OrganizationZipCode": "33635" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDDAA", - "OrganizationName": "Loudoun Community Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDDGCA", + "OrganizationName": "HCA - Digestive Liver Disease Consultants", "NPIID": "", - "OrganizationZipCode": "20176" + "OrganizationZipCode": "77090" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBIJCA", - "OrganizationName": "Orthopaedic Surgery Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHBCD", + "OrganizationName": "Markims Nephrology Network Inc", "NPIID": "", - "OrganizationZipCode": "91505" + "OrganizationZipCode": "71457" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJBCA", - "OrganizationName": "Steward - Neuro Institute of New England", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECBCD", + "OrganizationName": "Integrity Orthopedics", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77450" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCCAA", - "OrganizationName": "Marlboro Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIJIBD", + "OrganizationName": "TEXAS COASTAL BEND PULMONARY CRITICAL CARE ASSOCIATES", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78414" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGICCD", - "OrganizationName": "New Ananda Medical and Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCECD", + "OrganizationName": "Cornerstone Family Healthcare", "NPIID": "", - "OrganizationZipCode": "91733" + "OrganizationZipCode": "12518" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFBEAA", - "OrganizationName": "Cardiovascular Association, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEAIBD", + "OrganizationName": "MAHESH S OCHANEY MD", "NPIID": "", - "OrganizationZipCode": "77030" + "OrganizationZipCode": "21061" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGBBA", - "OrganizationName": "William E. Roundtree MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCEBA", + "OrganizationName": "Renal Consultants", "NPIID": "", - "OrganizationZipCode": "31906" + "OrganizationZipCode": "63136" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFDCD", - "OrganizationName": "The Idaho Clinic PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGDIBD", + "OrganizationName": "Peachtree Neurology Associates PC", "NPIID": "", - "OrganizationZipCode": "83704" + "OrganizationZipCode": "30342" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBFAD", - "OrganizationName": "Texas Behavioral Health, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHBDBD", + "OrganizationName": "Sahara Behavioral Health", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHAFAD", - "OrganizationName": "East Coast Nephrology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEEBD", + "OrganizationName": "Pulmonary Critical Care", "NPIID": "", - "OrganizationZipCode": "32174" + "OrganizationZipCode": "33462" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHIEBD", - "OrganizationName": "Advanced Pain Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBGABD", + "OrganizationName": "Quintana Family Medical", "NPIID": "", - "OrganizationZipCode": "98506" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADDAA", - "OrganizationName": "Skin Solutions Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBEIAD", + "OrganizationName": "Michigan Interventional Pain Assoc.", "NPIID": "", - "OrganizationZipCode": "37067" + "OrganizationZipCode": "48323" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACBCA", - "OrganizationName": "HCA - Waseem Peracha MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDFAA", + "OrganizationName": "Wilmington Dermatology Center, PLLC.", "NPIID": "", - "OrganizationZipCode": "77082" + "OrganizationZipCode": "28403" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDCCCA", - "OrganizationName": "Duck Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFGBDA", + "OrganizationName": "Universal Community Health Center", "NPIID": "", - "OrganizationZipCode": "37861" + "OrganizationZipCode": "90021" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAHCA", - "OrganizationName": "SMMH - Nabil Sultani, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCACAA", + "OrganizationName": "St. Pete ENT, LLC", "NPIID": "", - "OrganizationZipCode": "48154" + "OrganizationZipCode": "33713" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBHACA", - "OrganizationName": "HCA - Lafayette Arthritis And Endocrine Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDGCD", + "OrganizationName": "Interventional Spine and Pain Institute, LLC", "NPIID": "", - "OrganizationZipCode": "70506" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFCBA", - "OrganizationName": "Atlanta Center for Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIJAA", + "OrganizationName": "Adventist - William Mullins, M.D.", "NPIID": "", - "OrganizationZipCode": "30033" + "OrganizationZipCode": "20817" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAGHBA", - "OrganizationName": "Old Pueblo Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGIIBA", + "OrganizationName": "PPIN", "NPIID": "", - "OrganizationZipCode": "85712" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBJDCD", - "OrganizationName": "Arthritis and Rheumatology Institute, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJICD", + "OrganizationName": "Sequoia Multispecialty Medical Group", "NPIID": "", - "OrganizationZipCode": "75013" + "OrganizationZipCode": "93290" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFBBA", - "OrganizationName": "Huron Podiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECEIBD", + "OrganizationName": "Blue Ridge Pain Management", "NPIID": "", - "OrganizationZipCode": "44839" + "OrganizationZipCode": "24153" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EADGCD", - "OrganizationName": "SACHIN SINGH, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFBCA", + "OrganizationName": "Southwest Urologic Specialists", "NPIID": "", - "OrganizationZipCode": "95926" + "OrganizationZipCode": "85234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHIBCA", - "OrganizationName": "HCA - Armaghan Amy Mostafavi, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CICFBD", + "OrganizationName": "Abdul Aziz, MD", "NPIID": "", - "OrganizationZipCode": "33426" + "OrganizationZipCode": "34741" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBDCA", - "OrganizationName": "Cypress Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHJACD", + "OrganizationName": "Edward G. Mackay, M.D PA", "NPIID": "", - "OrganizationZipCode": "77429" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGFBBD", - "OrganizationName": "Kensington Valley Heart", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDACA", + "OrganizationName": "Bruce F. Levin, MD PA", "NPIID": "", - "OrganizationZipCode": "48381" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHHBBA", - "OrganizationName": "AZ Endocrinology Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBIBA", + "OrganizationName": "Advocate - Lincoln Pediatrics Center PC", "NPIID": "", - "OrganizationZipCode": "85306" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECBDD", - "OrganizationName": "Florida Spine Associates, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFFCD", + "OrganizationName": "Hillside Medical Office, LLC", "NPIID": "", - "OrganizationZipCode": "33431" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDGGAA", - "OrganizationName": "Samaritan Family Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDECD", + "OrganizationName": "Hepzibah Family Medical clinic", "NPIID": "", - "OrganizationZipCode": "13601" + "OrganizationZipCode": "96913" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFABBD", - "OrganizationName": "Malone Davis Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADGJCA", + "OrganizationName": "Arnot Health Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFFBA", - "OrganizationName": "MLH - Delaware Valley ID Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFBBBA", + "OrganizationName": "Marina Kuperman-Beade, MD", "NPIID": "", - "OrganizationZipCode": "19096" + "OrganizationZipCode": "02904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFIEBD", - "OrganizationName": "Rheumatology of Central Indiana", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCJBA", + "OrganizationName": "Shoals Kidney HTN Center", "NPIID": "", - "OrganizationZipCode": "47304" + "OrganizationZipCode": "35630" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIEAA", - "OrganizationName": "Victor A. Shada, D.O., P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIIJBA", + "OrganizationName": "Rai Kakkar MD", "NPIID": "", - "OrganizationZipCode": "38557" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGHCA", - "OrganizationName": "ACN Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGJCBD", + "OrganizationName": "Pohlman Pain Associates", "NPIID": "", - "OrganizationZipCode": "94030" + "OrganizationZipCode": "33065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAICAD", - "OrganizationName": "Allentown Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHIGAA", + "OrganizationName": "Mehdi Meratee, MD", "NPIID": "", - "OrganizationZipCode": "08514" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJAFCD", - "OrganizationName": "EASTERN NEW MEXICO FOOT ANKLE, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGCACA", + "OrganizationName": "Lowe and Andya Medical Associates", "NPIID": "", - "OrganizationZipCode": "88101" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFGBDA", - "OrganizationName": "Universal Community Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAFIAD", + "OrganizationName": "Premier Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFDDBA", - "OrganizationName": "Woodsmill Orthpedics", - "NPIID": "", - "OrganizationZipCode": "63017" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJACBD", - "OrganizationName": "Cardiovascular Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACCCD", + "OrganizationName": "Helmi Ltd. PLLC", "NPIID": "", - "OrganizationZipCode": "32174" + "OrganizationZipCode": "89148" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCCBAA", - "OrganizationName": "ADVANCE BREAST CARE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIFAA", + "OrganizationName": "Medical Consultants of Palm Beach", "NPIID": "", - "OrganizationZipCode": "30060" + "OrganizationZipCode": "33458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AICDBD", - "OrganizationName": "Eye Surgeons of Richmond, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGFFAD", + "OrganizationName": "Lori Gautreaux Bergeron LLC", "NPIID": "", - "OrganizationZipCode": "23226" + "OrganizationZipCode": "70570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHICD", - "OrganizationName": "NMD MSO OPERATIONS LLC dba CommunityMD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBHBDA", + "OrganizationName": "Paul E Kim MD", "NPIID": "", - "OrganizationZipCode": "30312" + "OrganizationZipCode": "92108" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJFCA", - "OrganizationName": "Lompoc Valley Cardio", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADDFBA", + "OrganizationName": "Ramtown Medical Center", "NPIID": "", - "OrganizationZipCode": "93438" + "OrganizationZipCode": "07731" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJFCAA", - "OrganizationName": "Southeast Podiatry, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJJCA", + "OrganizationName": "Michael A Barnett MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADGJCA", - "OrganizationName": "Arnot Health Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABEFCA", + "OrganizationName": "Shasta Regional Medical Center", "NPIID": "", - "OrganizationZipCode": "14905-1629" + "OrganizationZipCode": "96001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJEDAA", - "OrganizationName": "Rehan Ahmad, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDEECD", + "OrganizationName": "PALM BEACH HEART CLINIC,P.A", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33477" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDHHAD", - "OrganizationName": "Bashir Al kaddoumi MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEEGCA", + "OrganizationName": "Pain Centers Nationwide", "NPIID": "", - "OrganizationZipCode": "77070" + "OrganizationZipCode": "85382" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHBJAD", - "OrganizationName": "Riceland Rural Health Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEECBD", + "OrganizationName": "Christopher Arnold DO A Medical Corp", "NPIID": "", - "OrganizationZipCode": "77665" + "OrganizationZipCode": "93010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBFAA", - "OrganizationName": "Dr.Mario Rodrigues MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHFDBD", + "OrganizationName": "Grayson Digestive Health", "NPIID": "", - "OrganizationZipCode": "78582" + "OrganizationZipCode": "75012" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFADD", - "OrganizationName": "Limitless Male Test Site", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCGHAD", + "OrganizationName": "Khera Cardiology Center", "NPIID": "", - "OrganizationZipCode": "68144-2573" + "OrganizationZipCode": "85306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHDAD", - "OrganizationName": "Lake City Institute of Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAEBAA", + "OrganizationName": "Innovative Primary Care, LLC", "NPIID": "", - "OrganizationZipCode": "32055" + "OrganizationZipCode": "85234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIFGBA", - "OrganizationName": "Twin Peaks Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBFHBA", + "OrganizationName": "Premier Endocrinology", "NPIID": "", - "OrganizationZipCode": "80501" + "OrganizationZipCode": "34769" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHDBA", - "OrganizationName": "SA Medical Billing LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCHAAA", + "OrganizationName": "Grove Medical Associates, P.C.", "NPIID": "", - "OrganizationZipCode": "07470" + "OrganizationZipCode": "01610" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECCBD", - "OrganizationName": "Alma S Rigonan MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DECCCD", + "OrganizationName": "JASON MORRIS DPM PODIATRY CORPORATION", "NPIID": "", - "OrganizationZipCode": "78405" + "OrganizationZipCode": "92025" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGFFAD", - "OrganizationName": "Lori Gautreaux Bergeron LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHGHBA", + "OrganizationName": "Suburban Endocrinology Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JACJCA", - "OrganizationName": "Douglas Neurology Associates, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEIBA", + "OrganizationName": "Main Line Allergy", "NPIID": "", - "OrganizationZipCode": "30135" + "OrganizationZipCode": "19406" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBJAA", - "OrganizationName": "St. Joseph s/Candler Health System", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFEAA", + "OrganizationName": "Jackie Nguyen, MD", "NPIID": "", - "OrganizationZipCode": "31405" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGIEBA", - "OrganizationName": "BIDMC LGH - Riverside Nephrology PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGJDCD", + "OrganizationName": "Claiborne Memorial Medical Center", "NPIID": "", - "OrganizationZipCode": "1841" + "OrganizationZipCode": "71040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCECD", - "OrganizationName": "Cornerstone Family Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADHAA", + "OrganizationName": "Arnab Biswas D.O.", "NPIID": "", - "OrganizationZipCode": "12518" + "OrganizationZipCode": "92395" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHFIBA", - "OrganizationName": "Advocate - Pulmonary Sleep Medicine Clinic LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCABCA", + "OrganizationName": "Marc Cohen, M.D., Inc.", "NPIID": "", - "OrganizationZipCode": "60102" + "OrganizationZipCode": "91356" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHIAD", - "OrganizationName": "Insight Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHDAD", + "OrganizationName": "Alejandro J Betancourt MDPA", "NPIID": "", - "OrganizationZipCode": "77657" + "OrganizationZipCode": "78550" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAJCA", - "OrganizationName": "Spine and Sport Specialties Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHIBD", + "OrganizationName": "Pulmonics Plus", "NPIID": "", - "OrganizationZipCode": "92868" + "OrganizationZipCode": "75165" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHACD", - "OrganizationName": "Hisham Abukamleh MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJECCD", + "OrganizationName": "Advanced Vascular Associates", "NPIID": "", - "OrganizationZipCode": "93306" + "OrganizationZipCode": "07960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFIGAD", - "OrganizationName": "Zeidy Roche MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEAAA", + "OrganizationName": "Center For Family And Geriatric Medicine, S.C.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60005" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DECCCD", - "OrganizationName": "JASON MORRIS DPM PODIATRY CORPORATION", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBJBD", + "OrganizationName": "Dawn Atwal MD", "NPIID": "", - "OrganizationZipCode": "92025" + "OrganizationZipCode": "92651" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEADBD", - "OrganizationName": "Oasis Advanced Gastroenterology, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGCFCD", + "OrganizationName": "Premier Heart and Vascular, LLC", "NPIID": "", - "OrganizationZipCode": "92262" + "OrganizationZipCode": "85037" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGFFCA", - "OrganizationName": "Orange Medical Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDFHBD", + "OrganizationName": "The Doctor is at your door", "NPIID": "", - "OrganizationZipCode": "77630" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJICD", - "OrganizationName": "Sequoia Multispecialty Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAAEAA", + "OrganizationName": "Potomac Urology", "NPIID": "", - "OrganizationZipCode": "93290" + "OrganizationZipCode": "22191" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFICBA", - "OrganizationName": "HCA - Mark Jessen MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAJHBA", + "OrganizationName": "Arthritis \u0026 Osteoporosis", "NPIID": "", - "OrganizationZipCode": "42104" + "OrganizationZipCode": "71101" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDBFBA", - "OrganizationName": "Annesley Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJICD", + "OrganizationName": "Aaron J Affleck MD PA DBA", "NPIID": "", - "OrganizationZipCode": "19096" + "OrganizationZipCode": "83406" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGBCD", - "OrganizationName": "Redirect Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEFDCA", + "OrganizationName": "HCA - Allergy Arthritis Treatment Center", "NPIID": "", - "OrganizationZipCode": "85254" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFFGBA", - "OrganizationName": "OHS - Advanced Pulmonary Sleep Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEHADD", + "OrganizationName": "Neel French, M.D., S.C.", "NPIID": "", - "OrganizationZipCode": "48124" + "OrganizationZipCode": "60614" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBAFBD", - "OrganizationName": "Northeast Florida Health Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFEEBD", + "OrganizationName": "VERZOSA UNGAB INTERNAL MEDICINE", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "38134" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHFBA", - "OrganizationName": "Allergy \u0026 Asthma Clinic of Northwest Arkansas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDJBCD", + "OrganizationName": "Anderson Walk-In Medical Clinics", "NPIID": "", - "OrganizationZipCode": "72712" + "OrganizationZipCode": "96003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAAEAA", - "OrganizationName": "Potomac Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDACDA", + "OrganizationName": "veriMED Health Group Lakeland", "NPIID": "", - "OrganizationZipCode": "22191" + "OrganizationZipCode": "33805" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBGDBA", - "OrganizationName": "Digestive Disease Associates of Rockland, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEGABA", + "OrganizationName": "HCA - Frontier Medical Group", "NPIID": "", - "OrganizationZipCode": "10970" + "OrganizationZipCode": "79925" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJAGBA", - "OrganizationName": "Interventional Cardiology and Vascular Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCACBA", + "OrganizationName": "Tucson Endocrine Associates", "NPIID": "", - "OrganizationZipCode": "32803" + "OrganizationZipCode": "85704" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGJCBD", - "OrganizationName": "Pohlman Pain Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIGHBD", + "OrganizationName": "Joseph Labricciosa, MD", "NPIID": "", - "OrganizationZipCode": "33065" + "OrganizationZipCode": "19008" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICCDA", - "OrganizationName": "Sole Foot and Ankle Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIHFBD", + "OrganizationName": "Karen von Haam, MD", "NPIID": "", - "OrganizationZipCode": "85306" + "OrganizationZipCode": "02536" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDAGAA", - "OrganizationName": "MSA Chiropractic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJCACD", + "OrganizationName": "Associates of Ear, Nose and Throat Surgery", "NPIID": "", - "OrganizationZipCode": "31708" + "OrganizationZipCode": "75057" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBDGBA", - "OrganizationName": "Family First Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAJADD", + "OrganizationName": "Aeges LLC", "NPIID": "", - "OrganizationZipCode": "07755" + "OrganizationZipCode": "62249" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBCGBD", - "OrganizationName": "Atlanta Total Foot and Ankle Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFEAAA", + "OrganizationName": "Endocrinology, Diabetes and Osteoporosis Consultants, LLP", "NPIID": "", - "OrganizationZipCode": "30189" + "OrganizationZipCode": "10704" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBCAA", - "OrganizationName": "Proffer Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJIBA", + "OrganizationName": "Dover Pulmonary Associates", "NPIID": "", - "OrganizationZipCode": "79106" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDJCD", - "OrganizationName": "BHN - Blair T Butterfield DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGIACA", + "OrganizationName": "ID Care Associates", "NPIID": "", - "OrganizationZipCode": "85212" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAFIAD", - "OrganizationName": "Chetna Mital MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHCDCD", + "OrganizationName": "Cardiovascular Associates of Arizona", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAJADD", - "OrganizationName": "Aeges LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBHAD", + "OrganizationName": "Neuroversion", "NPIID": "", - "OrganizationZipCode": "62249" + "OrganizationZipCode": "99508" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCIBA", - "OrganizationName": "SHS - Prime Care Medical LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDECA", + "OrganizationName": "Georgia Pain Wellness", "NPIID": "", - "OrganizationZipCode": "06902" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEEGCA", - "OrganizationName": "Pain Centers Nationwide", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHABCD", + "OrganizationName": "Internal SAM Environment", "NPIID": "", - "OrganizationZipCode": "85382" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJIAA", - "OrganizationName": "HCA - Gastroeneterology and Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EECCBD", + "OrganizationName": "Cattail River Hematology and Medical Oncology", "NPIID": "", - "OrganizationZipCode": "33709" + "OrganizationZipCode": "20832" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHEAD", - "OrganizationName": "Family Medical Walkin(Gurley)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGIACA", + "OrganizationName": "Hemet Heart Medical Center", "NPIID": "", - "OrganizationZipCode": "86301" + "OrganizationZipCode": "92543" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBCGAA", - "OrganizationName": "Bonnabesse MD,Thierry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAFDBD", + "OrganizationName": "Vineyard Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACFBD", - "OrganizationName": "Gerard Varlotta, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCEJBA", + "OrganizationName": "MedStar - American Cardiology Nuclear Practice", "NPIID": "", - "OrganizationZipCode": "10017" + "OrganizationZipCode": "21237" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBFDAA", - "OrganizationName": "Schenk, MD, Jillen", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAFCDA", + "OrganizationName": "HealthWise Clinic", "NPIID": "", - "OrganizationZipCode": "96067" + "OrganizationZipCode": "76234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHDAD", - "OrganizationName": "Alejandro J Betancourt MDPA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCFBD", + "OrganizationName": "Ohio Pain and Rehab Specialists", "NPIID": "", - "OrganizationZipCode": "78550" + "OrganizationZipCode": "44720" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEGICD", - "OrganizationName": "George Edward Freeman, D.O., P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCFDCA", + "OrganizationName": "New Creek Family Medicine", "NPIID": "", - "OrganizationZipCode": "74745" + "OrganizationZipCode": "26726" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDGDAD", - "OrganizationName": "Shariar Cohen MD Corp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEGICD", + "OrganizationName": "George Edward Freeman, D.O., P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIEGCD", - "OrganizationName": "Desert Bloom Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDECBA", + "OrganizationName": "Bristol Hospital Multi-Specialty Group Inc", "NPIID": "", - "OrganizationZipCode": "85037" + "OrganizationZipCode": "06011" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIJFAD", - "OrganizationName": "Eliad Culcea MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJGFBA", + "OrganizationName": "Buford Medical Clinic", "NPIID": "", - "OrganizationZipCode": "59405" + "OrganizationZipCode": "30518" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJGBD", - "OrganizationName": "Rockford Pain Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBDBD", + "OrganizationName": "HeartCare Associates of Arizona", "NPIID": "", - "OrganizationZipCode": "61107" + "OrganizationZipCode": "85375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGEHAA", - "OrganizationName": "Sills Shawn, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAFDCA", + "OrganizationName": "Omega Practice Management, Inc.", "NPIID": "", - "OrganizationZipCode": "97504" + "OrganizationZipCode": "74133" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJIAAA", - "OrganizationName": "FCA-Cynthiana", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGDBBD", + "OrganizationName": "Tri-City Foot Ankle Center", "NPIID": "", - "OrganizationZipCode": "41031" + "OrganizationZipCode": "99352" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCEFAA", - "OrganizationName": "Family Allergy Asthma Care Consultants, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEGBD", + "OrganizationName": "Nephrology of North Alabama", "NPIID": "", - "OrganizationZipCode": "19904" + "OrganizationZipCode": "35601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEEBAA", - "OrganizationName": "Family Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIAIBD", + "OrganizationName": "Polyclinic Medical Center Inc.", "NPIID": "", - "OrganizationZipCode": "85546" + "OrganizationZipCode": "93305" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGFBD", - "OrganizationName": "Maui Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEBEBA", + "OrganizationName": "Lina Heath Harper, MD. PC.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "31501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBEEAD", - "OrganizationName": "Bellezza Womens Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAFBD", + "OrganizationName": "Advocare LLC", "NPIID": "", - "OrganizationZipCode": "86305" + "OrganizationZipCode": "08053" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEIGAA", - "OrganizationName": "Joel M. Berman MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBHFBD", + "OrganizationName": "Lake Allergy Asthma Immunology", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "32778" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBGACA", - "OrganizationName": "American Vision Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEDECA", + "OrganizationName": "Cardiology Center of Houston, P.A.", "NPIID": "", - "OrganizationZipCode": "01890" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDABA", - "OrganizationName": "Advocate - Reginald Spears MD LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EICDCA", + "OrganizationName": "Ameli Heart Center", "NPIID": "", - "OrganizationZipCode": "60047" + "OrganizationZipCode": "89117" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEEBD", - "OrganizationName": "CAN Community Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEIGAA", + "OrganizationName": "Joel M. Berman MD PA", "NPIID": "", - "OrganizationZipCode": "34237" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFGCA", - "OrganizationName": "Maryland Medical First P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFADBA", + "OrganizationName": "Radnor Family Practice", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19087" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEDBA", - "OrganizationName": "Maxa Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFCJBD", + "OrganizationName": "John P Malloy IV, DO", "NPIID": "", - "OrganizationZipCode": "30096" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCHCD", - "OrganizationName": "Keith Bangart DPM PC DBA Peoria Foot Ankle", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJABBA", + "OrganizationName": "Step Ahead Foot Care", "NPIID": "", - "OrganizationZipCode": "85390" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJJBCA", - "OrganizationName": "Advocate - Beatrisa Paz Averbuch MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBECA", + "OrganizationName": "Allergy Institute - CA", "NPIID": "", - "OrganizationZipCode": "60077" + "OrganizationZipCode": "93720" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHABCD", - "OrganizationName": "Internal SAM Environment", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEIACD", + "OrganizationName": "GuideWell Group, Inc. DCMG", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "32246" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEGBD", - "OrganizationName": "Lanham Internal Medicine Associates LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEDEBD", + "OrganizationName": "Advocare LLC_TEST1", "NPIID": "", - "OrganizationZipCode": "20770" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIIBA", - "OrganizationName": "Eastern Nephrology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIHEBD", + "OrganizationName": "Ali Achira, MD, PC", "NPIID": "", - "OrganizationZipCode": "35215" + "OrganizationZipCode": "48126" }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGDCBD", - "OrganizationName": "SJ C Medical Group OB-GYN", + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJDAD", + "OrganizationName": "Silvia Castillo-Sy MD", "NPIID": "", - "OrganizationZipCode": "31405" + "OrganizationZipCode": "78572" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBABD", - "OrganizationName": "Diabetes and Endocrine Center of Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFJAAA", + "OrganizationName": "Diabetes And Endocrinology Center Of Ohio", "NPIID": "", - "OrganizationZipCode": "32819" + "OrganizationZipCode": "43016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBDIBA", - "OrganizationName": "Arkansas Heart Hospital Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIGAAA", + "OrganizationName": "Urology Associates of Danbury", "NPIID": "", - "OrganizationZipCode": "72211" + "OrganizationZipCode": "06810" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHDDCA", - "OrganizationName": "Marc Behar MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEHCAA", + "OrganizationName": "Associates in Gastroenterology", "NPIID": "", - "OrganizationZipCode": "11530" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCCBBA", - "OrganizationName": "Sandlot - Tarrant County Infectious Disease Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFEDBA", + "OrganizationName": "Paoli Family Medicine", "NPIID": "", - "OrganizationZipCode": "76104" + "OrganizationZipCode": "19301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFGBD", - "OrganizationName": "Drs Shanahan and Ferguson PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGDCBD", + "OrganizationName": "SJ C Medical Group OB-GYN", "NPIID": "", - "OrganizationZipCode": "21620" + "OrganizationZipCode": "31405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIHAD", - "OrganizationName": "Willow Pain and Wellness LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCBCD", + "OrganizationName": "Valley ENT", "NPIID": "", - "OrganizationZipCode": "38655" + "OrganizationZipCode": "85224" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEGBD", - "OrganizationName": "Nephrology of North Alabama", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJIBA", + "OrganizationName": "Howard Goldman", "NPIID": "", - "OrganizationZipCode": "35601" + "OrganizationZipCode": "21237" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACACBD", - "OrganizationName": "Wilson Velazquez, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJHAD", + "OrganizationName": "RAJNIKANT KUSHWAHA, MD, PA", "NPIID": "", - "OrganizationZipCode": "78411" + "OrganizationZipCode": "77387" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADACD", - "OrganizationName": "Michigan Primary Care Partners", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHJGAA", + "OrganizationName": "Vascular and Vein Center, P.A.", "NPIID": "", - "OrganizationZipCode": "49307" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADACD", - "OrganizationName": "Capital Nephrology Clinic PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGDBA", + "OrganizationName": "HCA - Family Physicians of Kansas", "NPIID": "", - "OrganizationZipCode": "32308" + "OrganizationZipCode": "67002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIECD", - "OrganizationName": "Provas of Ogden, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGBJBA", + "OrganizationName": "All County Gastroenterology", "NPIID": "", - "OrganizationZipCode": "84403" + "OrganizationZipCode": "11570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEECAD", - "OrganizationName": "St Joseph s Medical Group, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHCJBA", + "OrganizationName": "Urologic Institute of the High Desert", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCCBA", - "OrganizationName": "Nacogdoches Pulmonary and Sleep Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAAECD", + "OrganizationName": "GEORGE H. GARCIA, M.D., INC.", "NPIID": "", - "OrganizationZipCode": "75961" + "OrganizationZipCode": "92868-2872" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCBBD", - "OrganizationName": "SWHR - BE WELL PRIMARY CARE MEDICINE, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCICD", + "OrganizationName": "Florida Medical Associates LLC dba My Health Team Office", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34471" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCAHCA", - "OrganizationName": "Moises Siperstein MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEJBA", + "OrganizationName": "Sierra Nevada ENT", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "89703" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIACA", - "OrganizationName": "ENT and Allergy Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIHJBA", + "OrganizationName": "HCA - Atlanta Allergy and Otolaryngology Centers", "NPIID": "", - "OrganizationZipCode": "19460" + "OrganizationZipCode": "30606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBHFCA", - "OrganizationName": "Great Lakes Foot Ankle Specialist", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHBBD", + "OrganizationName": "Port Jeff Medicine", "NPIID": "", - "OrganizationZipCode": "49684" + "OrganizationZipCode": "11776" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEIACD", - "OrganizationName": "GuideWell Group, Inc. DCMG", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCDDAD", + "OrganizationName": "McGreevy NeuroHealth", "NPIID": "", - "OrganizationZipCode": "32246" + "OrganizationZipCode": "32095" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJFBD", - "OrganizationName": "Ades and Castro", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJBFBA", + "OrganizationName": "Atlanta Allergy Asthma Clinic, PC", "NPIID": "", - "OrganizationZipCode": "61265" + "OrganizationZipCode": "30144" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCEFCD", - "OrganizationName": "Peripheral Vascular Partners of Boise LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCIBA", + "OrganizationName": "Sandip Parikh", "NPIID": "", - "OrganizationZipCode": "83642" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHCBD", - "OrganizationName": "AMITA - Mansoor Khan MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHDDCD", + "OrganizationName": "Baker Family Practice", "NPIID": "", - "OrganizationZipCode": "60007" + "OrganizationZipCode": "91723" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFJEBA", - "OrganizationName": "Medical and Aesthetic Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JACADA", + "OrganizationName": "20 20 Eye Specialists", "NPIID": "", - "OrganizationZipCode": "21046" + "OrganizationZipCode": "46404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GADEAA", - "OrganizationName": "Karen Turner", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBEEBD", + "OrganizationName": "Gramercy Pain Center", "NPIID": "", - "OrganizationZipCode": "31419" + "OrganizationZipCode": "07733" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGFBA", - "OrganizationName": "Advocate - Kirill Zhadovich, MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECIBD", + "OrganizationName": "PRECISION CARE WELLNESS, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19802" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHEHBA", - "OrganizationName": "Jon Yardney, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAHFBD", + "OrganizationName": "Center for Pain Medicine", "NPIID": "", - "OrganizationZipCode": "19087" + "OrganizationZipCode": "58104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCFIAA", - "OrganizationName": "UrologySpecialists of West Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHIAA", + "OrganizationName": "Houston Pulmonary Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77089" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJHEAA", - "OrganizationName": "Joseph Horgan, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFHICD", + "OrganizationName": "DREAM PHYSICIANS, LLC", "NPIID": "", - "OrganizationZipCode": "33028" + "OrganizationZipCode": "08820" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJACA", - "OrganizationName": "NMH - Lakeshore Adult and Geriatrics Medicine LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIEBA", + "OrganizationName": "Randall S. Lomax, DO", "NPIID": "", - "OrganizationZipCode": "60611" + "OrganizationZipCode": "89149" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEEAD", - "OrganizationName": "Rogers Foot and Ankle Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEECAD", + "OrganizationName": "St Joseph s Medical Group, LLC", "NPIID": "", - "OrganizationZipCode": "84003" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAIEAA", - "OrganizationName": "Luo Cameron MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECIBAA", + "OrganizationName": "Om Chaurasia, M.D.", "NPIID": "", - "OrganizationZipCode": "40217" + "OrganizationZipCode": "92691" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBHHBD", - "OrganizationName": "Advanced Neurologic Associates Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAIACA", + "OrganizationName": "Faster Care", "NPIID": "", - "OrganizationZipCode": "44811" + "OrganizationZipCode": "29150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBGBBA", - "OrganizationName": "Advent Neurology, SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIBDA", + "OrganizationName": "Wheatland Dermatology", "NPIID": "", - "OrganizationZipCode": "60005" + "OrganizationZipCode": "45885" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGHDAA", - "OrganizationName": "Fairhope Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEJBBA", + "OrganizationName": "Roper - Rheumatology Associates", "NPIID": "", - "OrganizationZipCode": "36532" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADBDBA", - "OrganizationName": "Amir Hassan MD, Laila Hassan MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBIGBD", + "OrganizationName": "Sathish and Radha IM Group", "NPIID": "", - "OrganizationZipCode": "77089" + "OrganizationZipCode": "25601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJDADD", - "OrganizationName": "Michigan Pain Consultants PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDFGBD", + "OrganizationName": "Russell County Hospital", "NPIID": "", - "OrganizationZipCode": "49503" + "OrganizationZipCode": "42642" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGFBBD", - "OrganizationName": "Li Yee Guo MD LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGJBBD", + "OrganizationName": "Comprehensive Neurosurgery, PLLC", "NPIID": "", - "OrganizationZipCode": "89117" + "OrganizationZipCode": "75056" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JABHAD", - "OrganizationName": "Community Health and Wellness Center of Greater Torrington", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDHEBA", + "OrganizationName": "OHS - Scott Grodman, DPM", "NPIID": "", - "OrganizationZipCode": "06790" + "OrganizationZipCode": "48180" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAHFBD", - "OrganizationName": "Center for Pain Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFCBA", + "OrganizationName": "TKFMC - Ashok Verma, MD", "NPIID": "", - "OrganizationZipCode": "58104" + "OrganizationZipCode": "93277" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DECFCD", - "OrganizationName": "THE NEUROLOGY INSTITUTE LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEGBCD", + "OrganizationName": "Association for Utah Community Health", "NPIID": "", - "OrganizationZipCode": "33067" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDJCA", - "OrganizationName": "Swedish - Foot Ankle Specialist, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GADEAA", + "OrganizationName": "Karen Turner", "NPIID": "", - "OrganizationZipCode": "60625" + "OrganizationZipCode": "31419" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEHIBA", - "OrganizationName": "Family Medical Associates, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBGBDA", + "OrganizationName": "Atlantic Neurosurgical and Spine Specialists", "NPIID": "", - "OrganizationZipCode": "47170" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDHICA", - "OrganizationName": "Barry V Thompson MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEJICA", + "OrganizationName": "Sardini Arthritis Center", "NPIID": "", - "OrganizationZipCode": "71635" + "OrganizationZipCode": "78240" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBHFAD", - "OrganizationName": "The Kidney Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAFBBA", + "OrganizationName": "Digestive Disease Consultants", "NPIID": "", - "OrganizationZipCode": "30241" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAGFAA", - "OrganizationName": "Robert Lenington, MD.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBICCD", + "OrganizationName": "Wisconsin Spine and Pain SC", "NPIID": "", - "OrganizationZipCode": "75482" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFGDBD", - "OrganizationName": "Westborough Podiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICIEBA", + "OrganizationName": "BIDMC LGH - Lawrence G Kidd MD PC", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "1841" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIBADD", - "OrganizationName": "Healthful Healthcare PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECJBDA", + "OrganizationName": "Central Virginia Health Services Inc", "NPIID": "", - "OrganizationZipCode": "85307" + "OrganizationZipCode": "23123" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAHAAA", - "OrganizationName": "Opthalmic Plastic Surgeons of Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDJBD", + "OrganizationName": "ChristiMD Medical Group", "NPIID": "", - "OrganizationZipCode": "77063" + "OrganizationZipCode": "77094" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFAIBA", - "OrganizationName": "Jorge Barros, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCHBDA", + "OrganizationName": "Cobb Nephrology Hypertension Associates, PC", "NPIID": "", - "OrganizationZipCode": "33028" + "OrganizationZipCode": "30106" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCHGAA", - "OrganizationName": "Heartland Cardiology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJGBA", + "OrganizationName": "Beckett Ridge Family Medicine", "NPIID": "", - "OrganizationZipCode": "67214" + "OrganizationZipCode": "45069" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDHEBA", - "OrganizationName": "OHS - Scott Grodman, DPM", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGIECA", + "OrganizationName": "Premier Family Clinic", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30341" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIAFBA", - "OrganizationName": "Susan Rife Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJFCA", + "OrganizationName": "HCA - Dr. Sheng-Yong Wang, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95116" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJGCCD", - "OrganizationName": "NORTH TEXAS FOOT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJJDBA", + "OrganizationName": "NYCDOHMH - Wuhua Jing MD, PhD, PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "10038" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIIBD", - "OrganizationName": "Dallas Ear Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBHHBD", + "OrganizationName": "Advanced Neurologic Associates Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "44811" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAGFAD", - "OrganizationName": "A Plus Pulmonary Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCAAA", + "OrganizationName": "Robert Tobar M.D", "NPIID": "", - "OrganizationZipCode": "85381" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFEEBA", - "OrganizationName": "Pinnacle ENT Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAGFCD", + "OrganizationName": "Rao Heart Vascular, LLC", "NPIID": "", - "OrganizationZipCode": "19087" + "OrganizationZipCode": "36303" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDBGCA", - "OrganizationName": "Texas Neuro Spine Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJJBD", + "OrganizationName": "Bristow Endeavor Healthcare, Inc.", "NPIID": "", - "OrganizationZipCode": "75203" + "OrganizationZipCode": "73103" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGFFBD", - "OrganizationName": "Kidney Specialists of Paducah and PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEHAA", + "OrganizationName": "Middle Tennessee Neurology Associates", "NPIID": "", - "OrganizationZipCode": "42003" + "OrganizationZipCode": "37076" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAEGBA", - "OrganizationName": "Advocate - Ghazanfai and Olivers Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDDBA", + "OrganizationName": "MLH - Devon Family Practice", "NPIID": "", - "OrganizationZipCode": "60657" + "OrganizationZipCode": "19333" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBJEAA", - "OrganizationName": "Campbell Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABIBD", + "OrganizationName": "San Antonio Podiatry Associates, PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCAIAD", - "OrganizationName": "Advanced Orthopedics Institute, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECJEBD", + "OrganizationName": "Frontier Gastroenterology and Hepatology LLC", "NPIID": "", - "OrganizationZipCode": "32159" + "OrganizationZipCode": "34655" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIGHCA", - "OrganizationName": "Endocrinology of Central Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBDAD", + "OrganizationName": "Wesley Community and Health Center", "NPIID": "", - "OrganizationZipCode": "32132" + "OrganizationZipCode": "85034" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEIHBD", - "OrganizationName": "Cleveland Medical Associates PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJHAD", + "OrganizationName": "Advanced Orthopedics of Oklahoma", "NPIID": "", - "OrganizationZipCode": "37312" + "OrganizationZipCode": "74136" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDGFCA", - "OrganizationName": "Khair Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFBCCA", + "OrganizationName": "MedStar - Roopali Gupta, M.D.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "20010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJHAA", - "OrganizationName": "NYCDOHMH - Union Tpke Medical P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHBCD", + "OrganizationName": "SHORELINE ORTHOPAEDIC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "49424" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJGBA", - "OrganizationName": "Beckett Ridge Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEDBCA", + "OrganizationName": "Etowah Gastroenterology Associates", "NPIID": "", - "OrganizationZipCode": "45069" + "OrganizationZipCode": "35903" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHCCD", - "OrganizationName": "Irshad Syed, MD, LLC dba Marietta Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCHGAA", + "OrganizationName": "Heartland Cardiology Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "67214" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIBAA", - "OrganizationName": "Carson Office", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDIJCA", + "OrganizationName": "Stephen K Waterbrook, MD, Inc", "NPIID": "", - "OrganizationZipCode": "89703" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFIJAA", - "OrganizationName": "Mojgan Morshedi, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDBFCD", + "OrganizationName": "Rheumatology Clinic Of Lima, LLC", "NPIID": "", - "OrganizationZipCode": "95032" + "OrganizationZipCode": "45801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCAFBD", - "OrganizationName": "Yeargain Foot and Ankle", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCEHAD", + "OrganizationName": "ALBA Pulmonary Group", "NPIID": "", - "OrganizationZipCode": "75249" + "OrganizationZipCode": "85224" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBIJBD", - "OrganizationName": "Pikes Peak ENT LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAJDBA", + "OrganizationName": "Kennestone Family Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30060" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFACDA", - "OrganizationName": "Foot and Ankle Surgery of New Braunfels", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCFAD", + "OrganizationName": "A M R Pain and Spine Clinic LLC", "NPIID": "", - "OrganizationZipCode": "78130" + "OrganizationZipCode": "63141" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJEBA", - "OrganizationName": "HCA - Family Foot and Ankle Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DICCDA", + "OrganizationName": "Cardiology Associates of Somerset County", "NPIID": "", - "OrganizationZipCode": "07871" + "OrganizationZipCode": "08800" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGFFBD", - "OrganizationName": "Doctor Today TLC LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGEBD", + "OrganizationName": "Suresh K Gupta MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBICCD", - "OrganizationName": "Premier Medical Doctors PPLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEABD", + "OrganizationName": "Daniel Heart Vascular Center", "NPIID": "", - "OrganizationZipCode": "77027" + "OrganizationZipCode": "33435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFHIBD", - "OrganizationName": "Manos Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABGGBD", + "OrganizationName": "Endocrine Associates of Mid-Cities", "NPIID": "", - "OrganizationZipCode": "19380" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHDAD", - "OrganizationName": "Middletown Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCBGBD", + "OrganizationName": "D G Medical Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "83642" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJFHBD", - "OrganizationName": "Health Education Assessment and Leadership", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFDCBA", + "OrganizationName": "Cumberland Family Practice", "NPIID": "", - "OrganizationZipCode": "30311" + "OrganizationZipCode": "37075" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEACAA", - "OrganizationName": "The Neurology Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJFBD", + "OrganizationName": "Lower Merion Rehabilitation Associates", "NPIID": "", - "OrganizationZipCode": "38018" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEFABA", - "OrganizationName": "HCA - Joseph M Caruso MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIAIBA", + "OrganizationName": "HCA - South Florida Center for Gynecologic Oncology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33487" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIGEBD", - "OrganizationName": "Institute of Precision Pain Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBECBA", + "OrganizationName": "Classen Medical Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "73118" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIDCDA", - "OrganizationName": "Advocate - ALR Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGICCA", + "OrganizationName": "Negrey Eye Associates", "NPIID": "", - "OrganizationZipCode": "60471" + "OrganizationZipCode": "19083" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEJAA", - "OrganizationName": "The Spine and Brain Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFEBCA", + "OrganizationName": "Center for Arthritis and Rheumatic Diseases", "NPIID": "", - "OrganizationZipCode": "89052" + "OrganizationZipCode": "23320" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBBEAA", - "OrganizationName": "Essence Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJECBA", + "OrganizationName": "Digestive Disease Specialists", "NPIID": "", - "OrganizationZipCode": "73112" + "OrganizationZipCode": "35903" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJGGCA", - "OrganizationName": "Ashraf Farid, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCGJBD", + "OrganizationName": "Ricardo A Garza, MD, PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBCBA", - "OrganizationName": "Sandlot - William J. Van Wyk, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAIGAD", + "OrganizationName": "Sacred Circle Health Care", "NPIID": "", - "OrganizationZipCode": "76104" + "OrganizationZipCode": "84111" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEGAD", - "OrganizationName": "Sugar Land Endocrine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBIBD", + "OrganizationName": "Valley Diabetes and Endocrinology", "NPIID": "", - "OrganizationZipCode": "77479" + "OrganizationZipCode": "78539" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEEAD", - "OrganizationName": "Todd J. Maltese, DO PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJHBD", + "OrganizationName": "Arizona Heart Arrhythmia Associates", "NPIID": "", - "OrganizationZipCode": "11779" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEGDBD", - "OrganizationName": "Katy Nephrology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEGDAA", + "OrganizationName": "Glenn Waldman MD", "NPIID": "", - "OrganizationZipCode": "77082" + "OrganizationZipCode": "91361" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAJGAA", - "OrganizationName": "Waleed Lashin MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBJHBD", + "OrganizationName": "Kavuri Collier Internal Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEIBA", + "OrganizationName": "Howard Hochster, M.D., PC", "NPIID": "", - "OrganizationZipCode": "07011" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEABD", - "OrganizationName": "Daniel Heart Vascular Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFBADD", + "OrganizationName": "Test Facility-tomcat_MSSQL_ev3", "NPIID": "", - "OrganizationZipCode": "33435" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJHBD", - "OrganizationName": "Premier Foot Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIIDAA", + "OrganizationName": "Allergy, Asthma Immunology Center", "NPIID": "", - "OrganizationZipCode": "39056" + "OrganizationZipCode": "62269" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACDBD", - "OrganizationName": "Welim Azinge, MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBDAD", + "OrganizationName": "Ohio Pain Clinic", "NPIID": "", - "OrganizationZipCode": "92243" + "OrganizationZipCode": "45458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIGBAA", - "OrganizationName": "North Alabama Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDABD", + "OrganizationName": "Delmarva Pain and Spine Center", "NPIID": "", - "OrganizationZipCode": "35611" + "OrganizationZipCode": "19713" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJHBD", - "OrganizationName": "Arizona Heart Arrhythmia Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJBIAA", + "OrganizationName": "South Coast Medical Group", "NPIID": "", - "OrganizationZipCode": "85016" + "OrganizationZipCode": "77901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAECBA", - "OrganizationName": "B V Chandramouli, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECIADA", + "OrganizationName": "Infectious Diseases and Internal Medicine Associates PC", "NPIID": "", - "OrganizationZipCode": "96001" + "OrganizationZipCode": "87102" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCGHBD", - "OrganizationName": "Prody Urology PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDBECD", + "OrganizationName": "Plaza Del Rio Eye Clinic, PC", "NPIID": "", - "OrganizationZipCode": "32904" + "OrganizationZipCode": "85381" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBGAAA", - "OrganizationName": "Mitchell S Gittelman DO PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIDBBD", + "OrganizationName": "Palma Sola Neurology Associates", "NPIID": "", - "OrganizationZipCode": "21804" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEIBA", - "OrganizationName": "Kidney Center of South Louisiana", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJBCA", + "OrganizationName": "Rivertown Psychiatry", "NPIID": "", - "OrganizationZipCode": "70301" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCIBCD", - "OrganizationName": "Legacy Medical LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFCAD", + "OrganizationName": "Premier Physician Centers Inc,", "NPIID": "", - "OrganizationZipCode": "58504" + "OrganizationZipCode": "44145" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGHBD", - "OrganizationName": "Baxter Regional Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEBGBA", + "OrganizationName": "South Shore", "NPIID": "", - "OrganizationZipCode": "72653" + "OrganizationZipCode": "02190" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJJAA", - "OrganizationName": "Alabama Digestive Disorders Center, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEBFCA", + "OrganizationName": "Ear Nose Throat Medical and Surgical Group, LLC", "NPIID": "", - "OrganizationZipCode": "35802" + "OrganizationZipCode": "06473" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJAACD", - "OrganizationName": "Beach Cities Orthopedics Sports Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJHBD", + "OrganizationName": "Premier Foot Clinic", "NPIID": "", - "OrganizationZipCode": "90266" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIABA", - "OrganizationName": "Advocate - Neurology Consultants, SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICEGAA", + "OrganizationName": "Southwest Heart and Vascular Care", "NPIID": "", - "OrganizationZipCode": "60429" + "OrganizationZipCode": "85364" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJDACD", - "OrganizationName": "Florida Digestive Health Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBJBD", + "OrganizationName": "MIDWEST PAIN CLINICS, P.C.", "NPIID": "", - "OrganizationZipCode": "34211" + "OrganizationZipCode": "68114" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEDCAA", - "OrganizationName": "Community Health Care, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBCCD", + "OrganizationName": "Northwest Mobile Health", "NPIID": "", - "OrganizationZipCode": "44614" + "OrganizationZipCode": "72762" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJBCA", - "OrganizationName": "Rivertown Psychiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJIAAA", + "OrganizationName": "Non-Surgical Orthopaedic Spine Center, PC", "NPIID": "", - "OrganizationZipCode": "31901" + "OrganizationZipCode": "30060" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDBCAA", - "OrganizationName": "Associates In Otolaryngology Head and Neck Surgery P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJBBCA", + "OrganizationName": "Footcare PA", "NPIID": "", - "OrganizationZipCode": "01609" + "OrganizationZipCode": "75010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIJBA", - "OrganizationName": "Gulf Coast Internist, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJJCA", + "OrganizationName": "Seema Malani, MD", "NPIID": "", - "OrganizationZipCode": "33710" + "OrganizationZipCode": "77450" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFDHCD", - "OrganizationName": "The Heart Center of Palm Coast", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDDICA", + "OrganizationName": "Wayne/ SJC Medical Group", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "31545" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBGCA", - "OrganizationName": "Pioneer Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJJCD", + "OrganizationName": "RINA HEALTH MEDICAL PRACTICE P.C.", "NPIID": "", - "OrganizationZipCode": "83713" + "OrganizationZipCode": "11210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDCBA", - "OrganizationName": "Fabian E. Espinosa, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJIAD", + "OrganizationName": "MAG - PMC Yale Family Care", "NPIID": "", - "OrganizationZipCode": "77901" + "OrganizationZipCode": "48097" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABGIAA", - "OrganizationName": "Stuart M. Homer MD and Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJJCBD", + "OrganizationName": "Test-Ramya Chiplunkar 21.137 MsSQL V11", "NPIID": "", - "OrganizationZipCode": "07011" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBHHAA", - "OrganizationName": "Pinellas Orthopedic Associates Lisa Flaherty, D.O.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHEBCA", + "OrganizationName": "Baylor - Texas Kidney Institute", "NPIID": "", - "OrganizationZipCode": "33709" + "OrganizationZipCode": "75231" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEBDA", - "OrganizationName": "Modern Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJBDA", + "OrganizationName": "North Texas Heart and Vascular", "NPIID": "", - "OrganizationZipCode": "77024" + "OrganizationZipCode": "76126" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFCFBD", - "OrganizationName": "AMITA - Heartland Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHEFAA", + "OrganizationName": "Bowling Green Dermatology Skin Cancer Specialists, PLLC", "NPIID": "", - "OrganizationZipCode": "60440" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDGBD", - "OrganizationName": "Tracy Byerly II MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICICAA", + "OrganizationName": "Advanced Dermatology Skin Surgery, PC", "NPIID": "", - "OrganizationZipCode": "78028" + "OrganizationZipCode": "08701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIGIBD", - "OrganizationName": "Bernard Schayes MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCJAAA", + "OrganizationName": "Cardinal Internal Medicine", "NPIID": "", - "OrganizationZipCode": "10075" + "OrganizationZipCode": "22192" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDDICA", - "OrganizationName": "Wayne/ SJC Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHJHBA", + "OrganizationName": "Internists Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19078" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIECD", - "OrganizationName": "Savannah Endocrinology,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGFABA", + "OrganizationName": "Ocean Family Gastroenterology", "NPIID": "", - "OrganizationZipCode": "31405" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCABD", - "OrganizationName": "William J Namen II and Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHDABA", + "OrganizationName": "Hampshire GI", "NPIID": "", - "OrganizationZipCode": "32257" + "OrganizationZipCode": "01062-3160" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHIHAA", - "OrganizationName": "HCA- Southern Tennessee Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCHAA", + "OrganizationName": "G A Valdez Associates Inc DBA FHP Geriatrics", "NPIID": "", - "OrganizationZipCode": "37398" + "OrganizationZipCode": "77375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIECAA", - "OrganizationName": "Trokhan, Eileen", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDGGAD", + "OrganizationName": "David Nehme, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34994" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCCFBD", - "OrganizationName": "Integrative Medicine - MO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFIBD", + "OrganizationName": "Pulmonary Medical Consultants, PA", "NPIID": "", - "OrganizationZipCode": "65053" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCHBA", - "OrganizationName": "Plymouth Ears Nose and Throat", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEJAD", + "OrganizationName": "Metropolitan Institute of Pain", "NPIID": "", - "OrganizationZipCode": "02360" + "OrganizationZipCode": "60607" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJEBD", - "OrganizationName": "Starmount Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFABBA", + "OrganizationName": "University Renal and Hypertension Consultants", "NPIID": "", - "OrganizationZipCode": "28208" + "OrganizationZipCode": "07105" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCFBA", - "OrganizationName": "George M. Elias, DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJDACD", + "OrganizationName": "Florida Digestive Health Specialists", "NPIID": "", - "OrganizationZipCode": "32703" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBDAAA", - "OrganizationName": "Mission Ranch Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACJBA", + "OrganizationName": "Woodlands Arthritis Clinic PA", "NPIID": "", - "OrganizationZipCode": "95926" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEAECD", - "OrganizationName": "Summit Foot and Ankle LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJGEAA", + "OrganizationName": "A Plus Medical Care PC, NYC DOHMH-BK", "NPIID": "", - "OrganizationZipCode": "84065" + "OrganizationZipCode": "11220" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFGJBA", - "OrganizationName": "William J. Lewis MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJBGCD", + "OrganizationName": "Hans Blaakman DPM LLC", "NPIID": "", - "OrganizationZipCode": "19096" + "OrganizationZipCode": "29303" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGFABA", - "OrganizationName": "Ocean Family Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHEEBD", + "OrganizationName": "The Vascular Group of Bradenton", "NPIID": "", - "OrganizationZipCode": "08755" + "OrganizationZipCode": "34210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICJCD", - "OrganizationName": "Adventist - Ravi Passi, M.D., P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGJDAD", + "OrganizationName": "Alabama Colon Gastro", "NPIID": "", - "OrganizationZipCode": "20850" + "OrganizationZipCode": "35801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBGABD", - "OrganizationName": "Quintana Family Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHDJCA", + "OrganizationName": "Southern Dutchess Family Practice / Edward Schneider, M.D.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "12590-2753" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEIFCD", - "OrganizationName": "ProVas of Salt Lake, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJAADA", + "OrganizationName": "Sycamore Medical Clinic", "NPIID": "", - "OrganizationZipCode": "84094" + "OrganizationZipCode": "75801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGGEAA", - "OrganizationName": "Dermatologic Surgery of the Carolinas,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBHBA", + "OrganizationName": "HCA - Ward Parkway Health Services", "NPIID": "", - "OrganizationZipCode": "29732" + "OrganizationZipCode": "66211" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDIAA", - "OrganizationName": "Rocky Mountain Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIICBD", + "OrganizationName": "Southern ENT Specialists", "NPIID": "", - "OrganizationZipCode": "80124" + "OrganizationZipCode": "30115" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJEBD", - "OrganizationName": "Zaheen Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBGBA", + "OrganizationName": "Matthews-Vu Healthcare for Children and Adults", "NPIID": "", - "OrganizationZipCode": "01845" + "OrganizationZipCode": "80920" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHIAA", - "OrganizationName": "Virginia Rheumatology Clinic - Sam s Club", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIIHBA", + "OrganizationName": "Daniel Kapp MD", "NPIID": "", - "OrganizationZipCode": "23320" + "OrganizationZipCode": "33401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJCGBD", - "OrganizationName": "Ted L Freeman MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFIEAD", + "OrganizationName": "North Texas Comprehensive Cardiology", "NPIID": "", - "OrganizationZipCode": "08724" + "OrganizationZipCode": "75092" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJJAD", - "OrganizationName": "SNMH - Bouchier Pritchett Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHBECA", + "OrganizationName": "Main Line Health - Gerard Miller, MD", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "19083" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEGAD", - "OrganizationName": "Dr. Laxmi Deepika Koya", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDGBD", + "OrganizationName": "Tracy Byerly II MD PA", "NPIID": "", - "OrganizationZipCode": "75067" + "OrganizationZipCode": "78028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGDIBD", - "OrganizationName": "Peachtree Neurology Associates PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJJGCD", + "OrganizationName": "Align Spine and Pain Institute, LLC", "NPIID": "", - "OrganizationZipCode": "30342" + "OrganizationZipCode": "30076" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGJDAD", - "OrganizationName": "Alabama Colon Gastro", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECEAA", + "OrganizationName": "Kidney and Hypertension Specialist P.A", "NPIID": "", - "OrganizationZipCode": "35801" + "OrganizationZipCode": "78550" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGGIAA", - "OrganizationName": "Communicare Health Centers, Redwood", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGCABA", + "OrganizationName": "Sarasota Vascular Specialists", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34232" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDFCCA", - "OrganizationName": "MLH-Irina Joukova, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFABD", + "OrganizationName": "Darrett Choy, MD", "NPIID": "", - "OrganizationZipCode": "19116" + "OrganizationZipCode": "96720" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJGCDA", - "OrganizationName": "South Island Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDFCD", + "OrganizationName": "Anna K. Hopla, M.D., PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "38237" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIGCA", - "OrganizationName": "Cancer Surgery Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHFAD", + "OrganizationName": "Primary Care and Wellness", "NPIID": "", - "OrganizationZipCode": "07601" + "OrganizationZipCode": "78332" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFBCA", - "OrganizationName": "Southwest Urologic Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJFCCA", + "OrganizationName": "Blue Water Neurology", "NPIID": "", - "OrganizationZipCode": "85234" + "OrganizationZipCode": "48059" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICDCD", - "OrganizationName": "Micah Berry, MD Inc. dba Sierra Nevada Orthopedic Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDEABA", + "OrganizationName": "Chesapeake Bay ENT", "NPIID": "", - "OrganizationZipCode": "95945-5083" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJHAA", - "OrganizationName": "HCA - Texoma Neurology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEHBA", + "OrganizationName": "STJ - Naber and Gill, MD s / Kenneth J Dziuba MD", "NPIID": "", - "OrganizationZipCode": "75092" + "OrganizationZipCode": "48080" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBCACA", - "OrganizationName": "Bucks Mont Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGAJAD", + "OrganizationName": "James M. Caskey, MD, PA and Angela Hafernick, MD, PA", "NPIID": "", - "OrganizationZipCode": "18964" + "OrganizationZipCode": "75904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDDCD", - "OrganizationName": "Adnan Afzal, MD, PA DBA Healing Hearts", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCJBD", + "OrganizationName": "David Areheart MD", "NPIID": "", - "OrganizationZipCode": "77304" + "OrganizationZipCode": "38555" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEAHBA", - "OrganizationName": "Oklahoma Surgical Group, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EICAAA", + "OrganizationName": "BRANDON DERMATOLOGY, P.A", "NPIID": "", - "OrganizationZipCode": "73112" + "OrganizationZipCode": "33511" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBACA", - "OrganizationName": "Rahim A Raoufi MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJABBA", + "OrganizationName": "Advocate-Head Neck and Cosmetic Surgery Associates Ltd", "NPIID": "", - "OrganizationZipCode": "93436" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCCHBD", - "OrganizationName": "Healthcare One Urgent Care and Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEAECD", + "OrganizationName": "Summit Foot and Ankle LLC", "NPIID": "", - "OrganizationZipCode": "73036" + "OrganizationZipCode": "84065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFABD", - "OrganizationName": "Darrett Choy, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIDAA", + "OrganizationName": "Marrietta Rheumatology", "NPIID": "", - "OrganizationZipCode": "96720" + "OrganizationZipCode": "30060" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CICFBD", - "OrganizationName": "Abdul Aziz, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDEBD", + "OrganizationName": "Red Sands Vein Laser Clinic", "NPIID": "", - "OrganizationZipCode": "34741" + "OrganizationZipCode": "84780" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJGCBD", - "OrganizationName": "Lopez Pain Management DBA Seaside Pain Spine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHFACA", + "OrganizationName": "Consultants In Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBHAA", - "OrganizationName": "Center for Digestive Diseases, P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDGFAA", + "OrganizationName": "TEXOMACARE , TEXOMA MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJIDAA", - "OrganizationName": "Main Street Medical Center of Crestview", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEGACD", + "OrganizationName": "Pain Consultants Of Atlanta", "NPIID": "", - "OrganizationZipCode": "32536" + "OrganizationZipCode": "30309" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJBCA", - "OrganizationName": "Manhattan Ortho", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIHBA", + "OrganizationName": "Diablo Digestive Care, Inc", "NPIID": "", - "OrganizationZipCode": "10128" + "OrganizationZipCode": "94523" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBEAA", - "OrganizationName": "Southwestern Colorado Ear, Nose and Throat Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGBCD", + "OrganizationName": "AHMED ELSHARKAWI, MD LLC", "NPIID": "", - "OrganizationZipCode": "81301" + "OrganizationZipCode": "31520" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDJHAA", - "OrganizationName": "Saeed, Shahid M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFDCDA", + "OrganizationName": "Mount Baker Rheumatology Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "98225" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAFIAD", - "OrganizationName": "Premier Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBACD", + "OrganizationName": "Intermed, Ltd.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60526" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCIAA", - "OrganizationName": "Sierra Nevada Memorial Hospital - Dr. Claydon", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBAGAA", + "OrganizationName": "THR-Pulmonary Associates of North Dalas", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "75010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEJBD", - "OrganizationName": "Palm Beach Heart and Vascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBFAD", + "OrganizationName": "PWMD Jorge O Diaz", "NPIID": "", - "OrganizationZipCode": "33461" + "OrganizationZipCode": "32746" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGFCAA", - "OrganizationName": "Yugal Maheswari", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGGECA", + "OrganizationName": "Advocate - Varsha Bhan, M.D. SC", "NPIID": "", - "OrganizationZipCode": "77703" + "OrganizationZipCode": "60429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDIJAA", - "OrganizationName": "Trinity Health System", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGGIAA", + "OrganizationName": "Communicare Health Centers, Redwood", + "NPIID": "", + "OrganizationZipCode": "95616" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDHAD", + "OrganizationName": "Aldor Pulmonary", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHFACA", - "OrganizationName": "Consultants In Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFADCA", + "OrganizationName": "Special Health Resources for Texas", "NPIID": "", - "OrganizationZipCode": "37421" + "OrganizationZipCode": "75602" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCIBD", - "OrganizationName": "Frostwood Family Medicine, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIJBAA", + "OrganizationName": "Gregory Tchejeyan, M.D., Inc.", "NPIID": "", - "OrganizationZipCode": "77024" + "OrganizationZipCode": "91360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEHGBA", - "OrganizationName": "Arnold L. Weg, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHDFBA", + "OrganizationName": "Romualdo Aragon", "NPIID": "", - "OrganizationZipCode": "11375" + "OrganizationZipCode": "81909" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACCCD", - "OrganizationName": "Helmi Ltd. PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEABCD", + "OrganizationName": "Mitt Lary Family Practice", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "35475" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJICD", - "OrganizationName": "Peabody Internal Medicine Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBCAA", + "OrganizationName": "Robin Fowler", "NPIID": "", - "OrganizationZipCode": "38053" + "OrganizationZipCode": "30014" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEADCA", - "OrganizationName": "John W. Lace, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHECD", + "OrganizationName": "DAN LE CARDIOLOGY DBA Advanced Cardiology", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "92683" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDBDA", - "OrganizationName": "Internal Medicine of Southeast GA.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFBGBD", + "OrganizationName": "TREASURE VALLEY UROLOGY PLLC", "NPIID": "", - "OrganizationZipCode": "31545" + "OrganizationZipCode": "83642" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEGBCD", - "OrganizationName": "Central Coast Foot and Ankle Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFFACA", + "OrganizationName": "Texas Neurosurgery LLP", "NPIID": "", - "OrganizationZipCode": "93465" + "OrganizationZipCode": "75246" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIFHAA", - "OrganizationName": "May River Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADHCAD", + "OrganizationName": "Terrace Family Health", "NPIID": "", - "OrganizationZipCode": "30033" + "OrganizationZipCode": "33617" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBDBA", - "OrganizationName": "HCA - Vickie Harrell, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIJBD", + "OrganizationName": "Main Street Family Medicine Inc", "NPIID": "", - "OrganizationZipCode": "32401" + "OrganizationZipCode": "38340" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBFHBA", - "OrganizationName": "Premier Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCDDCA", + "OrganizationName": "Tagrid Adili MD PA", "NPIID": "", - "OrganizationZipCode": "34769" + "OrganizationZipCode": "34983" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHDFBA", - "OrganizationName": "Romualdo Aragon", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFBHBA", + "OrganizationName": "HCA - Stanley H. Kim", "NPIID": "", - "OrganizationZipCode": "81909" + "OrganizationZipCode": "78758" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEGCAA", - "OrganizationName": "River Road Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCCHBD", + "OrganizationName": "Healthcare One Urgent Care and Family Practice", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "73036" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDBDD", - "OrganizationName": "Alamo Primary Care of Potranco PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJIGAA", + "OrganizationName": "Gastroenterology Associates of New Jersey", "NPIID": "", - "OrganizationZipCode": "78253" + "OrganizationZipCode": "07424" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCHAAA", - "OrganizationName": "Grove Medical Associates, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABBCD", + "OrganizationName": "Southwest Orthopaedic Clinic, P.a.", "NPIID": "", - "OrganizationZipCode": "01610" + "OrganizationZipCode": "79925" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFDBCD", - "OrganizationName": "Train_Unity Health Care Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEFBA", + "OrganizationName": "Associates in Gastroenterology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAJAA", - "OrganizationName": "HCA - MD Total Care, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGFICD", + "OrganizationName": "ST. VINCENT PREVENTATIVE FAMILY CARE", "NPIID": "", - "OrganizationZipCode": "37404" + "OrganizationZipCode": "90017" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIHFBD", - "OrganizationName": "Metro Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGHHCD", + "OrganizationName": "Gardens Neurology, PLLC", "NPIID": "", - "OrganizationZipCode": "30058" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJFFCA", - "OrganizationName": "Ability Rehab Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJACA", + "OrganizationName": "NMH - Lakeshore Adult and Geriatrics Medicine LTD", "NPIID": "", - "OrganizationZipCode": "21801" + "OrganizationZipCode": "60611" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEBBBA", - "OrganizationName": "Houston Neurology Associates, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEBIAA", + "OrganizationName": "Wilmington Endocrinology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "28403" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIDBAA", - "OrganizationName": "Bayes family Practice LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFFDBD", + "OrganizationName": "Urology Partners", "NPIID": "", - "OrganizationZipCode": "41240" + "OrganizationZipCode": "34205" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EADGAA", - "OrganizationName": "Twin City Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCJCA", + "OrganizationName": "Lansdowne Travel Family Medicine LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "20176" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EABGAA", - "OrganizationName": "Lone Star Ortho", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHBADA", + "OrganizationName": "Midtown Surgery Center", "NPIID": "", - "OrganizationZipCode": "76115" + "OrganizationZipCode": "31906" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHABA", - "OrganizationName": "Beaumont Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGFCCD", + "OrganizationName": "Marco Gutierrez, M.D. And Associates", "NPIID": "", - "OrganizationZipCode": "77706" + "OrganizationZipCode": "78516" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBJBD", - "OrganizationName": "Dawn Atwal MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFCBD", + "OrganizationName": "Oklahoma Center for Spine Pain Solutions, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEFBA", - "OrganizationName": "Associates in Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAGFAA", + "OrganizationName": "Robert Lenington, MD.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75482" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHABDD", - "OrganizationName": "Prairie Podiatry L.L.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDIJAA", + "OrganizationName": "Trinity Health System", "NPIID": "", - "OrganizationZipCode": "62704" + "OrganizationZipCode": "43952" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACDAA", - "OrganizationName": "Sitapara, MD, Ashish,", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFCCD", + "OrganizationName": "Advanced Urology of Sarasota", "NPIID": "", - "OrganizationZipCode": "18940" + "OrganizationZipCode": "34231" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHCDAD", - "OrganizationName": "Diabetes and Endocrinology Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JADIAD", + "OrganizationName": "Mohammed S. Qayyum MD Inc.", "NPIID": "", - "OrganizationZipCode": "30009" + "OrganizationZipCode": "95124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDFHBD", - "OrganizationName": "The Doctor is at your door", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBDAA", + "OrganizationName": "Malgorzata Gradzka MD", "NPIID": "", - "OrganizationZipCode": "78745" + "OrganizationZipCode": "22033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBDBA", - "OrganizationName": "OHS - Zachary H Lewis DO PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGFEAA", + "OrganizationName": "Rashid Mohammed", "NPIID": "", - "OrganizationZipCode": "48183" + "OrganizationZipCode": "11432" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHIDCD", - "OrganizationName": "TEXAS SURGERY CENTER, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCGCBD", + "OrganizationName": "VitalCare Family, LLC", "NPIID": "", - "OrganizationZipCode": "77340" + "OrganizationZipCode": "23832" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIFJBD", - "OrganizationName": "Florian Gegaj,MD LLC dba", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIGHCA", + "OrganizationName": "Endocrinology of Central Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAJFAA", - "OrganizationName": "NYCDOHMH-pfaff David MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEEIAA", + "OrganizationName": "Lake Havasu Lung and Sleep Disorder", "NPIID": "", - "OrganizationZipCode": "10306" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DABGAA", - "OrganizationName": "Comprehensive Cardiac Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEGCAD", + "OrganizationName": "Lawrence Katin, M.D.", "NPIID": "", - "OrganizationZipCode": "20016" + "OrganizationZipCode": "19301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJAFBA", - "OrganizationName": "BIDMC LGH - Methuen Podiatry Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDDJAA", + "OrganizationName": "PHA- Adult medicine", "NPIID": "", - "OrganizationZipCode": "01844" + "OrganizationZipCode": "19146" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJGAA", - "OrganizationName": "Southwest Surgery (Alexander Zilberman, M.D.)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEDBA", + "OrganizationName": "Pueblo Pulmonary Associates Professional LLP", "NPIID": "", - "OrganizationZipCode": "86403" + "OrganizationZipCode": "81004" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDCCA", - "OrganizationName": "Floyd D. Smith, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEJCBA", + "OrganizationName": "Valley Medical Center PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "18072" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHJEAA", - "OrganizationName": "CT Vascular Thoracic Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBBEAA", + "OrganizationName": "Essence Dermatology", "NPIID": "", - "OrganizationZipCode": "06852" + "OrganizationZipCode": "73112" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBDAA", - "OrganizationName": "Malgorzata Gradzka MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHECCD", + "OrganizationName": "Test - Alisa MySQL Trunk", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJJCD", - "OrganizationName": "Test_8080_Tammy Spear", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEGCAA", + "OrganizationName": "River Road Medical Group", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIHFBD", - "OrganizationName": "Karen von Haam, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIEAA", + "OrganizationName": "Inovia Specialty Vein Clinic", "NPIID": "", - "OrganizationZipCode": "02536" + "OrganizationZipCode": "97701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJCACD", - "OrganizationName": "Associates of Ear, Nose and Throat Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIFIAD", + "OrganizationName": "Lawrence L. Lin, MD", "NPIID": "", - "OrganizationZipCode": "75057" + "OrganizationZipCode": "91360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAJGBD", - "OrganizationName": "Advanced Heart and Vein Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFDCD", + "OrganizationName": "D.A. Campbell, MD, PA", "NPIID": "", - "OrganizationZipCode": "80202" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJHAD", - "OrganizationName": "Metrolyna Healthcare, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGCFBA", + "OrganizationName": "Orange County Neurology Clinic, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32837" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBHBCA", - "OrganizationName": "Abdallah Karam, MD, SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEEBA", + "OrganizationName": "Associates in Nephrology, PC", "NPIID": "", - "OrganizationZipCode": "60005" + "OrganizationZipCode": "16502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGJCA", - "OrganizationName": "Michael Nicoson MD - Hand and Wrist of Louisville, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBIEAA", + "OrganizationName": "Genesis Gynecology, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFGCDA", - "OrganizationName": "Ballard Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBHAA", + "OrganizationName": "Newport Coast Cardiology", "NPIID": "", - "OrganizationZipCode": "35594" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJEBA", - "OrganizationName": "Baycare Digestive Disease and Cancer Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIEEAD", + "OrganizationName": "Hanowell Spine Clinic", "NPIID": "", - "OrganizationZipCode": "34684" + "OrganizationZipCode": "30014" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHGBD", - "OrganizationName": "Sullivan County Internal Medicine, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJICD", + "OrganizationName": "Monmouth Cardiology Associates, LLC", "NPIID": "", - "OrganizationZipCode": "47879" + "OrganizationZipCode": "07724" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCADD", - "OrganizationName": "HOUSTON GASTRO INSTITUTE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHFDAA", + "OrganizationName": "Maxwell Medical PLLC.", "NPIID": "", - "OrganizationZipCode": "77494-3256" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIFIAD", - "OrganizationName": "Lawrence L. Lin, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHABA", + "OrganizationName": "Beaumont Family Practice", "NPIID": "", - "OrganizationZipCode": "91360" + "OrganizationZipCode": "77706" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJAJAA", - "OrganizationName": "Josephine D. Waite, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBGCAA", + "OrganizationName": "University Hematology", "NPIID": "", - "OrganizationZipCode": "96786" + "OrganizationZipCode": "33613" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDAJBA", - "OrganizationName": "Dallas Surgical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJAACD", + "OrganizationName": "Beach Cities Orthopedics Sports Medicine", "NPIID": "", - "OrganizationZipCode": "75230" + "OrganizationZipCode": "90266" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBCBD", - "OrganizationName": "Sarasota OB GYN Associates, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAADD", + "OrganizationName": "ALGOLOGY ASSOCIATES, P.C", "NPIID": "", - "OrganizationZipCode": "34239" + "OrganizationZipCode": "07012" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCEJBA", - "OrganizationName": "MedStar - American Cardiology Nuclear Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHJHBA", + "OrganizationName": "McKenzie Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIIAA", - "OrganizationName": "Theodore L. LePage, MD, FACC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAHIAD", + "OrganizationName": "Sudheer Karnati MD PA", "NPIID": "", - "OrganizationZipCode": "14626" + "OrganizationZipCode": "75904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCFBD", - "OrganizationName": "Ohio Pain and Rehab Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIHCA", + "OrganizationName": "First Coast Cardiovascular Institute", "NPIID": "", - "OrganizationZipCode": "44720" + "OrganizationZipCode": "32216" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDCBA", - "OrganizationName": "Advanced Cardiovascular Specialist", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDFHBA", + "OrganizationName": "OHS - Christopher Whitty, MD", "NPIID": "", - "OrganizationZipCode": "94040" + "OrganizationZipCode": "48193" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCFCBD", - "OrganizationName": "Advanced Center for Internal Medicine SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGEECD", + "OrganizationName": "Maheep Singh Birdi,MD", "NPIID": "", - "OrganizationZipCode": "60134" + "OrganizationZipCode": "93312" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJBBD", - "OrganizationName": "Columbus Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCABD", + "OrganizationName": "William J Namen II and Associates", "NPIID": "", - "OrganizationZipCode": "31904" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCGJAA", - "OrganizationName": "Alex Zand, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBHACD", + "OrganizationName": "Medical Associates of Terre Haute, LLC", "NPIID": "", - "OrganizationZipCode": "92868" + "OrganizationZipCode": "47802" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDAGBA", - "OrganizationName": "Mehran Shahsavari MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJAAAA", + "OrganizationName": "SOUTHEAST UROLOGY", "NPIID": "", - "OrganizationZipCode": "73071" + "OrganizationZipCode": "38120" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGIBCD", - "OrganizationName": "Uma Mohan MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHJEAA", + "OrganizationName": "CT Vascular Thoracic Surgical Associates", "NPIID": "", - "OrganizationZipCode": "77429" + "OrganizationZipCode": "06852" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAADD", - "OrganizationName": "ALGOLOGY ASSOCIATES, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEJBD", + "OrganizationName": "Pulmonary Sleep Specialists, PC", "NPIID": "", - "OrganizationZipCode": "07012" + "OrganizationZipCode": "30033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFAGBD", - "OrganizationName": "Bill Chang, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGICD", + "OrganizationName": "Medical Teams International", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "97224" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEDCCA", - "OrganizationName": "Jerald Garcia, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFBGBA", + "OrganizationName": "STJ - Associates in Obstetrics Gynecology, PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48374" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFFAD", - "OrganizationName": "Neuro Interventional Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFBBA", + "OrganizationName": "Sanaz Hariri, MD", "NPIID": "", - "OrganizationZipCode": "48162" + "OrganizationZipCode": "95032" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBHFBD", - "OrganizationName": "Lake Allergy Asthma Immunology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJGBD", + "OrganizationName": "CareLock, LLC", "NPIID": "", - "OrganizationZipCode": "32778" + "OrganizationZipCode": "85050" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJGCA", - "OrganizationName": "Premier Medical Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGGEAA", + "OrganizationName": "Dermatologic Surgery of the Carolinas,LLC", "NPIID": "", - "OrganizationZipCode": "33950" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGDBDA", - "OrganizationName": "Baominh, Vinh MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AABFCD", + "OrganizationName": "Citrus Pulmonary Consultants", "NPIID": "", - "OrganizationZipCode": "77065" + "OrganizationZipCode": "34429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEBEBA", - "OrganizationName": "Lina Heath Harper, MD. PC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEAFAD", + "OrganizationName": "Wound Care Specialists", "NPIID": "", - "OrganizationZipCode": "31501" + "OrganizationZipCode": "79413" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIFAD", - "OrganizationName": "Expert Pain Physicians LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIAECA", + "OrganizationName": "APU testing", "NPIID": "", - "OrganizationZipCode": "60462" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJEIAA", - "OrganizationName": "Mohinder Singh Poonia MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJIADD", + "OrganizationName": "Dinesh Bhambhavani MD", "NPIID": "", - "OrganizationZipCode": "93710" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAJCCD", - "OrganizationName": "KIDNEY HEALTH SPECIALISTS,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFJBD", + "OrganizationName": "Pain Management Specialists P.A", "NPIID": "", - "OrganizationZipCode": "33024" + "OrganizationZipCode": "29169" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGHHBA", - "OrganizationName": "Heartland Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFJAA", + "OrganizationName": "Ashesh Devendra Desai, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAAGCA", - "OrganizationName": "M. Douglas Gossman, MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBACA", + "OrganizationName": "Rahim A Raoufi MD Inc", "NPIID": "", - "OrganizationZipCode": "40299" + "OrganizationZipCode": "93436" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFJAD", - "OrganizationName": "CGHN - Scarborough Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCADD", + "OrganizationName": "HOUSTON GASTRO INSTITUTE", "NPIID": "", - "OrganizationZipCode": "31216" + "OrganizationZipCode": "77494-3256" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFBBA", - "OrganizationName": "Sanaz Hariri, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBDBA", + "OrganizationName": "Cardiac and Vascular Consultants", "NPIID": "", - "OrganizationZipCode": "95032" + "OrganizationZipCode": "32162" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDGAA", - "OrganizationName": "Romanowsky, MD, Mark", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAIDBA", + "OrganizationName": "Cornwall Neurology", "NPIID": "", - "OrganizationZipCode": "01854" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGJBA", - "OrganizationName": "Long Island Cardiovascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJHAA", + "OrganizationName": "Rehab Medicine \u0026 EMG Center", "NPIID": "", - "OrganizationZipCode": "11030" + "OrganizationZipCode": "30281" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIGAAA", - "OrganizationName": "Urology Associates of Danbury", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDBCD", + "OrganizationName": "Christopher Park, DO", "NPIID": "", - "OrganizationZipCode": "06810" + "OrganizationZipCode": "38863" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJEAD", - "OrganizationName": "Southampton Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADHCDA", + "OrganizationName": "Urology Center of So Fl", "NPIID": "", - "OrganizationZipCode": "63139" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAEFAD", - "OrganizationName": "B. Dixit, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGIICD", + "OrganizationName": "Northwest Family Physicians LLC", "NPIID": "", - "OrganizationZipCode": "31901" + "OrganizationZipCode": "67205" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABFBA", - "OrganizationName": "Advocate - Gastroenterology Services LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEHGBA", + "OrganizationName": "Arnold L. Weg, MD", "NPIID": "", - "OrganizationZipCode": "60515" + "OrganizationZipCode": "11375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIEDBD", - "OrganizationName": "Joseph P. Camero, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIICA", + "OrganizationName": "Etowah Center for Internal Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "35906" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFJAAA", - "OrganizationName": "Diabetes And Endocrinology Center Of Ohio", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFDBCD", + "OrganizationName": "Drs Bonet and Doyle PTRS", "NPIID": "", - "OrganizationZipCode": "43016" + "OrganizationZipCode": "60525" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIBDCA", - "OrganizationName": "Spine Orthopaedic Specialists of South Carolina, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHECCD", + "OrganizationName": "Orthopedic Specialists", "NPIID": "", - "OrganizationZipCode": "29464" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFEIAA", - "OrganizationName": "Fuquay Opthalmology and Glaucoma", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJGEBA", + "OrganizationName": "Nassim Haddad, MD, PLLC", "NPIID": "", - "OrganizationZipCode": "27526" + "OrganizationZipCode": "85258" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBEFCD", - "OrganizationName": "Kelly Schultz, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHAGBD", + "OrganizationName": "Comprehensive Primary Care, LLC", "NPIID": "", - "OrganizationZipCode": "85032" + "OrganizationZipCode": "30046" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAICAA", - "OrganizationName": "INTERVENTIONAL CARDIOLOGY ASSOCIATES", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDAGBA", + "OrganizationName": "Mehran Shahsavari MD", "NPIID": "", - "OrganizationZipCode": "77450" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFGCAA", - "OrganizationName": "Asthma Allergy Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIDBAA", + "OrganizationName": "Bayes family Practice LLC", "NPIID": "", - "OrganizationZipCode": "02301" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJHAA", - "OrganizationName": "Rehab Medicine \u0026 EMG Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCHCAA", + "OrganizationName": "Kansas City Foot Specialists, PA", "NPIID": "", - "OrganizationZipCode": "30281" + "OrganizationZipCode": "66213" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFDDBA", - "OrganizationName": "NYCDOHMH - Brett Wu, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIHDCD", + "OrganizationName": "Megha Mohey MD PC", "NPIID": "", - "OrganizationZipCode": "11354" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBIFCA", - "OrganizationName": "Cranberry Square Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEICCD", + "OrganizationName": "Synergy Orthopedic Specialists Medical Group", "NPIID": "", - "OrganizationZipCode": "02660" + "OrganizationZipCode": "92121" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDJFBD", - "OrganizationName": "Ling Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDIEBA", + "OrganizationName": "CT Rehabilitation Spasticity Care LLC.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "06489" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHIFAD", - "OrganizationName": "Vero Beach Neurology and Research Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJBDCD", + "OrganizationName": "Kidney Center of North Houston P.A.", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEJBA", - "OrganizationName": "Sierra Nevada ENT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAGFAA", + "OrganizationName": "Irfan Imami, M.D", "NPIID": "", - "OrganizationZipCode": "89703" + "OrganizationZipCode": "32901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHIEAA", - "OrganizationName": "Patrick M. Hatfield", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJAFBA", + "OrganizationName": "BIDMC LGH - Methuen Podiatry Associates", "NPIID": "", - "OrganizationZipCode": "72501" + "OrganizationZipCode": "01844" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAGEAA", - "OrganizationName": "Houston Cardiac Association", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCHHBA", + "OrganizationName": "Peter Grant M.D.", "NPIID": "", - "OrganizationZipCode": "77025" + "OrganizationZipCode": "60302" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJAAA", - "OrganizationName": "Laredo Dermatology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHABA", + "OrganizationName": "Texas Skin Surgery Center", "NPIID": "", - "OrganizationZipCode": "78041" + "OrganizationZipCode": "75093" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCICD", - "OrganizationName": "Florida Medical Associates LLC dba My Health Team Office", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCBHAD", + "OrganizationName": "Medford Leas CCRC", "NPIID": "", - "OrganizationZipCode": "34471" + "OrganizationZipCode": "08055" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFDAD", - "OrganizationName": "Family Clinic Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFHAA", + "OrganizationName": "North Urology Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75069" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEICCD", - "OrganizationName": "Synergy Orthopedic Specialists Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBGCBD", + "OrganizationName": "Texas Heart Center", "NPIID": "", - "OrganizationZipCode": "92121" + "OrganizationZipCode": "77521" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGHAD", - "OrganizationName": "Nephrology Group of Northeast Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFJAD", + "OrganizationName": "CGHN - Scarborough Family Medicine", "NPIID": "", - "OrganizationZipCode": "32216" + "OrganizationZipCode": "31216" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CACGBD", - "OrganizationName": "Rajiv Agarwal", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFHHCD", + "OrganizationName": "Peter S. Birnbaum DO Inc", "NPIID": "", - "OrganizationZipCode": "77338" + "OrganizationZipCode": "92801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFCCCA", - "OrganizationName": "Clinica Tepeyac", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJAJAA", + "OrganizationName": "Josephine D. Waite, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIIJBD", - "OrganizationName": "Frayser Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEFCA", + "OrganizationName": "Cobb Physicians Group", "NPIID": "", - "OrganizationZipCode": "38127" + "OrganizationZipCode": "30106" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEFBD", - "OrganizationName": "Loudoun Cardiology PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADHAA", + "OrganizationName": "Hawaii Pacific Neuroscience, LLC", "NPIID": "", - "OrganizationZipCode": "20166" + "OrganizationZipCode": "96813" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFJCA", - "OrganizationName": "Jason A. Seiden, M.D., P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIHHBA", + "OrganizationName": "East Texas Medical Specialties", "NPIID": "", - "OrganizationZipCode": "76028" + "OrganizationZipCode": "75965" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDICA", - "OrganizationName": "Cardiac Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBJCAA", + "OrganizationName": "Zelyko Zic MD Inc", "NPIID": "", - "OrganizationZipCode": "77707" + "OrganizationZipCode": "90731" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIEBA", - "OrganizationName": "Randall S. Lomax, DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIEBD", + "OrganizationName": "The Vaz Clinic, P.A", "NPIID": "", - "OrganizationZipCode": "89149" + "OrganizationZipCode": "78629" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEJADA", - "OrganizationName": "KSC Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJCBD", + "OrganizationName": "Physicians Clinic of Iowa", "NPIID": "", - "OrganizationZipCode": "33881" + "OrganizationZipCode": "52403" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGCHCA", - "OrganizationName": "Lower Keys Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJEIAA", + "OrganizationName": "Mohinder Singh Poonia MD Inc", "NPIID": "", - "OrganizationZipCode": "33040" + "OrganizationZipCode": "93710" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJCHBA", - "OrganizationName": "SCAPS Medical LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIGBD", + "OrganizationName": "Highland Internal Medicine, PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30525" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDDFBA", - "OrganizationName": "BIDMC LGH - Eagle Medicine Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDFJCD", + "OrganizationName": "Baal Perazim Wellness, Inc.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60657" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDHBA", - "OrganizationName": "Davenport Pediatrics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBEFCD", + "OrganizationName": "Kelly Schultz, LLC", "NPIID": "", - "OrganizationZipCode": "33837" + "OrganizationZipCode": "85032" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAGBAA", - "OrganizationName": "Regional Health Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBCBA", + "OrganizationName": "Be Well Clinic", "NPIID": "", - "OrganizationZipCode": "31707" + "OrganizationZipCode": "48072" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHIAA", - "OrganizationName": "Houston Pulmonary Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFFCD", + "OrganizationName": "Patricia A. Larson, M.D. Associates", "NPIID": "", - "OrganizationZipCode": "77089" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEFCA", - "OrganizationName": "Cobb Physicians Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIGAA", + "OrganizationName": "Cardio Spec of OC Santa Ana", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIJCAD", - "OrganizationName": "Max-Med Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHDIBA", + "OrganizationName": "Jay P. Diliberto, M.D.", "NPIID": "", - "OrganizationZipCode": "33165" + "OrganizationZipCode": "92648" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIIADD", - "OrganizationName": "Magnolia Lane Pediatrics, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFEIAA", + "OrganizationName": "Fuquay Opthalmology and Glaucoma", "NPIID": "", - "OrganizationZipCode": "77433" + "OrganizationZipCode": "27526" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHGHBA", - "OrganizationName": "Advocate - Midwestern Institute of Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADGCD", + "OrganizationName": "Florida Premier Cardiology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33484" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEIDBD", - "OrganizationName": "Andre Vasquez, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFCEBA", + "OrganizationName": "The Olsen Clinic", "NPIID": "", - "OrganizationZipCode": "77401" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBBICD", - "OrganizationName": "Southwest Cardiovascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEBFBA", + "OrganizationName": "Cardio Vascular Consultants- CA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "93637" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBACA", - "OrganizationName": "Eastern Surgical Associates, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFCCCA", + "OrganizationName": "Clinica Tepeyac", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "80216" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDCGBD", - "OrganizationName": "Texas Pain Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCGBD", + "OrganizationName": "Connelley Family Medical, PLLC", "NPIID": "", - "OrganizationZipCode": "75240" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICGHCA", - "OrganizationName": "Medical PMC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJAAA", + "OrganizationName": "Laredo Dermatology Associates", "NPIID": "", - "OrganizationZipCode": "48328" + "OrganizationZipCode": "78041" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJEBD", - "OrganizationName": "Interventional Pain Consultants LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCFHAD", + "OrganizationName": "Jamie W. Cox, MD PLLC", "NPIID": "", - "OrganizationZipCode": "62002" + "OrganizationZipCode": "73533" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHDBD", - "OrganizationName": "Mark P Batrice, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJACA", + "OrganizationName": "Ian L Bourhill MD", "NPIID": "", - "OrganizationZipCode": "76015" + "OrganizationZipCode": "11743-7930" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGDDAD", - "OrganizationName": "Saleem Saiyad LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBCABA", + "OrganizationName": "HCA - Mukesh Patel, MD, PA", "NPIID": "", - "OrganizationZipCode": "33635" + "OrganizationZipCode": "34667" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIGAA", - "OrganizationName": "Cardio Spec of OC Santa Ana", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIIADD", + "OrganizationName": "Magnolia Lane Pediatrics, PLLC", "NPIID": "", - "OrganizationZipCode": "92705" + "OrganizationZipCode": "77433" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIECCA", - "OrganizationName": "Arkansas Methodist", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJIAA", + "OrganizationName": "HCA-Krishnababu Chunduri MD", "NPIID": "", - "OrganizationZipCode": "72450" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEGBCD", - "OrganizationName": "Association for Utah Community Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JADEBD", + "OrganizationName": "Jassi Primary Care PA", "NPIID": "", - "OrganizationZipCode": "84107" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGFCCA", - "OrganizationName": "Advocate - Miller Foot Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABFEBA", + "OrganizationName": "Dharmendra Verma", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBAIAA", - "OrganizationName": "Active Life", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAFJAD", + "OrganizationName": "CenterWell Senior Primary Care", "NPIID": "", - "OrganizationZipCode": "06611" + "OrganizationZipCode": "40202" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCAAA", - "OrganizationName": "Robert Tobar M.D", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGICBD", + "OrganizationName": "Gastroenterology Center, PA", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "76028" }, { "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDACA", @@ -7069,2566 +6985,2554 @@ "OrganizationZipCode": "95602-7407" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGEBA", - "OrganizationName": "Advocate - Millennium Park Medical Associates", - "NPIID": "", - "OrganizationZipCode": "60603" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEAIBD", - "OrganizationName": "MAHESH S OCHANEY MD", - "NPIID": "", - "OrganizationZipCode": "21061" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFBCA", - "OrganizationName": "Reading Foot \u0026 Ankle Specialists,PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGCHCA", + "OrganizationName": "Lower Keys Urology", "NPIID": "", - "OrganizationZipCode": "01867" + "OrganizationZipCode": "33040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDCECA", - "OrganizationName": "Joseph Ippolito MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFECDA", + "OrganizationName": "Brooke R Uptagrafft, MD, PC", "NPIID": "", - "OrganizationZipCode": "83301" + "OrganizationZipCode": "35801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDFBA", - "OrganizationName": "Voyage Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAGCCA", + "OrganizationName": "IRINA A MININA MD PLLC", "NPIID": "", - "OrganizationZipCode": "55445" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAIAAA", - "OrganizationName": "Canadian Family Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCJDAA", + "OrganizationName": "Nash Chulamorkodt", "NPIID": "", - "OrganizationZipCode": "79014" + "OrganizationZipCode": "85364" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAFDCA", - "OrganizationName": "PrimaCARE, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJGBA", + "OrganizationName": "STJ - Digestive Health Associates PLC", "NPIID": "", - "OrganizationZipCode": "02722" + "OrganizationZipCode": "48334" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGICCD", - "OrganizationName": "SWHR - Allen Dr. Careing INC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAJDAD", + "OrganizationName": "Medstrip LLC", "NPIID": "", - "OrganizationZipCode": "75002" + "OrganizationZipCode": "30662" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBAAA", - "OrganizationName": "Anil George, M.D PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJBFBD", + "OrganizationName": "Conviva Care Solutions, LLC", "NPIID": "", - "OrganizationZipCode": "32209" + "OrganizationZipCode": "33155" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GECDBA", - "OrganizationName": "Advocate - Mukesh C Jain MD FACC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGDJBA", + "OrganizationName": "Southwest Cancer Center", "NPIID": "", - "OrganizationZipCode": "60602" + "OrganizationZipCode": "32819" }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDIJCA", - "OrganizationName": "Stephen K Waterbrook, MD, Inc", + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBIGBA", + "OrganizationName": "Dow Pulmonary", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "75013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGIECA", - "OrganizationName": "Premier Family Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADCCA", + "OrganizationName": "Pulmonary and Sleep Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBBBA", - "OrganizationName": "Advocate - Charles A Amenta III MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGECBD", + "OrganizationName": "Naima Cheema, M.D.", "NPIID": "", - "OrganizationZipCode": "60430" + "OrganizationZipCode": "30076" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIBDD", - "OrganizationName": "Instant Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICGHCA", + "OrganizationName": "Medical PMC", "NPIID": "", - "OrganizationZipCode": "95111" + "OrganizationZipCode": "48328" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHCDA", - "OrganizationName": "Michigan Pain Management Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AECICD", + "OrganizationName": "Resolute Physicians Medical Group, PC", "NPIID": "", - "OrganizationZipCode": "48374" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAJDAD", - "OrganizationName": "Medstrip LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGHHBD", + "OrganizationName": "LUIS F ANEZ, MD, PA", "NPIID": "", - "OrganizationZipCode": "30662" + "OrganizationZipCode": "32257" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHEBCA", - "OrganizationName": "St Louis Minimally Invasive Spine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHACBA", + "OrganizationName": "Digestive Disease Associates of Central Flordia", "NPIID": "", - "OrganizationZipCode": "63128-2197" + "OrganizationZipCode": "33812" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFGGAA", - "OrganizationName": "Jackson Purchase Pulmonary Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACGBA", + "OrganizationName": "STJ - Drs Dubay, Jacobs, Orfanou, and Silapaswan", "NPIID": "", - "OrganizationZipCode": "42066" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDIBA", - "OrganizationName": "Advocate - Dolly Thomas MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEHAA", + "OrganizationName": "TKFMC - Adolph Nava, MD", "NPIID": "", - "OrganizationZipCode": "6634" + "OrganizationZipCode": "93291-5121" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDIBD", - "OrganizationName": "Northwest Mississippi Otolaryngology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFGJBD", + "OrganizationName": "Go Care", "NPIID": "", - "OrganizationZipCode": "38672" + "OrganizationZipCode": "71291" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEBBDA", - "OrganizationName": "Mountain View Rehabilitation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFDFAA", + "OrganizationName": "Heslin, Eugene P. MD", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "12477" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFECDA", - "OrganizationName": "Brooke R Uptagrafft, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJCCA", + "OrganizationName": "Somerset Surgical Associates LLC", "NPIID": "", - "OrganizationZipCode": "35801" + "OrganizationZipCode": "08876" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJBBD", - "OrganizationName": "Diley Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIAGCA", + "OrganizationName": "Koman Orthopaedics and Sports Medicine", "NPIID": "", - "OrganizationZipCode": "43110" + "OrganizationZipCode": "21136" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJABA", - "OrganizationName": "Advocate - Phillip Markowitz", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBICBD", + "OrganizationName": "Gastroenterology Associates, PC", "NPIID": "", - "OrganizationZipCode": "60068" + "OrganizationZipCode": "11553" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBECBA", - "OrganizationName": "Classen Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBGDAD", + "OrganizationName": "Internal - Labcorp", "NPIID": "", - "OrganizationZipCode": "73118" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCFCAD", - "OrganizationName": "Neurology Clinic of Jacksonville", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAFHBA", + "OrganizationName": "Blair Nephrology Associates", "NPIID": "", - "OrganizationZipCode": "32256" + "OrganizationZipCode": "16601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFBCCA", - "OrganizationName": "MedStar - Roopali Gupta, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHFGCA", + "OrganizationName": "Central Florida Breast Center", "NPIID": "", - "OrganizationZipCode": "20010" + "OrganizationZipCode": "32792" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIAICA", - "OrganizationName": "OHS - Michigan Neuroscience Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDCECA", + "OrganizationName": "Joseph Ippolito MD PLLC", "NPIID": "", - "OrganizationZipCode": "48180" + "OrganizationZipCode": "83301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHFCA", - "OrganizationName": "Vascular Thoracic Associates of Los Angeles", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDFBA", + "OrganizationName": "Gaither G. Davis, M.D.", "NPIID": "", - "OrganizationZipCode": "90266" + "OrganizationZipCode": "34667" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHIAA", - "OrganizationName": "Berry and Fallon, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGIFBA", + "OrganizationName": "STJ - Internal Medicine Plus", "NPIID": "", - "OrganizationZipCode": "93465" + "OrganizationZipCode": "48334" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFDIBD", - "OrganizationName": "Desoto Thyroid and Endocrinology, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGAEAD", + "OrganizationName": "CHRISTINE P LEWIS MD", "NPIID": "", - "OrganizationZipCode": "38672" + "OrganizationZipCode": "21742" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AECICD", - "OrganizationName": "Resolute Physicians Medical Group, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHDBBA", + "OrganizationName": "Don Mehrab, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "90212" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDCEAD", - "OrganizationName": "J. Barton Williams MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJJDBA", + "OrganizationName": "Pulmonology Associates, Inc.", "NPIID": "", - "OrganizationZipCode": "39705" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGIAD", - "OrganizationName": "Accumed Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAAJAD", + "OrganizationName": "TEST- The Little Clinic-TLC", "NPIID": "", - "OrganizationZipCode": "60005" + "OrganizationZipCode": "37214" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEIBA", - "OrganizationName": "Howard Hochster, M.D., PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIFHBD", + "OrganizationName": "Western Carolina Ear, Nose", "NPIID": "", - "OrganizationZipCode": "10461" + "OrganizationZipCode": "28721" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABIJAA", - "OrganizationName": "Canfield, Kris MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHJCA", + "OrganizationName": "HCA - Shashi S Bellur MD PA", "NPIID": "", - "OrganizationZipCode": "82717" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHAGAA", - "OrganizationName": "Royal Care Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFGBD", + "OrganizationName": "Nephrology Consultants", "NPIID": "", - "OrganizationZipCode": "38343" + "OrganizationZipCode": "32114" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFDFAA", - "OrganizationName": "Heslin, Eugene P. MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJEBAA", + "OrganizationName": "Shore Cardiology Consultants", "NPIID": "", - "OrganizationZipCode": "12477" + "OrganizationZipCode": "08724" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCCBDD", - "OrganizationName": "Whole Care Pediatrics, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIEICA", + "OrganizationName": "AIP - Pinnacle Care Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJJHAA", - "OrganizationName": "Walk-In Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHEBCA", + "OrganizationName": "St Louis Minimally Invasive Spine Center", "NPIID": "", - "OrganizationZipCode": "49684" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCCABA", - "OrganizationName": "Advocate - Metro Medical Group LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHCCD", + "OrganizationName": "Trahan Medical Corporation", "NPIID": "", - "OrganizationZipCode": "60805" + "OrganizationZipCode": "70570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADDCA", - "OrganizationName": "OHS - Dearborn Cardiology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEGBA", + "OrganizationName": "Jasper Diagnostic Clinic", "NPIID": "", - "OrganizationZipCode": "48124" + "OrganizationZipCode": "75951" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCBGBD", - "OrganizationName": "D G Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBEFBA", + "OrganizationName": "STJ - Michigan Spine and Brain Surgeons PLLC", "NPIID": "", - "OrganizationZipCode": "83642" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBADAA", - "OrganizationName": "Kitsap General Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGEGAA", + "OrganizationName": "North Quabbin Family Practice", "NPIID": "", - "OrganizationZipCode": "98383" + "OrganizationZipCode": "01331" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGGAA", - "OrganizationName": "NYCDOHMH-Downtown Renal P. C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGDCCA", + "OrganizationName": "Advocate - Sheridan Medical Center", "NPIID": "", - "OrganizationZipCode": "10013" + "OrganizationZipCode": "60613" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJCCA", - "OrganizationName": "Somerset Surgical Associates LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEECAA", + "OrganizationName": "Endocrine and Diabetes Associates, LLC", "NPIID": "", - "OrganizationZipCode": "08876" + "OrganizationZipCode": "20817" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIIAA", - "OrganizationName": "Asad Zaman, MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEACD", + "OrganizationName": "Grant Memorial Hospital Clinics", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "26847" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEBFCA", - "OrganizationName": "Ear Nose Throat Medical and Surgical Group, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDCBAA", + "OrganizationName": "The Little Clinic", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "40223" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBBECA", - "OrganizationName": "Munson Behavioral Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDEADA", + "OrganizationName": "Arizona Center for Pain Relief (Scottsdale Location)", "NPIID": "", - "OrganizationZipCode": "49684" + "OrganizationZipCode": "85258" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADAHCA", - "OrganizationName": "The Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIFBA", + "OrganizationName": "J Mark Morales", "NPIID": "", - "OrganizationZipCode": "30328" + "OrganizationZipCode": "78404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAAJAD", - "OrganizationName": "TEST- The Little Clinic-TLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJEJAD", + "OrganizationName": "Means Adult Primary Care Clinic", "NPIID": "", - "OrganizationZipCode": "37214" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDDEBA", - "OrganizationName": "Bruce Morrison,DO P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGAJCA", + "OrganizationName": "Razi Medical Group", "NPIID": "", - "OrganizationZipCode": "19006" + "OrganizationZipCode": "92307" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADECD", - "OrganizationName": "PAIN MANAGEMENT OF NORTH DALLAS,P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEBHBD", + "OrganizationName": "McBride Orthopedic Hospital", "NPIID": "", - "OrganizationZipCode": "75034" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEGGBD", - "OrganizationName": "Associates in Plastic Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CICDAA", + "OrganizationName": "Edward Leahey, M.D. PA.", "NPIID": "", - "OrganizationZipCode": "19063" + "OrganizationZipCode": "77521" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBJCA", - "OrganizationName": "Brian F Gruber MD LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIGBD", + "OrganizationName": "PVC Management, LLC", "NPIID": "", - "OrganizationZipCode": "85050" + "OrganizationZipCode": "33312" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGHFAA", - "OrganizationName": "Bright McConnell, III, MD, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJHBA", + "OrganizationName": "H R Medical Practice", "NPIID": "", - "OrganizationZipCode": "29492" + "OrganizationZipCode": "48127" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBIBD", - "OrganizationName": "Valley Diabetes and Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFFBCA", + "OrganizationName": "Advocate - Northwest Chicago Primary Care, SC", "NPIID": "", - "OrganizationZipCode": "78539" + "OrganizationZipCode": "60634" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIIBA", - "OrganizationName": "Baycare - Martha A. Price, M.D., PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBFHAD", + "OrganizationName": "Eastern Utah Spine and Pain", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "84501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IACHBA", - "OrganizationName": "West Shore Health Centers Corporation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIBAA", + "OrganizationName": "Pulmonary Associates of Stockton, GP", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHHBD", - "OrganizationName": "Oklahoma Pain Institute, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEFCBA", + "OrganizationName": "SNMH - Dr Kuldip Gill, Inc", "NPIID": "", - "OrganizationZipCode": "73115" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJBDA", - "OrganizationName": "North Texas Heart and Vascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHHAA", + "OrganizationName": "Mainline Health Systems, Inc.", "NPIID": "", - "OrganizationZipCode": "76126" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCBACD", - "OrganizationName": "Woodlands Heart Vascular Institute, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDCFAA", + "OrganizationName": "Placer Dermatology Skin Care Center", "NPIID": "", - "OrganizationZipCode": "77380" + "OrganizationZipCode": "95745" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDCBAA", - "OrganizationName": "The Little Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADDCA", + "OrganizationName": "OHS - Dearborn Cardiology Associates", "NPIID": "", - "OrganizationZipCode": "40223" + "OrganizationZipCode": "48124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDFBA", - "OrganizationName": "Gaither G. Davis, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBGCBD", + "OrganizationName": "Jacksonville Spine Center", "NPIID": "", - "OrganizationZipCode": "34667" + "OrganizationZipCode": "32256" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDJAD", - "OrganizationName": "Regenerative Medicine and Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDABBD", + "OrganizationName": "North Texas Surgical Specialists, PLLC", "NPIID": "", - "OrganizationZipCode": "32563" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBADBD", - "OrganizationName": "BHN - Sobel Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFJCD", + "OrganizationName": "FHIR R4 Production Sandbox EMR", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGHCD", - "OrganizationName": "BOZEMAN CREEK FAMILY HEALTH, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEDIBA", + "OrganizationName": "Penn Psychiatric Center", "NPIID": "", - "OrganizationZipCode": "59715" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHCIAD", - "OrganizationName": "Altorelli Health, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDDFCD", + "OrganizationName": "MEDISWAN LLC dba Dr. G Medical Solutions", "NPIID": "", - "OrganizationZipCode": "06777" + "OrganizationZipCode": "77351" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAIGBA", - "OrganizationName": "Tennessee Rheumatology Center for Inflammatory Disease", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEJAAA", + "OrganizationName": "Telluride Medical Center", "NPIID": "", - "OrganizationZipCode": "37203" + "OrganizationZipCode": "81435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEEIAA", - "OrganizationName": "Northwest Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFHCCA", + "OrganizationName": "Advocate - Hoffman-Barrington Internal Medicine Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDABAA", - "OrganizationName": "Burchfield Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIJAD", + "OrganizationName": "Starling Clinic", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75503" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECIADA", - "OrganizationName": "Infectious Diseases and Internal Medicine Associates PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBEAD", + "OrganizationName": "Washington Center for Pain Management", "NPIID": "", - "OrganizationZipCode": "87102" + "OrganizationZipCode": "98004" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDIJAD", - "OrganizationName": "Eileen Turbessi MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJAFAA", + "OrganizationName": "Bread for the City, INC.", "NPIID": "", - "OrganizationZipCode": "33070" + "OrganizationZipCode": "20001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFIBD", - "OrganizationName": "Pulmonary Medical Consultants, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHCHBD", + "OrganizationName": "Specialists in Pain Management", "NPIID": "", - "OrganizationZipCode": "77375" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EABCDA", - "OrganizationName": "Bassan and Bloom, MDs, PL", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIGCD", + "OrganizationName": "Milestone Pediatrics S.C.", "NPIID": "", - "OrganizationZipCode": "33140" + "OrganizationZipCode": "53226" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHHAA", - "OrganizationName": "Mainline Health Systems, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBJJAD", + "OrganizationName": "Hometown Urgent Care", "NPIID": "", - "OrganizationZipCode": "71638" + "OrganizationZipCode": "38024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJJADA", - "OrganizationName": "Bernadette Santos, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGIAD", + "OrganizationName": "ANSAARIE CARDIAC ENDOVASCULAR CENTER", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32092" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDEBD", - "OrganizationName": "Absentee Shawnee Tribal Health System", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGAEBD", + "OrganizationName": "Deep Creek Colon and Rectal Surgery", "NPIID": "", - "OrganizationZipCode": "73026" + "OrganizationZipCode": "22101" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIFHBD", - "OrganizationName": "Western Carolina Ear, Nose", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICHAA", + "OrganizationName": "South Bay Cardiovascular Center", "NPIID": "", - "OrganizationZipCode": "28721" + "OrganizationZipCode": "95037" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHECBA", - "OrganizationName": "NYCDOHMH - Ching-Yin Lam, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHIBD", + "OrganizationName": "Fort Norfolk Plaza Cardiology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "23510" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIBDBD", - "OrganizationName": "Sri Sastry MD Bethesda Retinal, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDCBD", + "OrganizationName": "Advanced Heart and Vascular Associates", "NPIID": "", - "OrganizationZipCode": "20602" + "OrganizationZipCode": "34667" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFHICD", - "OrganizationName": "Sankineni Rao M.D., LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAGGBA", + "OrganizationName": "Advocate - Palatine Heart Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIGCD", - "OrganizationName": "South County Foot Ankle Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBJCA", + "OrganizationName": "Brian F Gruber MD LTD", "NPIID": "", - "OrganizationZipCode": "02888" + "OrganizationZipCode": "85050" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGHCCA", - "OrganizationName": "Neurology Associates of Ormond Beach", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCGECA", + "OrganizationName": "Washington Healthcare Services Inc", "NPIID": "", - "OrganizationZipCode": "32174" + "OrganizationZipCode": "15301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDECBA", - "OrganizationName": "Advocate - Mokena Foot Ankle Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBHDAA", + "OrganizationName": "Kalani, MD, Equbal", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34689" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBHBA", - "OrganizationName": "HCA - Ward Parkway Health Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDJDCA", + "OrganizationName": "Godwin DSouza, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60634" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIBBD", - "OrganizationName": "Neurology and Sleep Clinic - TX", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFAFBA", + "OrganizationName": "HCA - Thyroid Endocrine Center of Florida", "NPIID": "", - "OrganizationZipCode": "75010" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACIFBA", - "OrganizationName": "Jitesh Patel", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDCAA", + "OrganizationName": "Central Oregon ENT", "NPIID": "", - "OrganizationZipCode": "30078" + "OrganizationZipCode": "97701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJAFAA", - "OrganizationName": "Bread for the City, INC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHAEAA", + "OrganizationName": "Medcom Health Services, PA.", "NPIID": "", - "OrganizationZipCode": "20001" + "OrganizationZipCode": "08232" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEFJAA", - "OrganizationName": "Rheumatology Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJAAAA", + "OrganizationName": "Prime Medic P A", "NPIID": "", - "OrganizationZipCode": "77573" + "OrganizationZipCode": "77327" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGGBDA", - "OrganizationName": "Temple Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGHCD", + "OrganizationName": "BOZEMAN CREEK FAMILY HEALTH, PLLC", "NPIID": "", - "OrganizationZipCode": "35010" + "OrganizationZipCode": "59715" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBAEAD", - "OrganizationName": "Bradley C. Rue, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECGEBD", + "OrganizationName": "Advocate - Favia Primary Care", "NPIID": "", - "OrganizationZipCode": "75090" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFCAD", - "OrganizationName": "Premier Physician Centers Inc,", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDDIBD", + "OrganizationName": "Tammy Birbeck DO", "NPIID": "", - "OrganizationZipCode": "44145" + "OrganizationZipCode": "34223" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJFBAA", - "OrganizationName": "Lido Chen, M.D., Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEBCD", + "OrganizationName": "Test-Siddharth Pandya MySQL V11", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHCADA", - "OrganizationName": "Birmingham Podiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJABD", + "OrganizationName": "East Texas Nephrology Associates", "NPIID": "", - "OrganizationZipCode": "35205" + "OrganizationZipCode": "75904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEGBA", - "OrganizationName": "Jasper Diagnostic Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGFJBD", + "OrganizationName": "Mark Minor, MD PC", "NPIID": "", - "OrganizationZipCode": "75951" + "OrganizationZipCode": "32936" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDIGBA", - "OrganizationName": "Center for Adult Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCCBDA", + "OrganizationName": "JK Internal Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFJDCD", - "OrganizationName": "Respire Pulmonary and Sleep Medicine LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEIFBA", + "OrganizationName": "David W Mansky DPM PC", "NPIID": "", - "OrganizationZipCode": "34428" + "OrganizationZipCode": "49058" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGGJBA", - "OrganizationName": "Lynda Lane MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAGDAA", + "OrganizationName": "Cardiovascular Clinic of West Tennessee", "NPIID": "", - "OrganizationZipCode": "60657" + "OrganizationZipCode": "38305" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDEABA", - "OrganizationName": "Chesapeake Bay ENT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEHAD", + "OrganizationName": "Hays Foot and Ankle Surgical Associates PLLC", "NPIID": "", - "OrganizationZipCode": "23306" + "OrganizationZipCode": "78640" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIBBD", - "OrganizationName": "Utah Valley Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFHICD", + "OrganizationName": "Sankineni Rao M.D., LLC", "NPIID": "", - "OrganizationZipCode": "84663" + "OrganizationZipCode": "20716" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEEDAD", - "OrganizationName": "Rheumatology Care of North Houston, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJGFBA", + "OrganizationName": "Advocate - Barrington Surgeons LTD", "NPIID": "", - "OrganizationZipCode": "77070" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGAEBD", - "OrganizationName": "Deep Creek Colon and Rectal Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJBAA", + "OrganizationName": "Michael B Scott, M.D. Inc.", "NPIID": "", - "OrganizationZipCode": "22101" + "OrganizationZipCode": "90262" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJEAD", - "OrganizationName": "Abba Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJICD", + "OrganizationName": "Summers Healthcare Inc", "NPIID": "", - "OrganizationZipCode": "89102" + "OrganizationZipCode": "63109" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFEAA", - "OrganizationName": "City Medical Healthcare Associates, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECJAA", + "OrganizationName": "Surgical Care Specialists", "NPIID": "", - "OrganizationZipCode": "10031" + "OrganizationZipCode": "19001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDADA", - "OrganizationName": "Vascularcare of Texas, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJIBA", + "OrganizationName": "Elizabeth J McShane MD Inc", "NPIID": "", - "OrganizationZipCode": "75042" + "OrganizationZipCode": "90606-2549" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGCIBA", - "OrganizationName": "HCA - Haroon Siddique", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIJBA", + "OrganizationName": "High Desert Cardio-Pulmonary", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92307" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACFCAD", - "OrganizationName": "Gulf Coast Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECDBA", + "OrganizationName": "Dr. Andrew Silverman, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHIAA", - "OrganizationName": "Bay Parkway Medical PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAFDBA", + "OrganizationName": "Pavilion Family Practice", "NPIID": "", - "OrganizationZipCode": "11214" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEABD", - "OrganizationName": "Hemet Valley Urology Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCHEAA", + "OrganizationName": "Lansdowne Internal Medicine, LLC", "NPIID": "", - "OrganizationZipCode": "92543" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJIAAA", - "OrganizationName": "Non-Surgical Orthopaedic Spine Center, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFEJCD", + "OrganizationName": "Empowered arthritis and Rheumatology Center PLLC", "NPIID": "", - "OrganizationZipCode": "30060" + "OrganizationZipCode": "27518" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIFBA", - "OrganizationName": "J Mark Morales", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJFBAA", + "OrganizationName": "Lido Chen, M.D., Inc.", "NPIID": "", - "OrganizationZipCode": "78404" + "OrganizationZipCode": "92618" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIBJAD", - "OrganizationName": "Advocate - Gomez Medical Group Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJGCA", + "OrganizationName": "Deborah Silberman MD PC", "NPIID": "", - "OrganizationZipCode": "60123" + "OrganizationZipCode": "11212" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGBCD", - "OrganizationName": "AHMED ELSHARKAWI, MD LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIBBD", + "OrganizationName": "Laura Wagner MD", "NPIID": "", - "OrganizationZipCode": "31520" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAFBDA", - "OrganizationName": "American Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECACDA", + "OrganizationName": "Cape Fear Physical Medicine Rehab", "NPIID": "", - "OrganizationZipCode": "85295" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBHDAA", - "OrganizationName": "Kalani, MD, Equbal", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCCECA", + "OrganizationName": "Carolina Heart and Leg Center", "NPIID": "", - "OrganizationZipCode": "34689" + "OrganizationZipCode": "28304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBCDBA", - "OrganizationName": "Advocate - Ashland Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFEAA", + "OrganizationName": "Perez and Rivera", "NPIID": "", - "OrganizationZipCode": "60657" + "OrganizationZipCode": "32796" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJAACA", - "OrganizationName": "Aditi Swami MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGAACA", + "OrganizationName": "Tinyee Chang MD", "NPIID": "", - "OrganizationZipCode": "75025" + "OrganizationZipCode": "96002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIEBA", - "OrganizationName": "Advocate - Suburban Endocrine Diabetes", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFJDAD", + "OrganizationName": "Arizona State Urology - Howard Tay", "NPIID": "", - "OrganizationZipCode": "61312" + "OrganizationZipCode": "85308" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGADAA", - "OrganizationName": "Advanced Dermatology and Cosmetic Center, LLC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDGFBD", + "OrganizationName": "John Hoover, MD", "NPIID": "", - "OrganizationZipCode": "20814-191" + "OrganizationZipCode": "33155" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGGAA", - "OrganizationName": "Family Medicine Associates of York", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJJECD", + "OrganizationName": "Endocrinology Associates, Inc", "NPIID": "", - "OrganizationZipCode": "17309" + "OrganizationZipCode": "24018" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICFABD", - "OrganizationName": "Dr. Elvira Lindwall A Medical Corporation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABBDAA", + "OrganizationName": "Southern Endocrinology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBEAA", - "OrganizationName": "Hummayun Ismail MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGCIBA", + "OrganizationName": "HCA - Haroon Siddique", "NPIID": "", - "OrganizationZipCode": "19713" + "OrganizationZipCode": "76234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBCAA", - "OrganizationName": "Robin Fowler", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIGGBA", + "OrganizationName": "STJ - Rosemary M Aquiler-Angeles MD", "NPIID": "", - "OrganizationZipCode": "30014" + "OrganizationZipCode": "48152" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFACA", - "OrganizationName": "ASPA - Gilbert Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGIFAD", + "OrganizationName": "Adventist HealthCare - Enterprise", "NPIID": "", - "OrganizationZipCode": "85297" + "OrganizationZipCode": "20878" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJIAD", - "OrganizationName": "MAG - PMC Yale Family Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJFAA", + "OrganizationName": "Mamonluk Chua Medical Group (MCMG)", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "41256" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJHBA", - "OrganizationName": "H R Medical Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEAIAA", + "OrganizationName": "Cardiac Intervention Specialist", "NPIID": "", - "OrganizationZipCode": "48127" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJBBBA", - "OrganizationName": "Josel Cabaccan MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFJEBA", + "OrganizationName": "Cardiology Specialists of Nevada", "NPIID": "", - "OrganizationZipCode": "95148" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEGFAD", - "OrganizationName": "Andro Sharobiem, MD, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIIGBA", + "OrganizationName": "HCA - Allergy Asthma Care of The Palm Beaches", "NPIID": "", - "OrganizationZipCode": "92506" + "OrganizationZipCode": "33458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGECD", - "OrganizationName": "Springs Pediatrics Associates PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFABCA", + "OrganizationName": "Teresa Chan", "NPIID": "", - "OrganizationZipCode": "77583" + "OrganizationZipCode": "10002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHEGAD", - "OrganizationName": "Surgical Healing Arts Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDIADA", + "OrganizationName": "Rappahannock Foot and Ankle Specialists", "NPIID": "", - "OrganizationZipCode": "33967" + "OrganizationZipCode": "22408" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCEBD", - "OrganizationName": "Advanced Medical and Kidney Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHEADA", + "OrganizationName": "Diabetes And Metabolism Specialists of San Antonio", "NPIID": "", - "OrganizationZipCode": "92307" + "OrganizationZipCode": "78258" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGICA", - "OrganizationName": "Chandler Neurology and Sleep Disorders Associates PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGDJBD", + "OrganizationName": "Central Orthopedic and Sports Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "63017" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFDDAA", - "OrganizationName": "Mohammad Afzal, MD. Internal Medicine, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJEBA", + "OrganizationName": "Robeson Digestive Disease", "NPIID": "", - "OrganizationZipCode": "42503" + "OrganizationZipCode": "28358" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJABD", - "OrganizationName": "East Texas Nephrology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBCGCA", + "OrganizationName": "SSK Physician Associates, PA", "NPIID": "", "OrganizationZipCode": "75904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBCFBD", - "OrganizationName": "Tehmina Sami M.D P.A.", - "NPIID": "", - "OrganizationZipCode": "77479-4908" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDCFAA", - "OrganizationName": "Placer Dermatology Skin Care Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBEAA", + "OrganizationName": "Hummayun Ismail MD", "NPIID": "", - "OrganizationZipCode": "95745" + "OrganizationZipCode": "19713" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJICA", - "OrganizationName": "Sumeet Bhinder MD INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBHEBA", + "OrganizationName": "Southfield Family Health Center", "NPIID": "", - "OrganizationZipCode": "93312" + "OrganizationZipCode": "48076" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDACD", - "OrganizationName": "Neurology Consultants of North Alabama Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDBAA", + "OrganizationName": "The Lung and Sleep Disorder Institute, PLLC", "NPIID": "", - "OrganizationZipCode": "35801" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGCBA", - "OrganizationName": "Internal Medicine And Infectious Disease", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIDHAA", + "OrganizationName": "El Paso Pain Center", "NPIID": "", - "OrganizationZipCode": "32086" + "OrganizationZipCode": "79925" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFDCA", - "OrganizationName": "Houston Lung and Sleep Clinic PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBCCAA", + "OrganizationName": "Orthopaedic Institute of Ohio", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "45804" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEJBD", - "OrganizationName": "Roseburg Foot and Ankle Specialists PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHJBA", + "OrganizationName": "Vittorio M Morreale MD PLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48315-3140" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGFICD", - "OrganizationName": "ST. VINCENT PREVENTATIVE FAMILY CARE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEBECD", + "OrganizationName": "RWLC Consulting LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "08527" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAIHAA", - "OrganizationName": "Central California Cardiovascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGAJCD", + "OrganizationName": "Ocean Allergy Partners, LLC", "NPIID": "", - "OrganizationZipCode": "93662-3251" + "OrganizationZipCode": "08724" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBECA", - "OrganizationName": "HCA - Janin Heart Vascular Institute, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGIHCD", + "OrganizationName": "MID LOUISIANA SURGICAL SPECIALISTS", "NPIID": "", - "OrganizationZipCode": "33458" + "OrganizationZipCode": "71301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJFFBA", - "OrganizationName": "Peace Internal Medicine and Cardiology Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AADECD", + "OrganizationName": "Rapid Response Medical Care PC", "NPIID": "", - "OrganizationZipCode": "29605" + "OrganizationZipCode": "11010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBFDAD", - "OrganizationName": "Neurocare Plus", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCFBA", + "OrganizationName": "Alpharetta Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHCAD", - "OrganizationName": "Upper East Orthopaedics, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGACD", + "OrganizationName": "Stuart A Friedman MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33484" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDGGAD", - "OrganizationName": "David Nehme, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGHCBD", + "OrganizationName": "GulAlam, PC and DBA Meadows Health Cente", "NPIID": "", - "OrganizationZipCode": "34994" + "OrganizationZipCode": "01028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECJAA", - "OrganizationName": "Surgical Care Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JICIBA", + "OrganizationName": "STJ - Metro Medical Practice", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48083" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEJAAA", - "OrganizationName": "Telluride Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEJBD", + "OrganizationName": "Roseburg Foot and Ankle Specialists PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "97471" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGCBD", - "OrganizationName": "Family Practice Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFBGBA", + "OrganizationName": "Family Medical Clinic of Harrogate, PC", "NPIID": "", - "OrganizationZipCode": "99801" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJHBD", - "OrganizationName": "PAIN CENTER WESTERN WASHINGTON", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGFDBD", + "OrganizationName": "Pain Relief Centers", "NPIID": "", - "OrganizationZipCode": "98003" + "OrganizationZipCode": "28613" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JADIAD", - "OrganizationName": "Mohammed S. Qayyum MD Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHBJBD", + "OrganizationName": "ATLANTA DIGESTIVE CENTER, LLC", "NPIID": "", - "OrganizationZipCode": "95124" + "OrganizationZipCode": "30033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFDBA", - "OrganizationName": "Clear Lake Specialties", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAIGCD", + "OrganizationName": "PRC Associates, LLC", "NPIID": "", - "OrganizationZipCode": "77058" + "OrganizationZipCode": "32117" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBFAD", - "OrganizationName": "Waring Endocrine Associates, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAJCA", + "OrganizationName": "OHS - Haddad Internal Medicine", "NPIID": "", - "OrganizationZipCode": "29406" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHDJBA", - "OrganizationName": "Shakti Narain, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFDCBD", + "OrganizationName": "Clermont Urgent Care", "NPIID": "", - "OrganizationZipCode": "34748" + "OrganizationZipCode": "34711" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCFJAA", - "OrganizationName": "AIP - Sunrise Medical Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGEFAD", + "OrganizationName": "FPIM of New Haven County LLC", "NPIID": "", - "OrganizationZipCode": "85381" + "OrganizationZipCode": "06512" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGDDAA", - "OrganizationName": "Huatuco", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGEJBA", + "OrganizationName": "SHS - True Care Medical", "NPIID": "", - "OrganizationZipCode": "95376" + "OrganizationZipCode": "06830" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JECHCA", - "OrganizationName": "Advocate - Divyang A Joshi, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFBIAA", + "OrganizationName": "Robbins Dermatology P.C.", "NPIID": "", - "OrganizationZipCode": "60123" + "OrganizationZipCode": "82801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBEHAD", - "OrganizationName": "Doylestown AssociatesThyroid Endocrine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFHEAA", + "OrganizationName": "Pain Diagnostics and Treatment Center, PA.", "NPIID": "", - "OrganizationZipCode": "18901" + "OrganizationZipCode": "75230" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBJJAD", - "OrganizationName": "Hometown Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBGAD", + "OrganizationName": "Roberson Allergy and Asthma Inc", "NPIID": "", - "OrganizationZipCode": "38024" + "OrganizationZipCode": "33401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFABBA", - "OrganizationName": "University Renal and Hypertension Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFFDBA", + "OrganizationName": "Clear Lake Specialties", "NPIID": "", - "OrganizationZipCode": "07105" + "OrganizationZipCode": "77058" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJBDA", - "OrganizationName": "BAY AREA INFECTIOUS DISEASE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDCBD", + "OrganizationName": "Manassas Internal Medicine", "NPIID": "", - "OrganizationZipCode": "33511" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFDCD", - "OrganizationName": "D.A. Campbell, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJAECA", + "OrganizationName": "Advanced Gastroenterology of South Florida, P.A.", "NPIID": "", - "OrganizationZipCode": "33756" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHCAD", - "OrganizationName": "Arthritis Center of Orlando", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHGAD", + "OrganizationName": "Carl Boagni, MD", "NPIID": "", - "OrganizationZipCode": "34761" + "OrganizationZipCode": "70570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGFBD", - "OrganizationName": "AdvancedENT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFDCD", + "OrganizationName": "I B MEDICAL ASSOCIATES, PLLC", "NPIID": "", - "OrganizationZipCode": "89521" + "OrganizationZipCode": "33150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEACA", - "OrganizationName": "HCA - Prime Care Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJHBA", + "OrganizationName": "Victoria Heart Vascular", "NPIID": "", - "OrganizationZipCode": "23834" + "OrganizationZipCode": "77901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJABA", - "OrganizationName": "Pasco Cardiology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJJCCD", + "OrganizationName": "Wilson Almonte MD PLLC", "NPIID": "", - "OrganizationZipCode": "33541" + "OrganizationZipCode": "77904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFBIAA", - "OrganizationName": "Pyramid Pain and Rehab PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFHAD", + "OrganizationName": "Joseph P Addabbo Family Health Center Inc", "NPIID": "", - "OrganizationZipCode": "75092" + "OrganizationZipCode": "11692" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHDHAD", - "OrganizationName": "A. Dhandayuthanpani, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDGAA", + "OrganizationName": "West Charleston Medical Center", "NPIID": "", - "OrganizationZipCode": "31904" + "OrganizationZipCode": "89102" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBIIBD", - "OrganizationName": "Delmarva Diabetes Center, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGADCD", + "OrganizationName": "InStride Foot Ankle Specialists PLLC", "NPIID": "", - "OrganizationZipCode": "21804" + "OrganizationZipCode": "28025" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJHCA", - "OrganizationName": "Jaideep Puri, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGGBA", + "OrganizationName": "Eye Clinic \u0026 Laser Institute", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32953" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGGDAA", - "OrganizationName": "Michael Murphy", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFIACD", + "OrganizationName": "Live Oak Family Medicine, LLC", "NPIID": "", - "OrganizationZipCode": "46143" + "OrganizationZipCode": "76028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICHAA", - "OrganizationName": "South Bay Cardiovascular Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBBDBD", + "OrganizationName": "Remnant Medicine", "NPIID": "", - "OrganizationZipCode": "95037" + "OrganizationZipCode": "36066" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJAADA", - "OrganizationName": "Sycamore Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGDGCD", + "OrganizationName": "TruDoc Medical LLC", "NPIID": "", - "OrganizationZipCode": "75801" + "OrganizationZipCode": "07011" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHJHBA", - "OrganizationName": "McKenzie Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEACA", + "OrganizationName": "HCA - Prime Care Family Practice", "NPIID": "", - "OrganizationZipCode": "48471" + "OrganizationZipCode": "23834" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHBJBA", - "OrganizationName": "Powell Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEGDCD", + "OrganizationName": "Camelback Spine Care, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCHFBA", - "OrganizationName": "Ty Gore, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBAIAA", + "OrganizationName": "Gerlie Papillion, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95020" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDCDCA", - "OrganizationName": "Canadian Valley Family Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBHBD", + "OrganizationName": "Pulmonary and Critical Care Specialists INC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "43537" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIIBA", - "OrganizationName": "Sunil Rana MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEDCD", + "OrganizationName": "LIVING GEM PROFESSIONAL CORPORATION", "NPIID": "", - "OrganizationZipCode": "06830" + "OrganizationZipCode": "85737" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIBBCD", - "OrganizationName": "ACTON MEDICAL ASSOCIATES P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGHBD", + "OrganizationName": "Science Hill Family Care, LLC", "NPIID": "", - "OrganizationZipCode": "01720" + "OrganizationZipCode": "42553" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAADCA", - "OrganizationName": "Renal Consultants, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGGBD", + "OrganizationName": "Neurological Specialists of Central Florida, LCC", "NPIID": "", - "OrganizationZipCode": "10970" + "OrganizationZipCode": "34420" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBCGCA", - "OrganizationName": "SSK Physician Associates, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHFAD", + "OrganizationName": "Ideal Option----TEST", "NPIID": "", - "OrganizationZipCode": "75904" + "OrganizationZipCode": "99336" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICIAA", - "OrganizationName": "Women s Medicine of Niagara", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFFAD", + "OrganizationName": "Heart and Vascular Associates", "NPIID": "", - "OrganizationZipCode": "14072" + "OrganizationZipCode": "63640" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHCCD", - "OrganizationName": "Dr. Wentworth Jarrett, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDBAAA", + "OrganizationName": "Virginia Spine Institute", "NPIID": "", - "OrganizationZipCode": "33186" + "OrganizationZipCode": "20190" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAIFAA", - "OrganizationName": "NYCDOHMH,Advanced Womens Health OB/GYN Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECDECD", + "OrganizationName": "Christopher J Blanco DPM PA", "NPIID": "", - "OrganizationZipCode": "11355" + "OrganizationZipCode": "33122" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCGJCD", - "OrganizationName": "DAVID ALIABADI, M.D., INC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCHFBA", + "OrganizationName": "Ty Gore, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "76067" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCGECA", - "OrganizationName": "Washington Healthcare Services Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDBHBA", + "OrganizationName": "Cape Center Internal Medicine PA", "NPIID": "", - "OrganizationZipCode": "15301" + "OrganizationZipCode": "28304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBEAD", - "OrganizationName": "XyrFlu48OYFD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBGAAA", + "OrganizationName": "Quynh L. Sebastian M.D.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "90404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHDHAD", - "OrganizationName": "Sanjay Sikand MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACCCA", + "OrganizationName": "Ear, Nose Throat SpecialtyCare of Minnesota, P.A.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "55404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFIEAD", - "OrganizationName": "North Texas Comprehensive Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBBDA", + "OrganizationName": "Pulmonary \u0026 Critical Care Medicine Associates, PC", "NPIID": "", - "OrganizationZipCode": "75092" + "OrganizationZipCode": "17102" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJFAA", - "OrganizationName": "Northern Heart and Vascular Institute.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIEJBD", + "OrganizationName": "Cornerstone Clinic for Women PA", "NPIID": "", - "OrganizationZipCode": "96001" + "OrganizationZipCode": "72205" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCABBA", - "OrganizationName": "HCA - Western Kentucky Gastroenterology Associates LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIDHBA", + "OrganizationName": "Ken P Lee MD PLLC", "NPIID": "", - "OrganizationZipCode": "42103" + "OrganizationZipCode": "98501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJGBD", - "OrganizationName": "CareLock, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAAFBD", + "OrganizationName": "Helix Urgent Care", "NPIID": "", - "OrganizationZipCode": "85050" + "OrganizationZipCode": "33441" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGCEBA", - "OrganizationName": "THR - Grayson Medical Consultants, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCDCAA", + "OrganizationName": "Ringpfeil Advanced Dermatology", "NPIID": "", - "OrganizationZipCode": "75092" + "OrganizationZipCode": "19096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HABGBD", - "OrganizationName": "Alamo Ranch Integrative Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJAHAD", + "OrganizationName": "The Allergy Asthma and Sinus Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "37919" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIABBA", - "OrganizationName": "Primary Care Associates - FL", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBECCA", + "OrganizationName": "Cardiology Physicians", "NPIID": "", - "OrganizationZipCode": "33948" + "OrganizationZipCode": "32114" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAGFCD", - "OrganizationName": "Doctors United, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJHCD", + "OrganizationName": "Test_kelvin_local", "NPIID": "", - "OrganizationZipCode": "33142" + "OrganizationZipCode": "01582" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEHIBA", - "OrganizationName": "CARE RITE PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJHCD", + "OrganizationName": "Rochester Skin Cancer and Surgery Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48307" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCFBA", - "OrganizationName": "Alpharetta Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGGDBD", + "OrganizationName": "Malibu Medical Corp", "NPIID": "", - "OrganizationZipCode": "30076" + "OrganizationZipCode": "90265" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAAFAA", - "OrganizationName": "Comprehensive Orthopedic LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCFAD", + "OrganizationName": "Family Medical Center", "NPIID": "", - "OrganizationZipCode": "00801" + "OrganizationZipCode": "32806" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGGBBA", - "OrganizationName": "Advocate - Lawn Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCABBA", + "OrganizationName": "HCA - Western Kentucky Gastroenterology Associates LLC", "NPIID": "", - "OrganizationZipCode": "60638" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGFBD", - "OrganizationName": "Opticare Medicine PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBJAA", + "OrganizationName": "Christopher MD \u0026 Associates", "NPIID": "", - "OrganizationZipCode": "34786" + "OrganizationZipCode": "32539" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDCAA", - "OrganizationName": "Central Oregon ENT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEGCCA", + "OrganizationName": "MLH-Main Line Institute of Plastic Surgery", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFGBBD", - "OrganizationName": "Central Montana Heart and Vascular Institute LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHBCD", + "OrganizationName": "Northeast Endocrinology P.A", "NPIID": "", - "OrganizationZipCode": "59405" + "OrganizationZipCode": "78154" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCEEBA", - "OrganizationName": "Cardiologists of Greene County LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJECCA", + "OrganizationName": "Garey Orhopedic Medical Group", "NPIID": "", - "OrganizationZipCode": "44385" + "OrganizationZipCode": "91767" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDBCD", - "OrganizationName": "Christopher Park, DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHHGAA", + "OrganizationName": "Kids First Pediatrics of Raleigh", "NPIID": "", - "OrganizationZipCode": "38863" + "OrganizationZipCode": "27604" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCDCA", - "OrganizationName": "Advocate - Angspatt-Pisit, MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIEDAA", + "OrganizationName": "Abington Medical", "NPIID": "", - "OrganizationZipCode": "60452" + "OrganizationZipCode": "19001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECBDA", - "OrganizationName": "Intermountain Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDFAA", + "OrganizationName": "Gregory M Bricca MD Inc", "NPIID": "", - "OrganizationZipCode": "84123" + "OrganizationZipCode": "95661" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJFCCA", - "OrganizationName": "Blue Water Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGAAAA", + "OrganizationName": "Virginia Endocrinology and Osteoporosis Center, Inc.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "23114" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFABA", - "OrganizationName": "Advocate - O Bartolomeo, MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGHHAA", + "OrganizationName": "NYCDOHMH - Lawrence Rosman, M.D.", "NPIID": "", - "OrganizationZipCode": "60010" + "OrganizationZipCode": "11375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJDFBA", - "OrganizationName": "Matsumoto, Takahashi and Hashimoto, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDECD", + "OrganizationName": "ZK Enterprises,Inc.DBA Desert Cardiology Consultants", "NPIID": "", - "OrganizationZipCode": "90013" + "OrganizationZipCode": "89148" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIEDAA", - "OrganizationName": "Neurosurgery Associates of West Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAHFCA", + "OrganizationName": "JULIAN F. NARANJO, MD, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33022" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFHEAA", - "OrganizationName": "Pain Diagnostics and Treatment Center, PA.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIFDCA", + "OrganizationName": "HCA - Colon Rectal Clinic", "NPIID": "", - "OrganizationZipCode": "75230" + "OrganizationZipCode": "30024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDGDBA", - "OrganizationName": "IUHC Medclinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFCCAA", + "OrganizationName": "Patel,Biren MD", "NPIID": "", - "OrganizationZipCode": "474053190" + "OrganizationZipCode": "85222" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCGCCA", - "OrganizationName": "Northeast Primary Care Associates, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIEABD", + "OrganizationName": "Elyaman Medical Services", "NPIID": "", - "OrganizationZipCode": "77338" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAABA", - "OrganizationName": "HMA - Dr. Debbie Reiland", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCEEBA", + "OrganizationName": "Cardiologists of Greene County LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCGHAA", - "OrganizationName": "Brent Spencer,MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEGDBD", + "OrganizationName": "Midwest Therapeutic Endoscopy Consultants - MTEC", "NPIID": "", - "OrganizationZipCode": "75034" + "OrganizationZipCode": "63131" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJBDCD", - "OrganizationName": "Kidney Center of North Houston P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCFFAD", + "OrganizationName": "Central Florida Neurosurgery Institute", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJBCDA", - "OrganizationName": "Omni Spine Pain Management PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAGHBA", + "OrganizationName": "Saba Siddiqi, MD PA", + "NPIID": "", + "OrganizationZipCode": "21237" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHGJCD", + "OrganizationName": "Test Facility-Akinsola Okunsokan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDDIBD", - "OrganizationName": "Tammy Birbeck DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAGAD", + "OrganizationName": "Laurence D Haber MD, PC", "NPIID": "", - "OrganizationZipCode": "34223" + "OrganizationZipCode": "11021" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGAJAD", - "OrganizationName": "James M. Caskey, MD, PA and Angela Hafernick, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCCAA", + "OrganizationName": "Marlboro Internal Medicine", "NPIID": "", - "OrganizationZipCode": "75904" + "OrganizationZipCode": "01752" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFBAA", - "OrganizationName": "MyMD Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAHBDA", + "OrganizationName": "Visione 360 Eye Cosmetic Center", "NPIID": "", - "OrganizationZipCode": "08527" + "OrganizationZipCode": "79902" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEAGCD", - "OrganizationName": "Southwest Idaho", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIJHAA", + "OrganizationName": "Professional Health Care", "NPIID": "", - "OrganizationZipCode": "83704" + "OrganizationZipCode": "33713" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIHBBA", - "OrganizationName": "MPR Ajaz Umerani MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGFIBD", + "OrganizationName": "Camden Heartcare", "NPIID": "", - "OrganizationZipCode": "45505" + "OrganizationZipCode": "29020" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIHIBD", - "OrganizationName": "Luis A Casas MD LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAGICD", + "OrganizationName": "St Mark Health", "NPIID": "", - "OrganizationZipCode": "20707" + "OrganizationZipCode": "10312" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGEDBD", - "OrganizationName": "Arizona State Orthopaedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBCCD", + "OrganizationName": "GOOD DERM, INC", "NPIID": "", - "OrganizationZipCode": "85225" + "OrganizationZipCode": "90505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGGBA", - "OrganizationName": "Eye Clinic \u0026 Laser Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIDJCD", + "OrganizationName": "Cherokee Family Healthcare, LLC", "NPIID": "", - "OrganizationZipCode": "32953" + "OrganizationZipCode": "35960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFCGCA", - "OrganizationName": "Spine Institute of North America", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJBCDA", + "OrganizationName": "Omni Spine Pain Management PLLC", "NPIID": "", - "OrganizationZipCode": "08520" + "OrganizationZipCode": "75035" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBEEAA", - "OrganizationName": "Sanjay Aggarwal, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHCHBA", + "OrganizationName": "Premier Care Family Clinic, LLC", "NPIID": "", - "OrganizationZipCode": "77566" + "OrganizationZipCode": "77521" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHFCD", - "OrganizationName": "CARDIOLOGY CARDIOVASCULAR", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFBEAA", + "OrganizationName": "Cardiovascular Association, PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIBAA", - "OrganizationName": "Primary Physician Partners/Partners Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJFAA", + "OrganizationName": "Hobson Meadows Family Medicine", "NPIID": "", - "OrganizationZipCode": "01608" + "OrganizationZipCode": "60504" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBJCAA", - "OrganizationName": "Zelyko Zic MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIDEBA", + "OrganizationName": "Anil K. Mukerjee M.D., PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "03561" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHGBCD", - "OrganizationName": "Satish Sivasankaran, M.D.,P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJFCD", + "OrganizationName": "VASCULAR INSTITUTE OF ARIZONA, PLLC", "NPIID": "", - "OrganizationZipCode": "34688" + "OrganizationZipCode": "85142" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFEFCD", - "OrganizationName": "Vicksburg Nephrology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBEBA", + "OrganizationName": "Digestive Care P.L.", "NPIID": "", - "OrganizationZipCode": "39180" + "OrganizationZipCode": "33511" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BACGAD", - "OrganizationName": "Andrew Word, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFGCD", + "OrganizationName": "CHRISTOPHER D. MARSHALL M.D. PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "38363" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEGACD", - "OrganizationName": "Pain Consultants Of Atlanta", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFDCD", + "OrganizationName": "The Idaho Clinic PLLC", "NPIID": "", - "OrganizationZipCode": "30309" + "OrganizationZipCode": "83704" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJACBD", - "OrganizationName": "Sahay Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGJBA", + "OrganizationName": "Connally Memorial Hospital - Cardiology Practice", "NPIID": "", - "OrganizationZipCode": "11530" + "OrganizationZipCode": "78114" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGAGBA", - "OrganizationName": "Eastern Plains Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAJBA", + "OrganizationName": "Annapolis Rheumatology LLC", "NPIID": "", - "OrganizationZipCode": "80808" + "OrganizationZipCode": "21401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGGECD", - "OrganizationName": "Snehal A. Patel, MD PLLC dba Houston Heart Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BICCCA", + "OrganizationName": "Lung Care and P.C.", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "35150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFABD", - "OrganizationName": "Test Abhishek Jayronia MySQL_mustage3", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJEBAA", + "OrganizationName": "Garden State Interventional Pain Management", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACGAD", - "OrganizationName": "Ponce Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFEFCD", + "OrganizationName": "Vicksburg Nephrology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "39180" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEFCA", - "OrganizationName": "Indian River Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFBCAA", + "OrganizationName": "David Williams MD", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "16505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAICAD", - "OrganizationName": "Florenda L. Fortner, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJGBD", + "OrganizationName": "Tricounty Health LLC", "NPIID": "", - "OrganizationZipCode": "34652" + "OrganizationZipCode": "32159" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHDIBA", - "OrganizationName": "Jay P. Diliberto, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACBCA", + "OrganizationName": "HCA - Waseem Peracha MD", "NPIID": "", - "OrganizationZipCode": "92648" + "OrganizationZipCode": "77082" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDDECD", - "OrganizationName": "Garden City Neurology, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHIHCD", + "OrganizationName": "Mountain View Headache and Spine Institute PLLC", "NPIID": "", - "OrganizationZipCode": "11530" + "OrganizationZipCode": "85012" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFEAA", - "OrganizationName": "Center for Spine Pain Medicine, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADJCA", + "OrganizationName": "Victoria Vein Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFEEAD", - "OrganizationName": "APC - Raghav Mohindra, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIAIBA", + "OrganizationName": "Jamil C Mohsin MD", "NPIID": "", - "OrganizationZipCode": "85378" + "OrganizationZipCode": "77070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBAGAA", - "OrganizationName": "THR-Pulmonary Associates of North Dalas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHFEAA", + "OrganizationName": "Ankle and Foot LLC.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "31501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCHEAA", - "OrganizationName": "Lansdowne Internal Medicine, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFBBA", + "OrganizationName": "Huron Podiatry", "NPIID": "", - "OrganizationZipCode": "20176" + "OrganizationZipCode": "44839" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFJBBA", - "OrganizationName": "Rapid City Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEBBD", + "OrganizationName": "Beaumont Nephrology Associates", "NPIID": "", - "OrganizationZipCode": "57701" + "OrganizationZipCode": "77702" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGEICD", - "OrganizationName": "ORLES PAIN MANAGEMENT AND REGENERATIVE MEDICINE GROUP, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFJBD", + "OrganizationName": "San Antonio Head and Neck", "NPIID": "", - "OrganizationZipCode": "32216" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGFAD", - "OrganizationName": "Ironwood Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJFCDA", + "OrganizationName": "Golden Triangle Neurocare LLP", "NPIID": "", - "OrganizationZipCode": "85048" + "OrganizationZipCode": "77706" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGGBA", - "OrganizationName": "Antony G Sankoorikal MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDEEBA", + "OrganizationName": "Berkley Primary Care", "NPIID": "", - "OrganizationZipCode": "33761" + "OrganizationZipCode": "48070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJAHAD", - "OrganizationName": "The Allergy Asthma and Sinus Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDGCD", + "OrganizationName": "Temple University - Of The Commonwealth System", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19122" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBFAD", - "OrganizationName": "Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFJBBA", + "OrganizationName": "Rapid City Medical Center", "NPIID": "", - "OrganizationZipCode": "49503" + "OrganizationZipCode": "57701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAEGBA", - "OrganizationName": "Heart Peripheral Vascular Group (Dr. Neasman)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCICD", + "OrganizationName": "Jeffrey L. Horstmyer, M.D., P.A.", "NPIID": "", - "OrganizationZipCode": "78550" + "OrganizationZipCode": "33133" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFACA", - "OrganizationName": "Karen M. Shainsky, DO, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECEBCA", + "OrganizationName": "Houston Neurocare, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBHCA", - "OrganizationName": "HCA - Cardiology Associates of South Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGFCAA", + "OrganizationName": "Darius Gharib M.D.", "NPIID": "", - "OrganizationZipCode": "33472" + "OrganizationZipCode": "91436" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICAEAD", - "OrganizationName": "Manhattan Allergy Immunology Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIFJBD", + "OrganizationName": "Pulmonary Critical Care Associates PC", "NPIID": "", - "OrganizationZipCode": "10075" + "OrganizationZipCode": "48315" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEABCD", - "OrganizationName": "Mitt Lary Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCBCCA", + "OrganizationName": "MTT Corp - Harris Family Medical Center", "NPIID": "", - "OrganizationZipCode": "35475" + "OrganizationZipCode": "32901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JADEBD", - "OrganizationName": "Jassi Primary Care PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIFCA", + "OrganizationName": "UMA Pain and Spine Clinic, PLLC", "NPIID": "", - "OrganizationZipCode": "21061" + "OrganizationZipCode": "27804" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIDICD", - "OrganizationName": "Texas Vascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIEAA", + "OrganizationName": "Victor A. Shada, D.O., P.C.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "38557" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCCECA", - "OrganizationName": "Carolina Heart and Leg Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJCCD", + "OrganizationName": "ELVIN R GARCIA,MD,PA dba Valley Arthritis Center", "NPIID": "", - "OrganizationZipCode": "28304" + "OrganizationZipCode": "78501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFEDAD", - "OrganizationName": "Thomas C Tolli MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDIFCD", + "OrganizationName": "SouthWest Ohio ENT Specialists Inc", "NPIID": "", - "OrganizationZipCode": "33713" + "OrganizationZipCode": "45402" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEJAA", - "OrganizationName": "Stuart A. Shapiro, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCJDBA", + "OrganizationName": "Brodsky Taylor PLC", "NPIID": "", - "OrganizationZipCode": "77063" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJCEAD", - "OrganizationName": "Middle Country Endocrinology PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDACBA", + "OrganizationName": "Greenwald Neurosurgical, PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "83404-5772" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFFABA", - "OrganizationName": "Advocate - James A Wilcox PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJBAA", + "OrganizationName": "9th Street Internal Medicine", "NPIID": "", - "OrganizationZipCode": "60010" + "OrganizationZipCode": "19107" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCJBA", - "OrganizationName": "Physicians Housecalls Direct of Central Florida, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIDICD", + "OrganizationName": "Texas Vascular Institute", "NPIID": "", - "OrganizationZipCode": "34205" + "OrganizationZipCode": "76054" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIEDAA", - "OrganizationName": "Abington Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCJBD", + "OrganizationName": "Z Valley Infectious Disease", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "61265" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHBCA", - "OrganizationName": "Advanced Internal Medicine of Northern Illinois", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGAHAA", + "OrganizationName": "Houston Nephrology Group", "NPIID": "", - "OrganizationZipCode": "60178" + "OrganizationZipCode": "77024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHBCD", - "OrganizationName": "AbsoluteCARE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAIHAA", + "OrganizationName": "CCherry Mathew, MDherry Mathew, MD", "NPIID": "", - "OrganizationZipCode": "30309" + "OrganizationZipCode": "75904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBJCA", - "OrganizationName": "Pine Mountain Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AICDBD", + "OrganizationName": "Eye Surgeons of Richmond, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFCHBA", - "OrganizationName": "Alabama Heart and Vascular Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCAHCD", + "OrganizationName": "Lakewood Medical Center P.C.", "NPIID": "", - "OrganizationZipCode": "35406-2300" + "OrganizationZipCode": "80214" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCDDCA", - "OrganizationName": "Tagrid Adili MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBIAAA", + "OrganizationName": "Scott Orthopedic Center, Inc.", "NPIID": "", - "OrganizationZipCode": "34983" + "OrganizationZipCode": "25702" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHICAA", - "OrganizationName": "Jean Yun, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHBJAD", + "OrganizationName": "Riceland Rural Health Clinic", "NPIID": "", - "OrganizationZipCode": "10013" + "OrganizationZipCode": "77665" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGDJBA", - "OrganizationName": "Southwest Cancer Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBBEAA", + "OrganizationName": "Chesapeake Bay Pain Medicine, P.C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACHAD", - "OrganizationName": "Padmanabh Maramreddy MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJCBA", + "OrganizationName": "Gary R. Clayton, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJFAA", - "OrganizationName": "Mamonluk Chua Medical Group (MCMG)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGCADA", + "OrganizationName": "Podiatric Medical Partners of Texas", "NPIID": "", - "OrganizationZipCode": "41256" + "OrganizationZipCode": "75224" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFIEAD", - "OrganizationName": "Ouachita Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGIEBA", + "OrganizationName": "Delta Renal Group PC", "NPIID": "", - "OrganizationZipCode": "71953" + "OrganizationZipCode": "48075" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDDFBA", - "OrganizationName": "Premier Health Care, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCGBA", + "OrganizationName": "Valencia Associated Podiatrists", "NPIID": "", - "OrganizationZipCode": "33707" + "OrganizationZipCode": "87106" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFEICA", - "OrganizationName": "Smyrna Family Medicine LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACHAD", + "OrganizationName": "Padmanabh Maramreddy MD", "NPIID": "", - "OrganizationZipCode": "30080" + "OrganizationZipCode": "31501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJHIAD", - "OrganizationName": "Shehzad Sami MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIDGAD", + "OrganizationName": "Oleg Katcher, M.D., PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11229" }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCFFAD", - "OrganizationName": "Central Florida Neurosurgery Institute", + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBGCAA", + "OrganizationName": "Marutani", "NPIID": "", - "OrganizationZipCode": "32801" + "OrganizationZipCode": "96817" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJICCA", - "OrganizationName": "Kansas Medical Clinic, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGHCD", + "OrganizationName": "Mouli Associates LLC", "NPIID": "", - "OrganizationZipCode": "66606" + "OrganizationZipCode": "06074" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFCABA", - "OrganizationName": "Yong W. Chung, MD Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJAABA", + "OrganizationName": "Deaconess Hospital- IP", "NPIID": "", - "OrganizationZipCode": "92704-5718" + "OrganizationZipCode": "47747" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJDBA", - "OrganizationName": "Horizons Diagnostics, L.L.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBJAA", + "OrganizationName": "St. Joseph s/Candler Health System", "NPIID": "", - "OrganizationZipCode": "31904" + "OrganizationZipCode": "31405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCAAA", - "OrganizationName": "The Dermatology Center at Ladera", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIEAA", + "OrganizationName": "Jaiswal Clinic", "NPIID": "", - "OrganizationZipCode": "92694" + "OrganizationZipCode": "74701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGHHCD", - "OrganizationName": "Gardens Neurology, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIJBD", + "OrganizationName": "Test-Shashank Patel", "NPIID": "", - "OrganizationZipCode": "33410" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDAIAD", - "OrganizationName": "Luis Vazquez, DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBFDAA", + "OrganizationName": "NYCDOHMH-Barry Weinberg, MD.", "NPIID": "", - "OrganizationZipCode": "85024" + "OrganizationZipCode": "10021" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJFBD", - "OrganizationName": "Fort Davis Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHJFAA", + "OrganizationName": "George Wang", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85212" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIAGCA", - "OrganizationName": "Koman Orthopaedics and Sports Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HADIBA", + "OrganizationName": "STJ - Husain Arastu MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBEGBA", - "OrganizationName": "JOSE A GAUDIER MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBGEAD", + "OrganizationName": "Treasure Coast Cardiovascular Institute", "NPIID": "", - "OrganizationZipCode": "34474" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJHBBA", - "OrganizationName": "Medical Chest Associates, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHBDAD", + "OrganizationName": "Mauricio E. Melhado, M.D., P.A.", "NPIID": "", - "OrganizationZipCode": "77024" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHBADA", - "OrganizationName": "Midtown Surgery Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEADBD", + "OrganizationName": "Oasis Advanced Gastroenterology, Inc", "NPIID": "", - "OrganizationZipCode": "31906" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHJCA", - "OrganizationName": "HCA - Shashi S Bellur MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCFAD", + "OrganizationName": "Miami Medical Consultants, P.A.", "NPIID": "", - "OrganizationZipCode": "77304" + "OrganizationZipCode": "33146" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCGAA", - "OrganizationName": "Digestive Specialists,P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHBJBD", + "OrganizationName": "JEFREY LIEBERMAN, M.D., P.C", "NPIID": "", - "OrganizationZipCode": "77384" + "OrganizationZipCode": "30033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCIAA", - "OrganizationName": "Bay Area Total Health Medical Group, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIJAD", + "OrganizationName": "University Vascular Associates", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "90024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDECAA", - "OrganizationName": "comprehensive rheumatology care, pllc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEDCAA", + "OrganizationName": "Michael J. Screpetis, MD", "NPIID": "", - "OrganizationZipCode": "37075" + "OrganizationZipCode": "71301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGACD", - "OrganizationName": "Stuart A Friedman MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFEJCD", + "OrganizationName": "Test facility-MAELIETST, PA,LLC", "NPIID": "", - "OrganizationZipCode": "33484" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIECA", - "OrganizationName": "Apurva Advanced Medical Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBGDBA", + "OrganizationName": "Digestive Disease Associates of Rockland, P.C.", "NPIID": "", - "OrganizationZipCode": "86301" + "OrganizationZipCode": "10970" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJJJCD", - "OrganizationName": "Catherine Kilby, M.D.,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJDHBD", + "OrganizationName": "Flagstaff Surgical Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "86001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIHCAD", - "OrganizationName": "Nephrology-Hypertension Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEHCD", + "OrganizationName": "Homecare Partners Management LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32256" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJGBD", - "OrganizationName": "Tricounty Health LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJHBA", + "OrganizationName": "STJ - Lakeview Medical Center / Dr. Wanis MD PC", "NPIID": "", - "OrganizationZipCode": "32159" + "OrganizationZipCode": "48080" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIJEAA", - "OrganizationName": "Transfusion Medicine Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDJGAA", + "OrganizationName": "RheumEndoaffliate", "NPIID": "", - "OrganizationZipCode": "92653" + "OrganizationZipCode": "31201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGFEAA", - "OrganizationName": "Rashid Mohammed", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCDECA", + "OrganizationName": "James Liu, MD", "NPIID": "", - "OrganizationZipCode": "11432" + "OrganizationZipCode": "77024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDEADA", - "OrganizationName": "Arizona Center for Pain Relief (Scottsdale Location)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBHBA", + "OrganizationName": "Charles H Croft MD PA - Rep Medical - Ventana Med", "NPIID": "", - "OrganizationZipCode": "85258" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDFBD", - "OrganizationName": "Rheumatology Specialists of Paducah", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBEDBA", + "OrganizationName": "Neurology Specialists of Monmouth County", "NPIID": "", - "OrganizationZipCode": "42003" + "OrganizationZipCode": "07764" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDBIAA", - "OrganizationName": "North Texas Heart Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFJEBA", + "OrganizationName": "Ronald F Williamson MD", "NPIID": "", - "OrganizationZipCode": "75010" + "OrganizationZipCode": "48235" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFHBD", - "OrganizationName": "Dr. Alameddine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAICAA", + "OrganizationName": "Nicholas A. Pietrzak MD, LLC", "NPIID": "", - "OrganizationZipCode": "77429" + "OrganizationZipCode": "31210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGEJBA", - "OrganizationName": "SHS - True Care Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJFBD", + "OrganizationName": "Family Medical Clinic Of McDonough", "NPIID": "", - "OrganizationZipCode": "06830" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDHCA", - "OrganizationName": "Dr. Sreevani Vemuri", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBIBD", + "OrganizationName": "Innis Community Health Center", "NPIID": "", - "OrganizationZipCode": "33458" + "OrganizationZipCode": "70715" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDICAA", - "OrganizationName": "Premier NW Houston Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBEAA", + "OrganizationName": "Kidney Specialists", "NPIID": "", - "OrganizationZipCode": "77065" + "OrganizationZipCode": "78207" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GECCCA", - "OrganizationName": "Botsford - Tri County Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDHCA", + "OrganizationName": "Dr. Sreevani Vemuri", "NPIID": "", - "OrganizationZipCode": "48336" + "OrganizationZipCode": "33458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCIBD", - "OrganizationName": "Harlem Medical Group PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGFBD", + "OrganizationName": "Maui Urology", "NPIID": "", - "OrganizationZipCode": "10027" + "OrganizationZipCode": "96793" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEFHBD", - "OrganizationName": "Mukesh Patel MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEFEAA", + "OrganizationName": "Gwinnett Center Medical Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30045" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDGCD", - "OrganizationName": "Temple University - Of The Commonwealth System", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBGIAA", + "OrganizationName": "Palm Beach Diabetes Endocrine Specialists, P.A.", "NPIID": "", - "OrganizationZipCode": "19122" + "OrganizationZipCode": "33401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIBAA", - "OrganizationName": "Pulmonary Associates of Stockton, GP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIBBA", + "OrganizationName": "Pulmonary Sleep of Tampa Bay", "NPIID": "", - "OrganizationZipCode": "95210" + "OrganizationZipCode": "33511" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEDBA", - "OrganizationName": "Pueblo Pulmonary Associates Professional LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICIFBD", + "OrganizationName": "Sonoran Spine Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85281" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJBHAD", - "OrganizationName": "Primary and Alternative Medicine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAACA", + "OrganizationName": "STJ - South Macomb Internists", "NPIID": "", - "OrganizationZipCode": "20904" + "OrganizationZipCode": "48093" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJACA", - "OrganizationName": "Advocate - Deerbrook Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCBFAA", + "OrganizationName": "Family and Medical Counseling Service, Inc.", "NPIID": "", - "OrganizationZipCode": "60061" + "OrganizationZipCode": "20020" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJEICA", - "OrganizationName": "Jupiter Medical Center Physicians Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEGBD", + "OrganizationName": "Lanham Internal Medicine Associates LLC", "NPIID": "", - "OrganizationZipCode": "33458" + "OrganizationZipCode": "20770" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDGAA", - "OrganizationName": "West Charleston Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIEBA", + "OrganizationName": "Docu Family Medicine Center", "NPIID": "", - "OrganizationZipCode": "89102" + "OrganizationZipCode": "31405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBAFCA", - "OrganizationName": "Merced Lung Sleep", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHHIBD", + "OrganizationName": "Largo Foot Ankle Health Center", "NPIID": "", - "OrganizationZipCode": "95340" + "OrganizationZipCode": "20774" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEFCA", - "OrganizationName": "HCA - Morris Hanan, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCECD", + "OrganizationName": "Test-Jasper_Bandi", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIAABA", - "OrganizationName": "West Horizon Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGIHAA", + "OrganizationName": "Winters Healthcare Foundation, Redwood", "NPIID": "", - "OrganizationZipCode": "85745" + "OrganizationZipCode": "95694" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJCBCA", - "OrganizationName": "Schuyler Hospital Physician Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJHFCA", + "OrganizationName": "University of Kansas School of Medicine MPA", "NPIID": "", - "OrganizationZipCode": "14865" + "OrganizationZipCode": "67214" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFCAA", - "OrganizationName": "Brookhaven Heart PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFGBD", + "OrganizationName": "Drs Shanahan and Ferguson PC", "NPIID": "", - "OrganizationZipCode": "11772" + "OrganizationZipCode": "21620" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHEAD", - "OrganizationName": "Blue Water Pain Solutions", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCCBA", + "OrganizationName": "Gulf View WalkIn Clinics", "NPIID": "", - "OrganizationZipCode": "33029" + "OrganizationZipCode": "34653" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBEIAD", - "OrganizationName": "Michigan Interventional Pain Assoc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJBCD", + "OrganizationName": "Elevated Family Care", "NPIID": "", - "OrganizationZipCode": "48323" + "OrganizationZipCode": "80920" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBEAD", - "OrganizationName": "Washington Center for Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDFHBD", + "OrganizationName": "Internal Medicine Associates - TX", "NPIID": "", - "OrganizationZipCode": "98004" + "OrganizationZipCode": "78382" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDACBA", - "OrganizationName": "Greenwald Neurosurgical, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJFJCD", + "OrganizationName": "Test-Bill", "NPIID": "", - "OrganizationZipCode": "83404-5772" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGCFBA", - "OrganizationName": "Orange County Neurology Clinic, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACIDAA", + "OrganizationName": "Mahoney Dermatology Specialists, PA.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33773" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDAGBA", - "OrganizationName": "TexomaCare-Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAHDCD", + "OrganizationName": "Foot and Ankle Reconstruction of North GA", "NPIID": "", - "OrganizationZipCode": "75020" + "OrganizationZipCode": "30188" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGCFAA", - "OrganizationName": "Houston Cardiac Clinic.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGAAA", + "OrganizationName": "Medneph PA", "NPIID": "", - "OrganizationZipCode": "77024" + "OrganizationZipCode": "33401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIBACD", - "OrganizationName": "Michael Bublik, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIAABA", + "OrganizationName": "West Horizon Medical Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85745" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHHIBD", - "OrganizationName": "Largo Foot Ankle Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBHFCA", + "OrganizationName": "Great Lakes Foot Ankle Specialist", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "49684" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGGBD", - "OrganizationName": "Neurological Specialists of Central Florida, LCC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJADBD", + "OrganizationName": "Premier Dermatology of Florida", "NPIID": "", - "OrganizationZipCode": "34420" + "OrganizationZipCode": "32084" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJBCD", - "OrganizationName": "Arizona Advanced Surgery, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFGCD", + "OrganizationName": "BHATIA PULMONARY CENTER P.C", "NPIID": "", - "OrganizationZipCode": "85202" + "OrganizationZipCode": "89144" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICBEBD", - "OrganizationName": "Dynamic Foot Ankle Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCIFBD", + "OrganizationName": "Temecula Center for Integrative Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92591" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFGHCA", - "OrganizationName": "Hope Christian Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFDAD", + "OrganizationName": "PWMD - Brendon Connolly MD PL", "NPIID": "", - "OrganizationZipCode": "89030" + "OrganizationZipCode": "34233" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBIBA", - "OrganizationName": "Advocate - Lincoln Pediatrics Center PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEHABA", + "OrganizationName": "Huma Shakil, MD PA", "NPIID": "", - "OrganizationZipCode": "60659" + "OrganizationZipCode": "21502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBFCAA", - "OrganizationName": "Anne Marie Stilwell, M.D., P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHCABD", + "OrganizationName": "Dr. Yoel Vivas", "NPIID": "", - "OrganizationZipCode": "10305" + "OrganizationZipCode": "33484" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHFDAA", - "OrganizationName": "Maxwell Medical PLLC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHGDCD", + "OrganizationName": "Manaswi s Orthopedic", "NPIID": "", - "OrganizationZipCode": "33870" + "OrganizationZipCode": "33837" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDEEAA", - "OrganizationName": "Whaley, Andrew", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGFFAA", + "OrganizationName": "North Coast Professional Corporation", "NPIID": "", - "OrganizationZipCode": "78205" + "OrganizationZipCode": "44870" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCBEBA", - "OrganizationName": "Bayonet Point Hudson Cardiology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCHJAA", + "OrganizationName": "Pulmonary Critical Care and Sleep Specialists, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJADBD", - "OrganizationName": "Premier Dermatology of Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIJBBD", + "OrganizationName": "2HT Kidney Care Ltd", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFAFBA", - "OrganizationName": "HCA - Thyroid Endocrine Center of Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAAAAA", + "OrganizationName": "Maple Leaf Family Sports Medicine, LLC.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "43311" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCGBA", - "OrganizationName": "Valencia Associated Podiatrists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFGHCA", + "OrganizationName": "Hope Christian Healthcare", "NPIID": "", - "OrganizationZipCode": "87106" + "OrganizationZipCode": "89030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJGAA", - "OrganizationName": "Nasseri Clinic of Arthritic Rheumatic Diseases", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIIICD", + "OrganizationName": "UniVida Medical Centers", "NPIID": "", - "OrganizationZipCode": "21228" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBCFAA", - "OrganizationName": "Samuel Bada, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JABHAD", + "OrganizationName": "Community Health and Wellness Center of Greater Torrington", "NPIID": "", - "OrganizationZipCode": "38301" + "OrganizationZipCode": "06790" }, { "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGHCD", "OrganizationName": "Neuropathy and Pain Solutions Ltd", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "62226" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCDBCA", - "OrganizationName": "A Q Medical Care, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIDBA", + "OrganizationName": "Silicon Valley ENT and Sinus Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95032" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGGAD", - "OrganizationName": "Chrsitiana Spine Center, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJIBA", + "OrganizationName": "HCA - Arthritis Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIFAA", - "OrganizationName": "Medical Consultants of Palm Beach", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICCCA", + "OrganizationName": "HCA - Pulmonary Sleep Physicians of Houston", "NPIID": "", - "OrganizationZipCode": "33458" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJJCA", - "OrganizationName": "PROD-Palmetto Primary Care Physicians (PPCP)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEGDAA", + "OrganizationName": "Institute for Respiratory and Sleep Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "19007" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHBABD", - "OrganizationName": "Pain Specialists of Oregon", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFGDBD", + "OrganizationName": "Westborough Podiatry", "NPIID": "", - "OrganizationZipCode": "97401" + "OrganizationZipCode": "01581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAHIAD", - "OrganizationName": "Sudheer Karnati MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJJCA", + "OrganizationName": "C James Anderson", "NPIID": "", - "OrganizationZipCode": "75904" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGDHCD", - "OrganizationName": "Stephen D Sandoval, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGDGBA", + "OrganizationName": "CalHipso - Rao Sunkavally, M.D", "NPIID": "", - "OrganizationZipCode": "75092" + "OrganizationZipCode": "94538" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDACBA", - "OrganizationName": "Blair Renal Associates Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGHFBA", + "OrganizationName": "Grayslake Medical Group, LLC", "NPIID": "", - "OrganizationZipCode": "16601" + "OrganizationZipCode": "60030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHBDAD", - "OrganizationName": "Mauricio E. Melhado, M.D., P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGBAA", + "OrganizationName": "All Family Medical Center, Inc.", "NPIID": "", - "OrganizationZipCode": "33406" + "OrganizationZipCode": "33710" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEIFBA", - "OrganizationName": "David W Mansky DPM PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHBABD", + "OrganizationName": "Pain Specialists of Oregon", "NPIID": "", - "OrganizationZipCode": "49058" + "OrganizationZipCode": "97401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFIAD", - "OrganizationName": "Renal Care Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIDBCD", + "OrganizationName": "MIchigan Medical Advantage Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGBFCA", - "OrganizationName": "The Heart Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGFFBD", + "OrganizationName": "Kidney Specialists of Paducah and PLLC", "NPIID": "", - "OrganizationZipCode": "91406" + "OrganizationZipCode": "42003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEIJCA", - "OrganizationName": "Rice County Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIHFBD", + "OrganizationName": "Progressive Primary Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIBBD", - "OrganizationName": "Neurology Care PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIJCA", + "OrganizationName": "Deborah Eisen, MD", "NPIID": "", - "OrganizationZipCode": "75165" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHGHBA", - "OrganizationName": "Suburban Endocrinology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJECAD", + "OrganizationName": "Texas Urological Clinic", "NPIID": "", - "OrganizationZipCode": "19301" + "OrganizationZipCode": "75901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHJJAA", - "OrganizationName": "Internal Medicine South", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBEBA", + "OrganizationName": "Diabetes and Endocrine Wellness Center, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "35802" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJAAAA", - "OrganizationName": "SOUTHEAST UROLOGY", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDFJAD", + "OrganizationName": "Southern Gastroenterology Specialists", "NPIID": "", - "OrganizationZipCode": "38120" + "OrganizationZipCode": "30248" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECFAD", - "OrganizationName": "Indian River Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCBCD", + "OrganizationName": "Community Health Alliance", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "89502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEHCA", - "OrganizationName": "Center for Colon Digestive Disease", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJEBA", + "OrganizationName": "HCA - Family Foot and Ankle Care", "NPIID": "", - "OrganizationZipCode": "35801" + "OrganizationZipCode": "07871" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFBDD", - "OrganizationName": "Inceptivia Health Wellness LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEBCA", + "OrganizationName": "Jackson-Hinds Comprehensive Health", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "39207" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBCBD", - "OrganizationName": "Florida Pain Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAFJBD", + "OrganizationName": "Kyoung Lee, MD", "NPIID": "", - "OrganizationZipCode": "34711" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGDFCA", - "OrganizationName": "University Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBBCD", + "OrganizationName": "Ashford Orthopedic Specialists", "NPIID": "", - "OrganizationZipCode": "33321" + "OrganizationZipCode": "30606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDBJBA", - "OrganizationName": "Orthopedic Associates Of South Broward", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHJBDA", + "OrganizationName": "Krohn Clinic", "NPIID": "", - "OrganizationZipCode": "33021" + "OrganizationZipCode": "54615" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIJBA", - "OrganizationName": "High Desert Cardio-Pulmonary", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIDDAD", + "OrganizationName": "Lake Health Care Center", "NPIID": "", - "OrganizationZipCode": "92307" + "OrganizationZipCode": "32726" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEGEBD", - "OrganizationName": "Forest General Surgery, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBCFAA", + "OrganizationName": "Pinnacle Orthopaedics", "NPIID": "", - "OrganizationZipCode": "24382" + "OrganizationZipCode": "30060" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGBABA", - "OrganizationName": "HCA - Michael H.C. Wei, MD-PG", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBCBA", + "OrganizationName": "Sandlot - William J. Van Wyk, MD, PA", "NPIID": "", - "OrganizationZipCode": "33950" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJJDBA", - "OrganizationName": "Adventist - Nadar Dakak, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEHCA", + "OrganizationName": "Center for Colon Digestive Disease", "NPIID": "", - "OrganizationZipCode": "20769" + "OrganizationZipCode": "35801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCJIAD", - "OrganizationName": "Kindred Healthcare Operating Inc. - Palliative Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHIHCD", + "OrganizationName": "Magic Valley Pain and Spine Associates PLLC", "NPIID": "", - "OrganizationZipCode": "40202" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAJHBA", - "OrganizationName": "Arthritis \u0026 Osteoporosis", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBFIBD", + "OrganizationName": "Pain Management Specialists of Atlanta", "NPIID": "", - "OrganizationZipCode": "71101" + "OrganizationZipCode": "30281" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHBHAD", - "OrganizationName": "Advocate - Gateway Spine and Pain Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIBHAA", + "OrganizationName": "Westside Internal Medicine", "NPIID": "", - "OrganizationZipCode": "60440" + "OrganizationZipCode": "29301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGEGBD", - "OrganizationName": "Broward Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEJBD", + "OrganizationName": "Umpqua Internal Medicine PC", "NPIID": "", - "OrganizationZipCode": "33029" + "OrganizationZipCode": "97471" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AABFCD", - "OrganizationName": "Citrus Pulmonary Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJJFBA", + "OrganizationName": "Kofi Nuako, MD", "NPIID": "", - "OrganizationZipCode": "34429" + "OrganizationZipCode": "38261" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIHBAA", - "OrganizationName": "Family First Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAGFCA", + "OrganizationName": "Dale Davies, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDECA", - "OrganizationName": "Cardiovascular Surgery of Alexandria, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCGHAD", + "OrganizationName": "Sun Life Health Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85122" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBIEBD", - "OrganizationName": "Manalapan Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGEGBD", + "OrganizationName": "Broward Urology", "NPIID": "", - "OrganizationZipCode": "07726" + "OrganizationZipCode": "33029" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEFEAA", - "OrganizationName": "Gwinnett Center Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHJCCA", + "OrganizationName": "Sleep and Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJGBD", - "OrganizationName": "First Choice Endocrinology LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBIADA", + "OrganizationName": "Adventist - Comprehensive Primary Care", "NPIID": "", - "OrganizationZipCode": "32217" + "OrganizationZipCode": "20850" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGFBD", - "OrganizationName": "Denis Foot and Ankle Specialist", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGJHBD", + "OrganizationName": "Prime Healthcare Management Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78572" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAACBD", - "OrganizationName": "Kanghan Medical Services PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEDCCD", + "OrganizationName": "Big Horn Ankle Foot", "NPIID": "", - "OrganizationZipCode": "11354" + "OrganizationZipCode": "82435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABBDAA", - "OrganizationName": "Southern Endocrinology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCIBCD", + "OrganizationName": "Legacy Medical LLC", "NPIID": "", - "OrganizationZipCode": "75150" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJBBA", - "OrganizationName": "Advocate - Foot Ankle Associates Ltd", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJJDBA", + "OrganizationName": "Adventist - Nadar Dakak, M.D.", "NPIID": "", - "OrganizationZipCode": "60453" + "OrganizationZipCode": "20769" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFEAAA", - "OrganizationName": "Endocrinology, Diabetes and Osteoporosis Consultants, LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDHGBD", + "OrganizationName": "Paratus Medical Inc", "NPIID": "", - "OrganizationZipCode": "10704" + "OrganizationZipCode": "79414" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBAJBA", - "OrganizationName": "Thomas M. Boyle, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDADA", + "OrganizationName": "Fort Bend Cardiology PA", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGDBAA", - "OrganizationName": "Dermatology Physicians of Dallas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJCAA", + "OrganizationName": "Gulf Breeze Kidney Center", "NPIID": "", - "OrganizationZipCode": "75230" + "OrganizationZipCode": "34698" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHGAD", - "OrganizationName": "Foot Specialists of Alabama LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGHHAA", + "OrganizationName": "Philip Brown, M.D", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75231" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGGDCD", - "OrganizationName": "Inter American Primary Care LLC dba Inter", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCCJBD", + "OrganizationName": "Raman Tuli Md Pc", "NPIID": "", - "OrganizationZipCode": "31904" + "OrganizationZipCode": "20878" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGAGCA", - "OrganizationName": "Texas Spine Rehabilitation, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHHJBD", + "OrganizationName": "Robert Thomas MD FCCP", "NPIID": "", - "OrganizationZipCode": "75070" + "OrganizationZipCode": "29488" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDEBDA", - "OrganizationName": "Family Life Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBGCA", + "OrganizationName": "Pioneer Family Medicine", "NPIID": "", - "OrganizationZipCode": "77304" + "OrganizationZipCode": "83713" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFJAA", - "OrganizationName": "Ashesh Devendra Desai, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGAGCA", + "OrganizationName": "Texas Spine Rehabilitation, PA", "NPIID": "", - "OrganizationZipCode": "77380" + "OrganizationZipCode": "75070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFJECD", - "OrganizationName": "Advanced Pain Anesthesia Consultants PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBJEAD", + "OrganizationName": "Comprehensive Cardiovascular Consultants", "NPIID": "", - "OrganizationZipCode": "46311" + "OrganizationZipCode": "63127" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFABA", - "OrganizationName": "Southwestern Neuroscience Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFIJCD", + "OrganizationName": "Mountain Ridge Healthcare PLLC", "NPIID": "", - "OrganizationZipCode": "75039" + "OrganizationZipCode": "84043" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJBCD", - "OrganizationName": "Elevated Family Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFFIBD", + "OrganizationName": "Atlanta Gastroenterology Associates", "NPIID": "", - "OrganizationZipCode": "80920" + "OrganizationZipCode": "30097" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBJFBA", - "OrganizationName": "East Liverpool Professionals, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHBGAA", + "OrganizationName": "Sussex Pulmonary \u0026 Endocrine Consultants", "NPIID": "", - "OrganizationZipCode": "43920" + "OrganizationZipCode": "19971" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGDJBD", - "OrganizationName": "Central Orthopedic and Sports Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCHBA", + "OrganizationName": "Plymouth Ears Nose and Throat", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "02360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBDCA", - "OrganizationName": "Compass Health Systems", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGFBD", + "OrganizationName": "Denis Foot and Ankle Specialist", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDACA", - "OrganizationName": "Mir F. Shuttari M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIACCD", + "OrganizationName": "NORTHSTAR NEUROLOGY OF COLORADO SPRINGS, P.C", "NPIID": "", - "OrganizationZipCode": "02540" + "OrganizationZipCode": "80937" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCFDCA", - "OrganizationName": "New Creek Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIABCD", + "OrganizationName": "Cardiology Consultants of East Michigan", "NPIID": "", - "OrganizationZipCode": "26726" + "OrganizationZipCode": "48446" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDJFAA", - "OrganizationName": "Raby Institute for Integrative Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFHHCA", + "OrganizationName": "PINNACLE HEALTH CENTER", "NPIID": "", - "OrganizationZipCode": "60611" + "OrganizationZipCode": "85122" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHGIAD", - "OrganizationName": "Citrus Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIIHAD", + "OrganizationName": "South Shore Family Practice", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11762" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDAHCA", - "OrganizationName": "Apex Medical Specialists LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIAABD", + "OrganizationName": "Infectious Disease Consultants - GA", "NPIID": "", - "OrganizationZipCode": "85202" + "OrganizationZipCode": "30024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDGFBD", - "OrganizationName": "Chandana Konduru, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEGFAD", + "OrganizationName": "Hawkins Physician Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGIJBD", - "OrganizationName": "Central Oregon spine and Sports", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDGFBD", + "OrganizationName": "Chandana Konduru, MD", "NPIID": "", - "OrganizationZipCode": "97701" + "OrganizationZipCode": "76014" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDGDAD", - "OrganizationName": "Dean Richard Lindstrom, III MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBBIAD", + "OrganizationName": "United Cerebral Palsy Association of Nassau County", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11575" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADHCDA", - "OrganizationName": "Urology Center of So Fl", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHIAA", + "OrganizationName": "Virginia Rheumatology Clinic - Sam s Club", "NPIID": "", - "OrganizationZipCode": "33437" + "OrganizationZipCode": "23320" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEHABA", - "OrganizationName": "Huma Shakil, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJICD", + "OrganizationName": "Complete cardiac vascular care, pllc", "NPIID": "", - "OrganizationZipCode": "21502" + "OrganizationZipCode": "76063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEABD", - "OrganizationName": "Advocate - Metro Family Practice SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEJAD", + "OrganizationName": "Precision Endocrinology", "NPIID": "", - "OrganizationZipCode": "60056" + "OrganizationZipCode": "76208" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBBBBA", - "OrganizationName": "Nashville Family Foot Care, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGDBAA", + "OrganizationName": "Dermatology Physicians of Dallas", "NPIID": "", - "OrganizationZipCode": "37203" + "OrganizationZipCode": "75230" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AADECD", - "OrganizationName": "Rapid Response Medical Care PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIIGBD", + "OrganizationName": "Redi-Med LLC", "NPIID": "", - "OrganizationZipCode": "11010" + "OrganizationZipCode": "34119" }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFCJBD", - "OrganizationName": "John P Malloy IV, DO", + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJHAA", + "OrganizationName": "HCA - Texoma Neurology Associates", "NPIID": "", - "OrganizationZipCode": "33064" + "OrganizationZipCode": "75092" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACIAA", - "OrganizationName": "Central PA Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJBCCD", + "OrganizationName": "Kansas City Bone and Joint", "NPIID": "", - "OrganizationZipCode": "16602" + "OrganizationZipCode": "66211" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCFEAA", - "OrganizationName": "Dr Kyle Potts", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIABBA", + "OrganizationName": "HCA - North Texas Lung Sleep Clinic", "NPIID": "", - "OrganizationZipCode": "93291" + "OrganizationZipCode": "76109" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBGCA", - "OrganizationName": "University Foot and Ankle Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAJHBD", + "OrganizationName": "New Life Heart Care LLC", "NPIID": "", - "OrganizationZipCode": "90403-5742" + "OrganizationZipCode": "32789" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHEECD", - "OrganizationName": "LAKE WALES FOOT AND ANKLE CARE, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACACA", + "OrganizationName": "West Brookfield Family Practice", "NPIID": "", - "OrganizationZipCode": "33853" + "OrganizationZipCode": "01585" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGHAD", - "OrganizationName": "Change Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBICCD", + "OrganizationName": "Pain Physicians of Wisconsin, S.C.", "NPIID": "", - "OrganizationZipCode": "26062" + "OrganizationZipCode": "53105" }, { "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCICCA", @@ -9637,82 +9541,70 @@ "OrganizationZipCode": "30009" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICEGBD", - "OrganizationName": "Benjamin Liess, ENT, LLC", - "NPIID": "", - "OrganizationZipCode": "04074" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJGEBA", - "OrganizationName": "Nassim Haddad, MD, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGEEBD", + "OrganizationName": "BORDER CLINIC PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78041" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGHHAA", - "OrganizationName": "NYCDOHMH - Khin Aung Medical PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHEAD", + "OrganizationName": "Family Health of South Texas", "NPIID": "", - "OrganizationZipCode": "11373" + "OrganizationZipCode": "78201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCJAD", - "OrganizationName": "Reliance Medical Management, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIFBD", + "OrganizationName": "General and Vascular Surgery of Northwest Alabama", "NPIID": "", - "OrganizationZipCode": "93020" + "OrganizationZipCode": "35653" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICCCA", - "OrganizationName": "HCA - Pulmonary Sleep Physicians of Houston", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBEAA", + "OrganizationName": "Southwestern Colorado Ear, Nose and Throat Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAHHAD", - "OrganizationName": "Columbus Cardiovascular Assoicates Inc", - "NPIID": "", - "OrganizationZipCode": "43213" - }, - { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHBCD", - "OrganizationName": "OMAR M JEROUDI, M.D. P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGIHAA", + "OrganizationName": "New England Uro-Gynocology", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "01801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFGGBD", - "OrganizationName": "Central Valley Kidney Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBDCA", + "OrganizationName": "Compass Health Systems", "NPIID": "", - "OrganizationZipCode": "93277" + "OrganizationZipCode": "33161" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJCHBD", - "OrganizationName": "Bela Urogynecology, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBGBD", + "OrganizationName": "NADER MAHMOOD MD LLC", "NPIID": "", - "OrganizationZipCode": "34786" + "OrganizationZipCode": "07503" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJHAD", - "OrganizationName": "RAJNIKANT KUSHWAHA, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACICA", + "OrganizationName": "Gastroenterology and Nutrition of Central Florida", "NPIID": "", - "OrganizationZipCode": "77387" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEEGBD", - "OrganizationName": "Nephrology Associates of Knoxville", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADCBD", + "OrganizationName": "Schlesinger Pain Centers", "NPIID": "", - "OrganizationZipCode": "37920" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AADFAA", - "OrganizationName": "Macon Lung and Atlantic Sleep Lab", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJDBA", + "OrganizationName": "Mirabien, PLLC", "NPIID": "", - "OrganizationZipCode": "31201" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJIHBD", - "OrganizationName": "Womans Clinic PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFGCBA", + "OrganizationName": "THR-Jeff Zhao, D.O.", "NPIID": "", - "OrganizationZipCode": "38301" + "OrganizationZipCode": "75149" }, { "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJJBBA", @@ -9721,5578 +9613,5638 @@ "OrganizationZipCode": "32958" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFADD", - "OrganizationName": "Test Facility-Himanshu", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFJFCD", + "OrganizationName": "Barrington Pain and Spine Institute", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "60010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEAHAA", - "OrganizationName": "Vascular and Vein Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCAFBA", + "OrganizationName": "Corpus Christi Gastro", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78412" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBEBA", - "OrganizationName": "Diabetes and Endocrine Wellness Center, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJFFCA", + "OrganizationName": "Ability Rehab Associates", + "NPIID": "", + "OrganizationZipCode": "21801" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFAGBA", + "OrganizationName": "HCA - Neil Schultz", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFJAD", - "OrganizationName": "Oconee Family Medical Center, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHEABD", + "OrganizationName": "Bartlett Regional Hospital", "NPIID": "", - "OrganizationZipCode": "31061" + "OrganizationZipCode": "99801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBFAA", - "OrganizationName": "Florida Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBGBA", + "OrganizationName": "Pulmonary Care Specialists PA", "NPIID": "", - "OrganizationZipCode": "34741" + "OrganizationZipCode": "75010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBFBA", - "OrganizationName": "Advocate - Oscar Alonso MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGIJBD", + "OrganizationName": "Central Oregon spine and Sports", "NPIID": "", - "OrganizationZipCode": "60515" + "OrganizationZipCode": "97701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGADCD", - "OrganizationName": "InStride Foot Ankle Specialists PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCFBBD", + "OrganizationName": "Legacy Orthopedics, PLLC", "NPIID": "", - "OrganizationZipCode": "28025" + "OrganizationZipCode": "75248" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHJDCD", - "OrganizationName": "MEDICO LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFIAA", + "OrganizationName": "Rehabilitation and Electrodiagnostics, PA", "NPIID": "", - "OrganizationZipCode": "60616" + "OrganizationZipCode": "33602" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCDDAD", - "OrganizationName": "McGreevy NeuroHealth", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBGECD", + "OrganizationName": "Philip Wisotsky MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "20603" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJCBD", - "OrganizationName": "Vein and Vascular Experts", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHIDCD", + "OrganizationName": "TEXAS SURGERY CENTER, PA", "NPIID": "", - "OrganizationZipCode": "33812" + "OrganizationZipCode": "77340" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGACD", - "OrganizationName": "Blue Water Internal Medicine PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCEAA", + "OrganizationName": "La Clinica del Pueblo, Inc", "NPIID": "", - "OrganizationZipCode": "48060" + "OrganizationZipCode": "20009" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDEJBD", - "OrganizationName": "Sun Laser Vision Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEHJBD", + "OrganizationName": "Texoma ENT Allergy", "NPIID": "", - "OrganizationZipCode": "79912" + "OrganizationZipCode": "76310" }, { "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIHGCD", "OrganizationName": "Perez Orthopedics, LLC", "NPIID": "", - "OrganizationZipCode": "77904" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHABA", - "OrganizationName": "Texas Skin Surgery Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIBBCA", + "OrganizationName": "HCA - Tampa Bay Family Physicians, INC", "NPIID": "", - "OrganizationZipCode": "75093" + "OrganizationZipCode": "33573" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJIGCD", - "OrganizationName": "Caruso Foot and Ankle LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJBAA", + "OrganizationName": "Katherine Atkinson MD PC", "NPIID": "", - "OrganizationZipCode": "07728" + "OrganizationZipCode": "01002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAICCA", - "OrganizationName": "Advocate - Alawad Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGIJBD", + "OrganizationName": "Health Center Network of New York", "NPIID": "", - "OrganizationZipCode": "60415" + "OrganizationZipCode": "12206" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBICAA", - "OrganizationName": "Midtown Neurology, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGJCA", + "OrganizationName": "Michael Nicoson MD - Hand and Wrist of Louisville, PLLC", "NPIID": "", - "OrganizationZipCode": "30312" + "OrganizationZipCode": "40223" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEBBCD", - "OrganizationName": "Dallas Regenerative and Neuropathy Center PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGBCCA", + "OrganizationName": "Adventist - Qiufang Cheng, M.D.", "NPIID": "", - "OrganizationZipCode": "75093" + "OrganizationZipCode": "20877" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIBDA", - "OrganizationName": "Wheatland Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJDDBA", + "OrganizationName": "Pradeep Mahal, M.D.", "NPIID": "", - "OrganizationZipCode": "45885" + "OrganizationZipCode": "07083" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFFAD", - "OrganizationName": "Heart and Vascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCFEAA", + "OrganizationName": "Dr Kyle Potts", "NPIID": "", - "OrganizationZipCode": "63640" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCHBCA", - "OrganizationName": "Philip Blum, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGDAA", + "OrganizationName": "Castle Country Orthopaedics and Sports Medicine", "NPIID": "", - "OrganizationZipCode": "77024" + "OrganizationZipCode": "84501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGDBA", - "OrganizationName": "MPR - Remon Obeid, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAAIAD", + "OrganizationName": "West Virginia Orthopedic Trauma", "NPIID": "", - "OrganizationZipCode": "45365" + "OrganizationZipCode": "25801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBDIAA", - "OrganizationName": "HCA - Terre Haute Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCGJAA", + "OrganizationName": "Alex Zand, MD", + "NPIID": "", + "OrganizationZipCode": "92868" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFEAA", + "OrganizationName": "Metropolitan Cardiology, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDJBD", - "OrganizationName": "Christopher VandeLune MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGICD", + "OrganizationName": "Medical Cares Associates - Prattville, LLC", "NPIID": "", - "OrganizationZipCode": "51012" + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCJCD", + "OrganizationName": "Lynn O Connor Physician P.C.", + "NPIID": "", + "OrganizationZipCode": "11743" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDIGAD", + "OrganizationName": "California Neurosurgical Institute", + "NPIID": "", + "OrganizationZipCode": "91355" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADHAA", - "OrganizationName": "Hawaii Pacific Neuroscience, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJDAD", + "OrganizationName": "Manuel Gonzalez MD", "NPIID": "", - "OrganizationZipCode": "96813" + "OrganizationZipCode": "78041" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCJCD", - "OrganizationName": "Lynn O Connor Physician P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHHBD", + "OrganizationName": "Ludlow Medical Center", "NPIID": "", - "OrganizationZipCode": "11743" + "OrganizationZipCode": "01056" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDJCA", - "OrganizationName": "Affiliated Urologists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGDEBA", + "OrganizationName": "Rashid Elahi, MD", "NPIID": "", - "OrganizationZipCode": "85012" + "OrganizationZipCode": "95116" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDHGBD", - "OrganizationName": "Paratus Medical Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAHHAD", + "OrganizationName": "Columbus Cardiovascular Assoicates Inc", "NPIID": "", - "OrganizationZipCode": "79414" + "OrganizationZipCode": "43213" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBEIBA", - "OrganizationName": "Advocate - Cardiovascular Care Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIHCD", + "OrganizationName": "Hunterdon Neurology PA", "NPIID": "", - "OrganizationZipCode": "60453" + "OrganizationZipCode": "08801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICBJBA", - "OrganizationName": "ASPA - Ronald Lee", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCBJAD", + "OrganizationName": "Dearborn Family Clinic", "NPIID": "", - "OrganizationZipCode": "85295" + "OrganizationZipCode": "48124" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDDCD", - "OrganizationName": "Texas Modern Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAJCCD", + "OrganizationName": "KIDNEY HEALTH SPECIALISTS,LLC", "NPIID": "", - "OrganizationZipCode": "75402" + "OrganizationZipCode": "33024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEJAD", - "OrganizationName": "Cano Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIAACA", + "OrganizationName": "Nilesh Patel, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECBCD", - "OrganizationName": "Integrity Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIEIAD", + "OrganizationName": "Madaiah Revana MD", "NPIID": "", - "OrganizationZipCode": "77450" + "OrganizationZipCode": "77396" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEJICA", - "OrganizationName": "Sardini Arthritis Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGBBA", + "OrganizationName": "Kidney Hypertension Clinic", "NPIID": "", - "OrganizationZipCode": "78240" + "OrganizationZipCode": "30045" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBIBA", - "OrganizationName": "RPM Medical Billing", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABIBAA", + "OrganizationName": "Lung and Chest Medicine", "NPIID": "", - "OrganizationZipCode": "80111" + "OrganizationZipCode": "29303" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCDCAA", - "OrganizationName": "Ringpfeil Advanced Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICJAAA", + "OrganizationName": "Texas ENT Specialists PA", "NPIID": "", - "OrganizationZipCode": "19096" + "OrganizationZipCode": "77065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHBCA", - "OrganizationName": "Chambers Memorial Hospital Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADICCD", + "OrganizationName": "Farr Medical Group, Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "93312" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJCBD", - "OrganizationName": "Physicians Clinic of Iowa", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEBDAA", + "OrganizationName": "Sleep Centers of Middle Tennessee", "NPIID": "", - "OrganizationZipCode": "52403" + "OrganizationZipCode": "37129" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDGCA", - "OrganizationName": "Rush - Advanced Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFGCD", + "OrganizationName": "Bradenton Women s Care", "NPIID": "", - "OrganizationZipCode": "60077" + "OrganizationZipCode": "34209" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIACCD", - "OrganizationName": "NORTHSTAR NEUROLOGY OF COLORADO SPRINGS, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDEECD", + "OrganizationName": "Bluth Family Medicine, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "73096" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEIAA", - "OrganizationName": "Ranjit Grewal MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEEGBD", + "OrganizationName": "Nephrology Associates of Knoxville", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "37920" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAHAAA", - "OrganizationName": "Dr Riaz Mohammad", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIAJCA", + "OrganizationName": "Dr. Erick C. Derocher, DO", "NPIID": "", - "OrganizationZipCode": "77082" + "OrganizationZipCode": "73644" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGCCDA", - "OrganizationName": "Desert Angels Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIEDBD", + "OrganizationName": "Joseph P. Camero, MD", "NPIID": "", - "OrganizationZipCode": "86442" + "OrganizationZipCode": "78041" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDGCD", - "OrganizationName": "Interventional Spine and Pain Institute, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IADGAD", + "OrganizationName": "Bradley D. Rodgers, MD", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "68847" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFDDAA", - "OrganizationName": "Wellspring Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHCIAA", + "OrganizationName": "Caring Cardiology Medical Group", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92653" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEHAA", - "OrganizationName": "Middle Tennessee Neurology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFGACD", + "OrganizationName": "QUALITY NEUROLOGY", "NPIID": "", - "OrganizationZipCode": "37076" + "OrganizationZipCode": "32055" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJECCA", - "OrganizationName": "Garey Orhopedic Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCBCD", + "OrganizationName": "Colombia Medical Group, LLC", "NPIID": "", - "OrganizationZipCode": "91767" + "OrganizationZipCode": "33467" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJBICD", - "OrganizationName": "Heartcare MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGBBA", + "OrganizationName": "Bluegrass Kidney Consultants", "NPIID": "", - "OrganizationZipCode": "76051" + "OrganizationZipCode": "40059" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFJBD", - "OrganizationName": "Total Healthcare, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIIBAA", + "OrganizationName": "Idicula Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFFAA", - "OrganizationName": "Westwood Primary Care,PPLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGAICD", + "OrganizationName": "Advanced Garden State Cardiology LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "07306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFFCD", - "OrganizationName": "Patricia A. Larson, M.D. Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHIIBD", + "OrganizationName": "Key Medical Associates", "NPIID": "", - "OrganizationZipCode": "60007" + "OrganizationZipCode": "93277" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCJCA", - "OrganizationName": "Weiyan Tan Physician, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBIFCA", + "OrganizationName": "Cranberry Square Dermatology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "02660" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCBCD", - "OrganizationName": "Colombia Medical Group, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFCAA", + "OrganizationName": "Atlanta Heart Specialists", "NPIID": "", - "OrganizationZipCode": "33467" + "OrganizationZipCode": "30084" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJBCCD", - "OrganizationName": "Kansas City Bone and Joint", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFJAD", + "OrganizationName": "Oconee Family Medical Center, PC", "NPIID": "", - "OrganizationZipCode": "66211" + "OrganizationZipCode": "31061" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGHHAA", - "OrganizationName": "Seton Medical Group - St.Agnes", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGEGCD", + "OrganizationName": "Vadim Petrov, MD", "NPIID": "", - "OrganizationZipCode": "21229" + "OrganizationZipCode": "31313" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFJACA", - "OrganizationName": "Mount Rainier Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDBCBD", + "OrganizationName": "Gulf Coast Rheumatology", "NPIID": "", - "OrganizationZipCode": "98506" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEEDAD", - "OrganizationName": "Shaver Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEFBBA", + "OrganizationName": "Kris G. McGrath, MD", + "NPIID": "", + "OrganizationZipCode": "60611" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGHAD", + "OrganizationName": "Nephrology Group of Northeast Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHHBD", - "OrganizationName": "Omar Manlapaz, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDCCD", + "OrganizationName": "Remix Medical, PLLC", "NPIID": "", - "OrganizationZipCode": "75254" + "OrganizationZipCode": "77098" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFBBBA", - "OrganizationName": "Marina Kuperman-Beade, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHDBD", + "OrganizationName": "Southwest Allergy and Asthma Associates PA", "NPIID": "", - "OrganizationZipCode": "02904" + "OrganizationZipCode": "79936" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEHAD", - "OrganizationName": "Gastro Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJJGBD", + "OrganizationName": "El Portal Cancer Center", "NPIID": "", - "OrganizationZipCode": "33173" + "OrganizationZipCode": "95348" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCFAD", - "OrganizationName": "A M R Pain and Spine Clinic LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAFBCA", + "OrganizationName": "New Wave Internal Medicine", "NPIID": "", - "OrganizationZipCode": "63141" + "OrganizationZipCode": "39564-3421" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGIBBA", - "OrganizationName": "Primary Care Group, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIBACD", + "OrganizationName": "Fairbanks Partners, LLC dba Orlando Neurosurgery", "NPIID": "", - "OrganizationZipCode": "38104" + "OrganizationZipCode": "32789" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDCCA", - "OrganizationName": "OHS - Juan Estigarribia MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGJDBD", + "OrganizationName": "Anwer Jaffri, MD (Wabash Infectious Disease)", "NPIID": "", - "OrganizationZipCode": "48124" + "OrganizationZipCode": "47802" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEBFBA", - "OrganizationName": "Cardio Vascular Consultants- CA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHCCAA", + "OrganizationName": "Cranberry Medical Clinic", "NPIID": "", - "OrganizationZipCode": "93637" + "OrganizationZipCode": "26764" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAFECA", - "OrganizationName": "Daryl M. McClendon, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEJADA", + "OrganizationName": "KSC Cardiology", "NPIID": "", - "OrganizationZipCode": "99508" + "OrganizationZipCode": "33881" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJIAA", - "OrganizationName": "Heart Care Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICAFAA", + "OrganizationName": "Unity Health Care,Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "20003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJADCA", - "OrganizationName": "Advocate-Geri Med Services Ltd Rekha Sharma", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDEJBD", + "OrganizationName": "Sun Laser Vision Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "79912" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDJCD", - "OrganizationName": "Greater Baden Medical Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBJCD", + "OrganizationName": "B3 Universal Management, LLC", "NPIID": "", - "OrganizationZipCode": "20613" + "OrganizationZipCode": "33647" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHDBD", - "OrganizationName": "Southwest Allergy and Asthma Associates PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEBACA", + "OrganizationName": "Eastern Surgical Associates, P.C.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "35235" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJDBA", - "OrganizationName": "Mirabien, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFCBA", + "OrganizationName": "HCA - Ngai Nguyen, M.D.", "NPIID": "", - "OrganizationZipCode": "85712" + "OrganizationZipCode": "95112" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDEECD", - "OrganizationName": "PALM BEACH HEART CLINIC,P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFJBCA", + "OrganizationName": "Neuroscience Consultants, LLC", "NPIID": "", - "OrganizationZipCode": "33477" + "OrganizationZipCode": "33178" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBBIBA", - "OrganizationName": "South Florida Endocrine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDBECD", + "OrganizationName": "Family Health Center of Clark County", "NPIID": "", - "OrganizationZipCode": "33458" + "OrganizationZipCode": "47130" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGICCA", - "OrganizationName": "Negrey Eye Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJECAD", + "OrganizationName": "Central Louisiana Rhumatology Infusion Center", "NPIID": "", - "OrganizationZipCode": "19083" + "OrganizationZipCode": "71303" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBIBD", - "OrganizationName": "Advanced Vein and Vascular Management, PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJABCA", + "OrganizationName": "South Lake Gastroenterology", "NPIID": "", - "OrganizationZipCode": "49242" + "OrganizationZipCode": "34711" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCGCA", - "OrganizationName": "Cancer Care Chemotherapy Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCFDAA", + "OrganizationName": "Mittal Kidney and Dialysis", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "38120" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBDBA", - "OrganizationName": "Adventist - Rosie Singh, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJGCCD", + "OrganizationName": "Dr. Paul B. Ross, The Podiatry", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "20814" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEJAD", - "OrganizationName": "Betsy Perez, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEJAD", + "OrganizationName": "AMH Family Practice Clinic", "NPIID": "", - "OrganizationZipCode": "05661" + "OrganizationZipCode": "68756" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHCHBA", - "OrganizationName": "Premier Care Family Clinic, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIECCA", + "OrganizationName": "Arkansas Methodist", "NPIID": "", - "OrganizationZipCode": "77521" + "OrganizationZipCode": "72450" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJBHCA", - "OrganizationName": "Primary Care Walk-In Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGDBA", + "OrganizationName": "MPR - Remon Obeid, MD", "NPIID": "", - "OrganizationZipCode": "85268" + "OrganizationZipCode": "45365" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGADCA", - "OrganizationName": "Carrico Congleton Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDHIAA", + "OrganizationName": "Columbia Memorial Hospital- New", "NPIID": "", - "OrganizationZipCode": "42301-4557" + "OrganizationZipCode": "12534-2907" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFIAA", - "OrganizationName": "Rehabilitation and Electrodiagnostics, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCJBD", + "OrganizationName": "Anesthesia Associates of KC, PC dba Pain", "NPIID": "", - "OrganizationZipCode": "33602" + "OrganizationZipCode": "66210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEDAA", - "OrganizationName": "NYCDOHMH-Zoe Liu Medical Office", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAIAAA", + "OrganizationName": "Shalini Mali", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "07042" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCBBD", - "OrganizationName": "A Plus Family Healthcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDFBA", + "OrganizationName": "Voyage Healthcare", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "55445" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGJDCD", - "OrganizationName": "Claiborne Memorial Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJGBA", + "OrganizationName": "Virginia Diabetes and Endocrinology, PC", "NPIID": "", - "OrganizationZipCode": "71040" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIIDAA", - "OrganizationName": "Allergy, Asthma Immunology Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGAICA", + "OrganizationName": "Southwest Kidney and Hypertension Specialists", "NPIID": "", - "OrganizationZipCode": "62269" + "OrganizationZipCode": "77036" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABFEBA", - "OrganizationName": "Dharmendra Verma", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADIBD", + "OrganizationName": "SUNSHINE RHEUMATOLOGY AND ARTHRITIS CENTER LLC", "NPIID": "", - "OrganizationZipCode": "77901" + "OrganizationZipCode": "33573" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFBCAA", - "OrganizationName": "David Williams MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBFIAA", + "OrganizationName": "Newark CHC", "NPIID": "", - "OrganizationZipCode": "16505" + "OrganizationZipCode": "07104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBIBDD", - "OrganizationName": "YurHealth, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJEGBA", + "OrganizationName": "Srinivas Pavuluri MD", "NPIID": "", - "OrganizationZipCode": "30442" + "OrganizationZipCode": "07733" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDGBBD", - "OrganizationName": "Wayne Urology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFHBD", + "OrganizationName": "Main Street Medical PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "29926" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBBDCD", - "OrganizationName": "CERIUM URGENT CARE, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABACDA", + "OrganizationName": "Prabhasadanam G. Sadhujan, M.D.", "NPIID": "", - "OrganizationZipCode": "30084" + "OrganizationZipCode": "01605" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEGCAD", - "OrganizationName": "Alexandra Kidd", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDDCD", + "OrganizationName": "Texas Modern Gastroenterology", "NPIID": "", - "OrganizationZipCode": "85258" + "OrganizationZipCode": "75402" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBIEAD", - "OrganizationName": "Blue Coast Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHCDA", + "OrganizationName": "Michigan Pain Management Consultants", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48374" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFEAA", - "OrganizationName": "Metropolitan Cardiology, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCIAD", + "OrganizationName": "Christ Community Health Services TN", "NPIID": "", - "OrganizationZipCode": "77702" + "OrganizationZipCode": "38112" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICEGAA", - "OrganizationName": "Southwest Heart and Vascular Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEBJAD", + "OrganizationName": "Advocate - Retina Health institute", "NPIID": "", - "OrganizationZipCode": "85364" + "OrganizationZipCode": "60123" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGAICA", - "OrganizationName": "Southwest Kidney and Hypertension Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICIEAA", + "OrganizationName": "Syed J Raza MD", "NPIID": "", - "OrganizationZipCode": "77036" + "OrganizationZipCode": "92307" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCJABD", - "OrganizationName": "James T. Meredith, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGEGCA", + "OrganizationName": "California Clinical Thrombosis Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIEDAD", - "OrganizationName": "Premier Healthcare Services LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCFCAD", + "OrganizationName": "Neurology Clinic of Jacksonville", "NPIID": "", - "OrganizationZipCode": "20850" + "OrganizationZipCode": "32256" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFCEAA", - "OrganizationName": "AZ Endocrine Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDIJAD", + "OrganizationName": "Eileen Turbessi MD PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEFDCA", - "OrganizationName": "HCA - Allergy Arthritis Treatment Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AOMNYC", + "OrganizationName": "Artisans of Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11220" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFEAD", - "OrganizationName": "North Florida Primary Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAAIBA", + "OrganizationName": "Trust Medical Services", "NPIID": "", - "OrganizationZipCode": "32246" + "OrganizationZipCode": "43213" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCGBD", - "OrganizationName": "Dr. Rose Osowik", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEDBD", + "OrganizationName": "Maximed Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "20906" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAGCCA", - "OrganizationName": "IRINA A MININA MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJDGCA", + "OrganizationName": "Rush - Advanced Urology", "NPIID": "", - "OrganizationZipCode": "78526" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEBBD", - "OrganizationName": "Beaumont Nephrology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGJABD", + "OrganizationName": "Alice Ramsey MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "76067" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBICA", - "OrganizationName": "Gitlin Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGIAD", + "OrganizationName": "Accumed Center", "NPIID": "", - "OrganizationZipCode": "89128" + "OrganizationZipCode": "60005" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABHJCD", - "OrganizationName": "Frederick Njuki, M.D., P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIIBD", + "OrganizationName": "Carolina Pulmonary Physicians, P.A.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "29732" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGBBA", - "OrganizationName": "Kidney Hypertension Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBCFAA", + "OrganizationName": "Steven Fried MD.", "NPIID": "", - "OrganizationZipCode": "30045" + "OrganizationZipCode": "11021" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIAIAA", - "OrganizationName": "Valley Endocrine Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEADD", + "OrganizationName": "Matthew Schaeffer MD P.C", "NPIID": "", - "OrganizationZipCode": "85206" + "OrganizationZipCode": "19382" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHEABA", - "OrganizationName": "Peninsula Allergy Asthma", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIJCA", + "OrganizationName": "Adriana Pop-Moody Clinic PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "37066" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGIFAA", - "OrganizationName": "Lawton Community Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIBBD", + "OrganizationName": "Neurology and Sleep Clinic - TX", "NPIID": "", - "OrganizationZipCode": "73505" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEBJAD", - "OrganizationName": "Advocate - Retina Health institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFCDCA", + "OrganizationName": "Arthritis Treatment Specialists", "NPIID": "", - "OrganizationZipCode": "60123" + "OrganizationZipCode": "88001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJDCBA", - "OrganizationName": "Ata Ahmad, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADAHCA", + "OrganizationName": "The Physicians", "NPIID": "", - "OrganizationZipCode": "77065" + "OrganizationZipCode": "30328" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHCDCD", - "OrganizationName": "Cardiovascular Associates of Arizona", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGGBA", + "OrganizationName": "Nitin K. G. Golechha, M.D., P.C.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGCCA", - "OrganizationName": "DO Sleep Solutions", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGDABD", + "OrganizationName": "Huntington Pulmonary Medical Group (HPMG)", "NPIID": "", - "OrganizationZipCode": "33756" + "OrganizationZipCode": "91105" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEEJCA", - "OrganizationName": "Mid Florida Cardiovascular Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFJBD", + "OrganizationName": "Total Healthcare, Inc", "NPIID": "", - "OrganizationZipCode": "33880" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBIGBA", - "OrganizationName": "Dow Pulmonary", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHHBD", + "OrganizationName": "Oklahoma Pain Institute, PLLC", "NPIID": "", - "OrganizationZipCode": "75013" + "OrganizationZipCode": "73115" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJCCD", - "OrganizationName": "ELVIN R GARCIA,MD,PA dba Valley Arthritis Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGEABD", + "OrganizationName": "C and D Pulmonary", "NPIID": "", - "OrganizationZipCode": "78501" + "OrganizationZipCode": "34667" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGIGCD", - "OrganizationName": "East Ohio Regional Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCHGBD", + "OrganizationName": "Lawrence A. Alder, M.D., PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78028" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDCJBD", - "OrganizationName": "Medical Associates of the Shoals", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIFDBA", + "OrganizationName": "Adventist - Washington Endocrinology", "NPIID": "", - "OrganizationZipCode": "35660" + "OrganizationZipCode": "20878" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBICD", - "OrganizationName": "Gallup Community Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFCJBD", + "OrganizationName": "Alliance Spine and Pain Management", "NPIID": "", - "OrganizationZipCode": "87301" + "OrganizationZipCode": "78006" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDFBCA", - "OrganizationName": "Tak-Leominster Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEEDAD", + "OrganizationName": "Rheumatology Care of North Houston, PLLC", "NPIID": "", - "OrganizationZipCode": "01453" + "OrganizationZipCode": "77070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFGACD", - "OrganizationName": "QUALITY NEUROLOGY", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAEEBA", + "OrganizationName": "Cedars Heart Clinic", "NPIID": "", - "OrganizationZipCode": "32055" + "OrganizationZipCode": "85286" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBFECA", - "OrganizationName": "Northeast Allergy, Asthma Immunology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAIGBA", + "OrganizationName": "Tennessee Rheumatology Center for Inflammatory Disease", "NPIID": "", - "OrganizationZipCode": "01453" + "OrganizationZipCode": "37203" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACJBA", - "OrganizationName": "Woodlands Arthritis Clinic PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDJBBA", + "OrganizationName": "Ajaipal S Gill, M.D.", "NPIID": "", - "OrganizationZipCode": "77384" + "OrganizationZipCode": "95991" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBCFAA", - "OrganizationName": "Steven Fried MD.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEIEAA", + "OrganizationName": "Mary s Center for Maternal and Child Care, Inc", "NPIID": "", - "OrganizationZipCode": "11021" + "OrganizationZipCode": "20009" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJGFBA", - "OrganizationName": "Buford Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJIBA", + "OrganizationName": "Suffolk Cardic Care PLLC", "NPIID": "", - "OrganizationZipCode": "30518" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCAHCA", - "OrganizationName": "SMMH - Michigan Vascular Access", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEJCBA", + "OrganizationName": "NYCDOHMH - Advanced Gynecology and Surgery", "NPIID": "", - "OrganizationZipCode": "48076" + "OrganizationZipCode": "11235" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCFJCA", - "OrganizationName": "Banji Awosika, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGHJAA", + "OrganizationName": "John McHenry, MD", "NPIID": "", - "OrganizationZipCode": "34761" + "OrganizationZipCode": "75234" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJADA", - "OrganizationName": "Northwest Houston Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJABDA", + "OrganizationName": "Washington DC STD/TB Clinics", "NPIID": "", - "OrganizationZipCode": "77375" + "OrganizationZipCode": "20002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDCBA", - "OrganizationName": "Advocate - Fox Glen Gastro", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABEJBA", + "OrganizationName": "TKFMC - Gurtej Dhillon, MD", "NPIID": "", - "OrganizationZipCode": "60010" + "OrganizationZipCode": "93277" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHACBA", - "OrganizationName": "Digestive Disease Associates of Central Flordia", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAFBDA", + "OrganizationName": "American Medical Associates", "NPIID": "", - "OrganizationZipCode": "33812" + "OrganizationZipCode": "85295" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFEAD", - "OrganizationName": "Salman Ahmad, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDBADD", + "OrganizationName": "Michael R. Gatto,M.D.,Inc.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92262" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBBEAA", - "OrganizationName": "Chesapeake Bay Pain Medicine, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGAGAA", + "OrganizationName": "Western Kentucky Heart and Lung Associates", "NPIID": "", - "OrganizationZipCode": "23455" + "OrganizationZipCode": "42101" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJAADA", - "OrganizationName": "Rehab Associates of Bowling Green", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEJICD", + "OrganizationName": "Above Beyond Wellness Medspa", "NPIID": "", - "OrganizationZipCode": "42104" + "OrganizationZipCode": "28337" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDCCD", - "OrganizationName": "Remix Medical, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACIFBA", + "OrganizationName": "Jitesh Patel", "NPIID": "", - "OrganizationZipCode": "77098" + "OrganizationZipCode": "30078" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIEBA", - "OrganizationName": "Faith Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJIAA", + "OrganizationName": "Heart Care Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIIHBA", - "OrganizationName": "Daniel Kapp MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECBHCD", + "OrganizationName": "Boca Raton Neurologic Associates", "NPIID": "", - "OrganizationZipCode": "33401" + "OrganizationZipCode": "33486" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEAAA", - "OrganizationName": "Clark Dermatology, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCACD", + "OrganizationName": "ENT Sleep Specialists", "NPIID": "", - "OrganizationZipCode": "07066" + "OrganizationZipCode": "20770" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIDAA", - "OrganizationName": "South Texas Arthritis Care Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FECHBA", + "OrganizationName": "HCA - All-Star Orthopedics Sports", "NPIID": "", - "OrganizationZipCode": "78229" + "OrganizationZipCode": "75063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIFDBA", - "OrganizationName": "Adventist - Washington Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJJGBA", + "OrganizationName": "Asthma and Allergy Center", "NPIID": "", - "OrganizationZipCode": "20878" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIIDAA", - "OrganizationName": "NYCDOHMH-8Ave Medical Office PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFJDCD", + "OrganizationName": "Respire Pulmonary and Sleep Medicine LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34428" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJABBA", - "OrganizationName": "Step Ahead Foot Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEGFAD", + "OrganizationName": "Andro Sharobiem, MD, Inc.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92506" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFHECA", - "OrganizationName": "HCA - Adrian Ma, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHAAA", + "OrganizationName": "Jose M. Roque, M.D., Inc.", "NPIID": "", - "OrganizationZipCode": "95116" + "OrganizationZipCode": "92868" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBFDAA", - "OrganizationName": "NYCDOHMH-Barry Weinberg, MD.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHGACD", + "OrganizationName": "Ear Medical Group PA", "NPIID": "", - "OrganizationZipCode": "10021" + "OrganizationZipCode": "78240" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCBCA", - "OrganizationName": "Woodrome Medical PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJHCA", + "OrganizationName": "Schreier Family Medicine LLC", "NPIID": "", - "OrganizationZipCode": "77351" + "OrganizationZipCode": "64024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBICBD", - "OrganizationName": "Gastroenterology Associates, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBIBD", + "OrganizationName": "Advanced Vein and Vascular Management, PLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "49242" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIDAAA", - "OrganizationName": "Associates of Internal Medicine, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFEAA", + "OrganizationName": "Katy Rheumatology Associates", "NPIID": "", - "OrganizationZipCode": "33446" + "OrganizationZipCode": "77094" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCHIAA", - "OrganizationName": "Kidney Specialists of the Bay Area", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACFCAD", + "OrganizationName": "Gulf Coast Medical Center", "NPIID": "", - "OrganizationZipCode": "77598" + "OrganizationZipCode": "34668" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABBCBD", - "OrganizationName": "Ohio Gastroenterology Group Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHJJCA", + "OrganizationName": "Orlando Arthritis Institute", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32806" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAACBD", - "OrganizationName": "Malek Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCICCD", + "OrganizationName": "Amir Manzoor,MD,PA", "NPIID": "", - "OrganizationZipCode": "07764" + "OrganizationZipCode": "32405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFJBCA", - "OrganizationName": "Neuroscience Consultants, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDACD", + "OrganizationName": "Neurology Consultants of North Alabama Inc", "NPIID": "", - "OrganizationZipCode": "33178" + "OrganizationZipCode": "35801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBGEBD", - "OrganizationName": "Ashford Pain Solutions", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGADAA", + "OrganizationName": "Advanced Dermatology and Cosmetic Center, LLC.", "NPIID": "", - "OrganizationZipCode": "30606" + "OrganizationZipCode": "20814-191" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEIBA", - "OrganizationName": "Mid South Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJACA", + "OrganizationName": "Monica O. Woodward, MD, PA", "NPIID": "", - "OrganizationZipCode": "38671" + "OrganizationZipCode": "34110" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJIBA", - "OrganizationName": "Howard Goldman", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCECCA", + "OrganizationName": "Sudhir Sehgal MD PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77340" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJABDA", - "OrganizationName": "Washington DC STD/TB Clinics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCBBD", + "OrganizationName": "A Plus Family Healthcare", "NPIID": "", - "OrganizationZipCode": "20002" + "OrganizationZipCode": "42210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCBEBA", - "OrganizationName": "Comprehensive Vascular Care PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAEBBD", + "OrganizationName": "West Valley Endocrinology and Diabetes", "NPIID": "", - "OrganizationZipCode": "48075" + "OrganizationZipCode": "85338" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECCFCD", - "OrganizationName": "Cardiology Partners", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHEGAD", + "OrganizationName": "Surgical Healing Arts Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33967" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJJIBD", - "OrganizationName": "Atlantic Neurosurgical Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBFFAD", + "OrganizationName": "Dr Adam Madsen Orthopedic Surgery", "NPIID": "", - "OrganizationZipCode": "07960" + "OrganizationZipCode": "84078" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAACA", - "OrganizationName": "Mid South Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGDDAA", + "OrganizationName": "Yogesh Trehan MD", "NPIID": "", - "OrganizationZipCode": "38464" + "OrganizationZipCode": "94513" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGAEAD", - "OrganizationName": "CHRISTINE P LEWIS MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGCBD", + "OrganizationName": "Family Practice Physicians", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "99801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEHCD", - "OrganizationName": "Homecare Partners Management LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJICA", + "OrganizationName": "Sumeet Bhinder MD INC", "NPIID": "", - "OrganizationZipCode": "32256" + "OrganizationZipCode": "93312" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCBBA", - "OrganizationName": "NYCDOHMH - Chinatown Physician, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJFAA", + "OrganizationName": "Family Physicians Of Spartanburg PC", "NPIID": "", - "OrganizationZipCode": "10013" + "OrganizationZipCode": "29301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICGCD", - "OrganizationName": "K S HEALTHCARE LLC dba Northeast Prohealth", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJEAD", + "OrganizationName": "HCA - Chesapeake Medical Associates P.A.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "21061" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAIAAA", - "OrganizationName": "Shalini Mali", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAEGBD", + "OrganizationName": "Renal Specialists of North Texas", "NPIID": "", - "OrganizationZipCode": "07042" + "OrganizationZipCode": "75015" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IACJBA", - "OrganizationName": "Tatambhotla MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBDCD", + "OrganizationName": "Stamford Primary Care", "NPIID": "", - "OrganizationZipCode": "34461" + "OrganizationZipCode": "06905" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJGCD", - "OrganizationName": "Aesclepion Healthcare LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBECA", + "OrganizationName": "HCA - Janin Heart Vascular Institute, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFJBA", - "OrganizationName": "HCA - Table Mountain Foot and Ankle", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHCAD", + "OrganizationName": "Arthritis Center of Orlando", "NPIID": "", - "OrganizationZipCode": "80033" + "OrganizationZipCode": "34761" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJJGBA", - "OrganizationName": "Asthma and Allergy Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHFHBA", + "OrganizationName": "Florida Foot and Ankle Physicians, PA", "NPIID": "", - "OrganizationZipCode": "68123" + "OrganizationZipCode": "33904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJBFBA", - "OrganizationName": "Atlanta Allergy Asthma Clinic, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCBHAA", + "OrganizationName": "Wrightington Rheumatology", "NPIID": "", - "OrganizationZipCode": "30144" + "OrganizationZipCode": "31405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHGCD", - "OrganizationName": "InterMed", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAJADD", + "OrganizationName": "Dr Joseph Weinstein", "NPIID": "", - "OrganizationZipCode": "04106" + "OrganizationZipCode": "38128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCCHBD", - "OrganizationName": "Advanced Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBFAD", + "OrganizationName": "Waring Endocrine Associates, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHJCCD", - "OrganizationName": "Nitesh D Kuhadiya, MD MPH, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFEAD", + "OrganizationName": "North Florida Primary Associates", "NPIID": "", - "OrganizationZipCode": "89502" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFGBD", - "OrganizationName": "Nephrology Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDCDCA", + "OrganizationName": "Canadian Valley Family Care", "NPIID": "", - "OrganizationZipCode": "32114" + "OrganizationZipCode": "73099" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAICAA", - "OrganizationName": "Nicholas A. Pietrzak MD, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGIHBD", + "OrganizationName": "CENLA Kidney Specialists LLC", "NPIID": "", - "OrganizationZipCode": "31210" + "OrganizationZipCode": "71301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIIECD", - "OrganizationName": "Las Cruces Internists LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFFCD", + "OrganizationName": "Longhorn Brain and Spine PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJAEAA", - "OrganizationName": "ATL Colorectal Surgery, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEBCA", + "OrganizationName": "South County Endocrinology and Obesity Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "63128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACHCA", - "OrganizationName": "Advanas Foot and Ankle Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBBJAA", + "OrganizationName": "Digestive Healthcare Associates", "NPIID": "", - "OrganizationZipCode": "49091" + "OrganizationZipCode": "85037" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJDAA", - "OrganizationName": "Carson Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHDHAD", + "OrganizationName": "A. Dhandayuthanpani, MD, PC", "NPIID": "", - "OrganizationZipCode": "89703" + "OrganizationZipCode": "31904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJHBA", - "OrganizationName": "Manhattan Cardiac Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGAJAD", + "OrganizationName": "Shirley Wong MD SC", "NPIID": "", - "OrganizationZipCode": "10002" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEDIBA", - "OrganizationName": "Penn Psychiatric Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJFAA", + "OrganizationName": "Northern Heart and Vascular Institute.", "NPIID": "", - "OrganizationZipCode": "19426" + "OrganizationZipCode": "96001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBABD", - "OrganizationName": "Heart Vein and Vascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADCBD", + "OrganizationName": "Sunshine State Womens Care, LLC", "NPIID": "", - "OrganizationZipCode": "32779" + "OrganizationZipCode": "33431" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCICCD", - "OrganizationName": "Amir Manzoor,MD,PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIBBCD", + "OrganizationName": "ACTON MEDICAL ASSOCIATES P.C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBIHBA", - "OrganizationName": "University Pain Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIIABD", + "OrganizationName": "Medical Associates of Clinton", "NPIID": "", - "OrganizationZipCode": "08755" + "OrganizationZipCode": "52732" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBCCCA", - "OrganizationName": "Lisa Lewis MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBEAD", + "OrganizationName": "XyrFlu48OYFD", "NPIID": "", - "OrganizationZipCode": "80215" + "OrganizationZipCode": "78229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEJBBA", - "OrganizationName": "Roper - Rheumatology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABHECD", + "OrganizationName": "Sanjeev K. Goswami, MD, Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIEBA", - "OrganizationName": "Lifepoint - Minden Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCDCA", + "OrganizationName": "Physician Providers", "NPIID": "", - "OrganizationZipCode": "71055" + "OrganizationZipCode": "34471" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJHGBD", - "OrganizationName": "Lakeland Physicians, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFGBBD", + "OrganizationName": "Central Montana Heart and Vascular Institute LLC", "NPIID": "", - "OrganizationZipCode": "35565" + "OrganizationZipCode": "59405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGEGAA", - "OrganizationName": "North Quabbin Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFIAAA", + "OrganizationName": "Bonita Internal Medicine", "NPIID": "", - "OrganizationZipCode": "01331" + "OrganizationZipCode": "34135" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGFACA", - "OrganizationName": "Advocate - Midwest Sleep Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEHIBA", + "OrganizationName": "CARE RITE PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "38024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIEBA", - "OrganizationName": "Docu Family Medicine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFAIBD", + "OrganizationName": "Wilmington Surgical Assoc.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "28401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHGEBA", - "OrganizationName": "Advocate - J M Tang Associates SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAJACD", + "OrganizationName": "Advanced Arthritis and Rheumatology Care PC", "NPIID": "", - "OrganizationZipCode": "60453" + "OrganizationZipCode": "23112" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJJJAA", - "OrganizationName": "Dermatology Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHCAA", + "OrganizationName": "Fremont Neurology Medical Associates, Inc", "NPIID": "", - "OrganizationZipCode": "27403" + "OrganizationZipCode": "94536" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIDAA", - "OrganizationName": "North Georgia Diabetes And Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCGHAA", + "OrganizationName": "Brent Spencer,MD", "NPIID": "", - "OrganizationZipCode": "30041" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCAHAD", - "OrganizationName": "CAROLINA DIABETES AND KIDNEY CENTER", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECBDA", + "OrganizationName": "Intermountain Heart Center", "NPIID": "", - "OrganizationZipCode": "29150" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGFJBD", - "OrganizationName": "Mark Minor, MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCFJCA", + "OrganizationName": "Banji Awosika, MD", "NPIID": "", - "OrganizationZipCode": "32936" + "OrganizationZipCode": "34761" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJBAA", - "OrganizationName": "Premier Gastroenterology, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJGBD", + "OrganizationName": "Veritas Health Group", "NPIID": "", - "OrganizationZipCode": "34613" + "OrganizationZipCode": "29072" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGDDAA", - "OrganizationName": "Yogesh Trehan MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDHAD", + "OrganizationName": "Florida Gulf Internal Medicine", "NPIID": "", - "OrganizationZipCode": "94513" + "OrganizationZipCode": "33908" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CICEBA", - "OrganizationName": "Pulmonary Specialists of the Palm Beaches", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBIBAA", + "OrganizationName": "Arthritis Care Center", "NPIID": "", - "OrganizationZipCode": "33470" + "OrganizationZipCode": "61265" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAFBBA", - "OrganizationName": "Digestive Disease Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BACGAD", + "OrganizationName": "Andrew Word, MD", "NPIID": "", - "OrganizationZipCode": "32701" + "OrganizationZipCode": "75205" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIIADA", - "OrganizationName": "Northside Hospital Inc DBA Endocrine Specialists of Atlanta", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAABA", + "OrganizationName": "HMA - Dr. Debbie Reiland", "NPIID": "", - "OrganizationZipCode": "30342" + "OrganizationZipCode": "350954" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEJCA", - "OrganizationName": "Southeast PA Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJCBA", + "OrganizationName": "Apollo Health, LLC", "NPIID": "", - "OrganizationZipCode": "33880" + "OrganizationZipCode": "08759" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHEBA", - "OrganizationName": "Holistic Houston Pain Center, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AICBBD", + "OrganizationName": "StratiFi - Fort Worth Medical Specialists", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJEJAD", - "OrganizationName": "Means Adult Primary Care Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIHIBD", + "OrganizationName": "Luis A Casas MD LLC", "NPIID": "", - "OrganizationZipCode": "40353" + "OrganizationZipCode": "20707" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAHDCD", - "OrganizationName": "Foot and Ankle Reconstruction of North GA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFEAA", + "OrganizationName": "Center for Spine Pain Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "30720" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHHBD", + "OrganizationName": "Surgical Associates, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJBDA", - "OrganizationName": "Lung and Asthma Clinic PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHGBCD", + "OrganizationName": "Satish Sivasankaran, M.D.,P.A", "NPIID": "", - "OrganizationZipCode": "77030" + "OrganizationZipCode": "34688" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDCBD", - "OrganizationName": "Fairbanks Urology LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAABDA", + "OrganizationName": "Baltimore Medical Associates, LLC", "NPIID": "", - "OrganizationZipCode": "99701" + "OrganizationZipCode": "21117" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFCBA", - "OrganizationName": "TKFMC - Ashok Verma, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBHCA", + "OrganizationName": "HCA - Cardiology Associates of South Florida", "NPIID": "", - "OrganizationZipCode": "93277" + "OrganizationZipCode": "33472" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFEBA", - "OrganizationName": "HCA - General Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCACCA", + "OrganizationName": "John Kartsonis", "NPIID": "", - "OrganizationZipCode": "78229" + "OrganizationZipCode": "32256" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIAJAD", - "OrganizationName": "Advocate - Golden Rule Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCHIAA", + "OrganizationName": "Kidney Specialists of the Bay Area", "NPIID": "", - "OrganizationZipCode": "60564" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJIBA", - "OrganizationName": "Elizabeth J McShane MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEFCA", + "OrganizationName": "Indian River Physicians", "NPIID": "", - "OrganizationZipCode": "90606-2549" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJHCCD", - "OrganizationName": "Diabetes and Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGBDA", + "OrganizationName": "Affiliates in Footcare", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "01801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHFHBA", - "OrganizationName": "Florida Foot and Ankle Physicians, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFCHBA", + "OrganizationName": "Alabama Heart and Vascular Medicine", "NPIID": "", - "OrganizationZipCode": "33904" + "OrganizationZipCode": "35406-2300" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJJBD", - "OrganizationName": "Bristow Endeavor Healthcare, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJCBD", + "OrganizationName": "The Lung Consultants", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "76104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHDCBA", - "OrganizationName": "Advocate - SFZ Corporation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEEGCD", + "OrganizationName": "Sharon Vitale PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33478" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFICA", - "OrganizationName": "Cardiovascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGEICD", + "OrganizationName": "ORLES PAIN MANAGEMENT AND REGENERATIVE MEDICINE GROUP, PA", "NPIID": "", - "OrganizationZipCode": "77375" + "OrganizationZipCode": "32216" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEDDBA", - "OrganizationName": "Newman Physicians Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHBCBD", + "OrganizationName": "Burns Family Practice", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77566" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BACBDD", - "OrganizationName": "Genesys Diagnostics, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFCABA", + "OrganizationName": "Yong W. Chung, MD Inc.", "NPIID": "", - "OrganizationZipCode": "06370" + "OrganizationZipCode": "92704-5718" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBFHAD", - "OrganizationName": "Eastern Utah Spine and Pain", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCBEBA", + "OrganizationName": "Comprehensive Vascular Care PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48075" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIJBBD", - "OrganizationName": "2HT Kidney Care Ltd", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHGBA", + "OrganizationName": "Anil Sharma", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "08757" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCEACA", - "OrganizationName": "Advocate - Retina Consultants Ltd.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICAEAD", + "OrganizationName": "Manhattan Allergy Immunology Rheumatology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "10075" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFEBDA", - "OrganizationName": "Maurice Reinoso, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHCBCA", + "OrganizationName": "Frontline Medical Group LLC", "NPIID": "", - "OrganizationZipCode": "77479" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECJBDA", - "OrganizationName": "Central Virginia Health Services Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGIAAA", + "OrganizationName": "Pain Treatment Associates,LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "65775" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFAGCA", - "OrganizationName": "New York City REC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCJBA", + "OrganizationName": "Physicians Housecalls Direct of Central Florida, LLC", "NPIID": "", - "OrganizationZipCode": "10013" + "OrganizationZipCode": "34205" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGAACA", - "OrganizationName": "Tinyee Chang MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBBBCD", + "OrganizationName": "Center for Advanced Gyn Urogynecology", "NPIID": "", - "OrganizationZipCode": "96002" + "OrganizationZipCode": "20815" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCBADA", - "OrganizationName": "Digestive Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IACJBA", + "OrganizationName": "Tatambhotla MD PA", "NPIID": "", - "OrganizationZipCode": "89030" + "OrganizationZipCode": "34461" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCEHAD", - "OrganizationName": "ALBA Pulmonary Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDAJCD", + "OrganizationName": "McMillion Medical Group", "NPIID": "", - "OrganizationZipCode": "85224" + "OrganizationZipCode": "35801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFFFCD", - "OrganizationName": "Longhorn Brain and Spine PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIECA", + "OrganizationName": "Apurva Advanced Medical Care", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "86301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFACCD", - "OrganizationName": "Invictus Health, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFIEAD", + "OrganizationName": "Ouachita Family Practice", "NPIID": "", - "OrganizationZipCode": "23606" + "OrganizationZipCode": "71953" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDFAA", - "OrganizationName": "Wilmington Dermatology Center, PLLC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIIBBD", + "OrganizationName": "Neel Raya, MD Inc", "NPIID": "", - "OrganizationZipCode": "28403" + "OrganizationZipCode": "43130" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJGBA", - "OrganizationName": "STJ - Digestive Health Associates PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GECCCA", + "OrganizationName": "Botsford - Tri County Orthopedics", "NPIID": "", - "OrganizationZipCode": "48334" + "OrganizationZipCode": "48336" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIFBCA", - "OrganizationName": "Family Care Clinic of Fresno", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDFHBA", + "OrganizationName": "HCA - Greater Houston Digestive Disease Consultants", "NPIID": "", - "OrganizationZipCode": "93710" + "OrganizationZipCode": "77380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBGCBD", - "OrganizationName": "Jacksonville Spine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJDCD", + "OrganizationName": "Dr. Tamader H. Mira, P.A.", "NPIID": "", - "OrganizationZipCode": "32256" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDAABA", - "OrganizationName": "HCA - Harmony Heart Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIIECD", + "OrganizationName": "Las Cruces Internists LLC", "NPIID": "", - "OrganizationZipCode": "75075" + "OrganizationZipCode": "88011" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGHFBA", - "OrganizationName": "Grayslake Medical Group, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJDBA", + "OrganizationName": "Horizons Diagnostics, L.L.C", "NPIID": "", - "OrganizationZipCode": "60030" + "OrganizationZipCode": "31904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAGFCD", - "OrganizationName": "Rao Heart Vascular, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJCBCA", + "OrganizationName": "Schuyler Hospital Physician Group", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "14865" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAADAD", - "OrganizationName": "Bucks Thyroid Endocrine Care, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJHCBD", + "OrganizationName": "AMITA - Mansoor Khan MD", "NPIID": "", - "OrganizationZipCode": "19067" + "OrganizationZipCode": "60007" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEACCD", - "OrganizationName": "MKR Medical PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFJCD", + "OrganizationName": "Ozark Tricounty Health Consortium dba Access Family Care", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "4850" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDIADA", - "OrganizationName": "Rappahannock Foot and Ankle Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBEGBA", + "OrganizationName": "JOSE A GAUDIER MD, PA", "NPIID": "", - "OrganizationZipCode": "22408" + "OrganizationZipCode": "34474" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDACAA", - "OrganizationName": "Corvallis Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBIHBA", + "OrganizationName": "University Pain Associates", "NPIID": "", - "OrganizationZipCode": "97330" + "OrganizationZipCode": "08755" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACGBA", - "OrganizationName": "STJ - Drs Dubay, Jacobs, Orfanou, and Silapaswan", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICBEBD", + "OrganizationName": "Dynamic Foot Ankle Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "22079" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DADCBD", - "OrganizationName": "Sunshine State Womens Care, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDHICA", + "OrganizationName": "Barry V Thompson MD", "NPIID": "", - "OrganizationZipCode": "33431" + "OrganizationZipCode": "71635" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFEBCA", - "OrganizationName": "Center for Arthritis and Rheumatic Diseases", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCAADA", + "OrganizationName": "Poonam Gill MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60169" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDECD", - "OrganizationName": "Hepzibah Family Medical clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCDBCA", + "OrganizationName": "A Q Medical Care, PLLC", "NPIID": "", - "OrganizationZipCode": "96913" + "OrganizationZipCode": "11211" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFGBD", - "OrganizationName": "Southeast Alabama Rural Health Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBAAA", + "OrganizationName": "Preventive Medicine Associates, PLLC", "NPIID": "", - "OrganizationZipCode": "36079" + "OrganizationZipCode": "13001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBFGAD", - "OrganizationName": "Shailja Kaul, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCAHAD", + "OrganizationName": "CAROLINA DIABETES AND KIDNEY CENTER", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "29150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIJAD", - "OrganizationName": "Starling Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIDFAA", + "OrganizationName": "Ashook Mittal, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33709" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAFJBD", - "OrganizationName": "Kyoung Lee, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECFAD", + "OrganizationName": "Indian River Primary Care", "NPIID": "", - "OrganizationZipCode": "30024" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCDCD", - "OrganizationName": "FERRER PRIMARY CARE INSTITUTE, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAGFAD", + "OrganizationName": "A Plus Pulmonary Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85381" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBDAD", - "OrganizationName": "Wesley Community and Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAHAD", + "OrganizationName": "Salim Dabaghi MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77515" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGIFBA", - "OrganizationName": "STJ - Internal Medicine Plus", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDFBD", + "OrganizationName": "Rheumatology Specialists of Paducah", "NPIID": "", - "OrganizationZipCode": "48334" + "OrganizationZipCode": "42003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIEAA", - "OrganizationName": "Catawba Valley Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEJCA", + "OrganizationName": "Southeast PA Pain Management", "NPIID": "", - "OrganizationZipCode": "28602" + "OrganizationZipCode": "33880" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGAJCD", - "OrganizationName": "Ocean Allergy Partners, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIHBAA", + "OrganizationName": "Family First Medical", "NPIID": "", - "OrganizationZipCode": "08724" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFGBA", - "OrganizationName": "HCA - Dr. Linh Dang", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEHCA", + "OrganizationName": "HCA - Central Florida Heart Center", "NPIID": "", - "OrganizationZipCode": "77304" + "OrganizationZipCode": "34474" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFIAAA", - "OrganizationName": "Bonita Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDGFCA", + "OrganizationName": "Khair Family Practice", "NPIID": "", - "OrganizationZipCode": "34135" + "OrganizationZipCode": "30253" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBDAD", - "OrganizationName": "Ohio Pain Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDEBDA", + "OrganizationName": "Family Life Medical", "NPIID": "", - "OrganizationZipCode": "45458" + "OrganizationZipCode": "77304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJABBA", - "OrganizationName": "Advocate-Head Neck and Cosmetic Surgery Associates Ltd", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCIBD", + "OrganizationName": "Harlem Medical Group PC", "NPIID": "", - "OrganizationZipCode": "60604" + "OrganizationZipCode": "10027" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHJFBD", - "OrganizationName": "Community Pain Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGDFCA", + "OrganizationName": "Salem Surgical Associates", "NPIID": "", - "OrganizationZipCode": "11354" + "OrganizationZipCode": "24153" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBEFBA", - "OrganizationName": "STJ - Michigan Spine and Brain Surgeons PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJHCCD", + "OrganizationName": "Diabetes and Endocrinology", "NPIID": "", - "OrganizationZipCode": "48075" + "OrganizationZipCode": "78539" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADDFBA", - "OrganizationName": "Ramtown Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHHCAD", + "OrganizationName": "Urbancare, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60156" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGIAD", - "OrganizationName": "ANSAARIE CARDIAC ENDOVASCULAR CENTER", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDAHCA", + "OrganizationName": "Apex Medical Specialists LLC", "NPIID": "", - "OrganizationZipCode": "32092" + "OrganizationZipCode": "85202" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIHDCD", - "OrganizationName": "AMITA-Shaheen Fatima, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBICCD", + "OrganizationName": "Premier Medical Doctors PPLC", "NPIID": "", - "OrganizationZipCode": "60645" + "OrganizationZipCode": "77027" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDBFCD", - "OrganizationName": "Rheumatology Clinic Of Lima, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJEICA", + "OrganizationName": "Jupiter Medical Center Physicians Group", "NPIID": "", - "OrganizationZipCode": "45801" + "OrganizationZipCode": "33458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAGFCA", - "OrganizationName": "Dale Davies, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICEGBD", + "OrganizationName": "Benjamin Liess, ENT, LLC", "NPIID": "", - "OrganizationZipCode": "75092" + "OrganizationZipCode": "04074" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJABD", - "OrganizationName": "BPN Family Medicine Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFEBDA", + "OrganizationName": "Maurice Reinoso, MD", "NPIID": "", - "OrganizationZipCode": "77701" + "OrganizationZipCode": "77479" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGGECA", - "OrganizationName": "Advocate - Varsha Bhan, M.D. SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/D1ADAA", + "OrganizationName": "Ventura Ortho-Ventura Office", "NPIID": "", - "OrganizationZipCode": "60429" + "OrganizationZipCode": "93003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABFFCA", - "OrganizationName": "Advocate - Dr. GJ Winters Foot Ankle Center LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAEJAA", + "OrganizationName": "The Spine and Brain Institute", "NPIID": "", - "OrganizationZipCode": "60030" + "OrganizationZipCode": "89052" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAIGCD", - "OrganizationName": "PRC Associates, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICBJBA", + "OrganizationName": "ASPA - Ronald Lee", "NPIID": "", - "OrganizationZipCode": "32117" + "OrganizationZipCode": "85295" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIGBD", - "OrganizationName": "PVC Management, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADDCD", + "OrganizationName": "Coplin Health Systems", "NPIID": "", - "OrganizationZipCode": "33312" + "OrganizationZipCode": "26143" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBJBD", - "OrganizationName": "MIDWEST PAIN CLINICS, P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFACCD", + "OrganizationName": "Invictus Health, LLC", "NPIID": "", - "OrganizationZipCode": "68114" + "OrganizationZipCode": "23606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJGBD", - "OrganizationName": "Veritas Health Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACDBD", + "OrganizationName": "Welim Azinge, MD Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92243" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJBBA", - "OrganizationName": "Spring Branch Podiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFDDAA", + "OrganizationName": "Wellspring Family Medicine", "NPIID": "", - "OrganizationZipCode": "77055" + "OrganizationZipCode": "29203" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEIBA", - "OrganizationName": "Main Line Allergy", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIGBAA", + "OrganizationName": "North Alabama Primary Care", "NPIID": "", - "OrganizationZipCode": "19406" + "OrganizationZipCode": "35611" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIJBD", - "OrganizationName": "Main Street Family Medicine Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEHAD", + "OrganizationName": "Gastro Health", "NPIID": "", - "OrganizationZipCode": "38340" + "OrganizationZipCode": "33173" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJHCAD", - "OrganizationName": "Scenic Bluffs Community Health Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHEBA", + "OrganizationName": "Jeffery Liu, M.D.", "NPIID": "", - "OrganizationZipCode": "54619" + "OrganizationZipCode": "96813" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFDCBA", - "OrganizationName": "Cumberland Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEACCD", + "OrganizationName": "MKR Medical PC", "NPIID": "", - "OrganizationZipCode": "37075" + "OrganizationZipCode": "11746" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDDFCD", - "OrganizationName": "MEDISWAN LLC dba Dr. G Medical Solutions", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBBIBA", + "OrganizationName": "South Florida Endocrine Center", "NPIID": "", - "OrganizationZipCode": "77351" + "OrganizationZipCode": "33458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCCJBD", - "OrganizationName": "Raman Tuli Md Pc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFHBA", + "OrganizationName": "HCA - Bishnu P Verma MD PC", "NPIID": "", - "OrganizationZipCode": "20878" + "OrganizationZipCode": "32725" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECIJCA", - "OrganizationName": "Sugarland Neurology Sleep", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBFGAD", + "OrganizationName": "Shailja Kaul, MD", "NPIID": "", - "OrganizationZipCode": "77479" + "OrganizationZipCode": "19047" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJHBA", - "OrganizationName": "Victoria Heart Vascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFHBD", + "OrganizationName": "Coastal Gastroenterology", "NPIID": "", - "OrganizationZipCode": "77901" + "OrganizationZipCode": "29926" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFFDBD", - "OrganizationName": "Urology Partners", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEAEAD", + "OrganizationName": "Apollo Pain Care, LLC", "NPIID": "", - "OrganizationZipCode": "34205" + "OrganizationZipCode": "33175" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICICAA", - "OrganizationName": "Advanced Dermatology Skin Surgery, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCJABD", + "OrganizationName": "James T. Meredith, MD, PA", "NPIID": "", - "OrganizationZipCode": "08701" + "OrganizationZipCode": "72335" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACCAA", - "OrganizationName": "Integrative Pain Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABAFCD", + "OrganizationName": "Palo Verde Pain Specialists", "NPIID": "", - "OrganizationZipCode": "60195" + "OrganizationZipCode": "85381" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHHBD", - "OrganizationName": "Surgical Associates, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDBCAA", + "OrganizationName": "Associates In Otolaryngology Head and Neck Surgery P.C.", "NPIID": "", - "OrganizationZipCode": "74055" + "OrganizationZipCode": "01609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDJDCA", - "OrganizationName": "Godwin DSouza, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJDCBA", + "OrganizationName": "Ata Ahmad, MD", "NPIID": "", - "OrganizationZipCode": "60634" + "OrganizationZipCode": "77065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHAEAA", - "OrganizationName": "Medcom Health Services, PA.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIGIBD", + "OrganizationName": "Bernard Schayes MD PC", "NPIID": "", - "OrganizationZipCode": "08232" + "OrganizationZipCode": "10075" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHDHCA", - "OrganizationName": "Beth Anglin, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCAHCA", + "OrganizationName": "SMMH - Michigan Vascular Access", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48076" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAIGAD", - "OrganizationName": "Sacred Circle Health Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEBHAD", + "OrganizationName": "Belmont Family Practice", "NPIID": "", - "OrganizationZipCode": "84111" + "OrganizationZipCode": "21804" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEGCAD", - "OrganizationName": "Lawrence Katin, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJEBD", + "OrganizationName": "Starmount Management", "NPIID": "", - "OrganizationZipCode": "19301" + "OrganizationZipCode": "28208" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIIHAD", - "OrganizationName": "South Shore Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFHECA", + "OrganizationName": "HCA - Adrian Ma, MD", "NPIID": "", - "OrganizationZipCode": "11762" + "OrganizationZipCode": "95116" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEHADD", - "OrganizationName": "Neel French, M.D., S.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJCGBD", + "OrganizationName": "Ted L Freeman MD", "NPIID": "", - "OrganizationZipCode": "60614" + "OrganizationZipCode": "08724" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIHCCA", - "OrganizationName": "HCA - South Texas Pulmonary and Critical Care Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBFCBA", + "OrganizationName": "Skin Cancer Consultants PA", "NPIID": "", - "OrganizationZipCode": "78404" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCCBDA", - "OrganizationName": "JK Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECCFCD", + "OrganizationName": "Cardiology Partners", "NPIID": "", - "OrganizationZipCode": "30024" + "OrganizationZipCode": "76063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBHBD", - "OrganizationName": "Pulmonary and Critical Care Specialists INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCCHBD", + "OrganizationName": "Advanced Pain Management", "NPIID": "", - "OrganizationZipCode": "43537" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDCAA", - "OrganizationName": "Ellen Turner, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIEBA", + "OrganizationName": "Lifepoint - Minden Family Medicine", "NPIID": "", - "OrganizationZipCode": "78216" + "OrganizationZipCode": "71055" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGCCA", - "OrganizationName": "Pain Management Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBIGCA", + "OrganizationName": "Cancer Surgery Associates", "NPIID": "", - "OrganizationZipCode": "35244" + "OrganizationZipCode": "07601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDGIBD", - "OrganizationName": "VM Medical Group, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBHAA", + "OrganizationName": "Center for Digestive Diseases, P.A", "NPIID": "", - "OrganizationZipCode": "92605" + "OrganizationZipCode": "07083" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEEGCD", - "OrganizationName": "Sharon Vitale PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEJBD", + "OrganizationName": "Palm Beach Heart and Vascular", "NPIID": "", - "OrganizationZipCode": "33478" + "OrganizationZipCode": "33461" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBHAA", - "OrganizationName": "Newport Coast Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAICAA", + "OrganizationName": "INTERVENTIONAL CARDIOLOGY ASSOCIATES", "NPIID": "", - "OrganizationZipCode": "92663" + "OrganizationZipCode": "77450" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGCCDA", - "OrganizationName": "Anitha Kolli, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBBBA", + "OrganizationName": "Advocate - Charles A Amenta III MD", "NPIID": "", - "OrganizationZipCode": "34609" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAFDBA", - "OrganizationName": "Pavilion Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEGBCD", + "OrganizationName": "Central Coast Foot and Ankle Specialists", "NPIID": "", - "OrganizationZipCode": "48075" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEHAD", - "OrganizationName": "Hays Foot and Ankle Surgical Associates PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGHHAA", + "OrganizationName": "Seton Medical Group - St.Agnes", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "21229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFBADD", - "OrganizationName": "Test Facility-tomcat_MSSQL_ev3", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIHFBD", + "OrganizationName": "Metro Surgical Associates", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "30058" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFEAA", - "OrganizationName": "Sugarloaf Medical, P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFDAD", + "OrganizationName": "Family Clinic Inc.", "NPIID": "", - "OrganizationZipCode": "30024" + "OrganizationZipCode": "70570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACACA", - "OrganizationName": "West Brookfield Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFCAA", + "OrganizationName": "Brookhaven Heart PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11772" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJIBA", - "OrganizationName": "Dover Pulmonary Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEBBDA", + "OrganizationName": "Mountain View Rehabilitation", "NPIID": "", - "OrganizationZipCode": "08755" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGEECD", - "OrganizationName": "Maheep Singh Birdi,MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEHICA", + "OrganizationName": "First US Clinic PA", "NPIID": "", - "OrganizationZipCode": "93312" + "OrganizationZipCode": "71603" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIDHBA", - "OrganizationName": "Ken P Lee MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACDAA", + "OrganizationName": "Sitapara, MD, Ashish,", "NPIID": "", - "OrganizationZipCode": "98501" + "OrganizationZipCode": "18940" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHEHCA", - "OrganizationName": "Texan Vein Vascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDHBA", + "OrganizationName": "Davenport Pediatrics", "NPIID": "", - "OrganizationZipCode": "78613" + "OrganizationZipCode": "33837" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECEAA", - "OrganizationName": "Kidney and Hypertension Specialist P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGDCCA", + "OrganizationName": "Floyd D. Smith, MD", "NPIID": "", - "OrganizationZipCode": "78550" + "OrganizationZipCode": "98531" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIAJBA", - "OrganizationName": "Lawrence Lindeman MD SC (Roscoe Village Family Medicine)", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDAGBA", + "OrganizationName": "TexomaCare-Cardiology", "NPIID": "", - "OrganizationZipCode": "60618" + "OrganizationZipCode": "75020" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIGGBA", - "OrganizationName": "STJ - Rosemary M Aquiler-Angeles MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGADCA", + "OrganizationName": "Carrico Congleton Family Practice", "NPIID": "", - "OrganizationZipCode": "48152" + "OrganizationZipCode": "42301-4557" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHCBCA", - "OrganizationName": "Frontline Medical Group LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHFCA", + "OrganizationName": "Vascular Thoracic Associates of Los Angeles", "NPIID": "", - "OrganizationZipCode": "89728-0463" + "OrganizationZipCode": "90266" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHBEAA", - "OrganizationName": "Dimitri Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHGBD", + "OrganizationName": "Sullivan County Internal Medicine, LLC", "NPIID": "", - "OrganizationZipCode": "70056" + "OrganizationZipCode": "47879" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HECDBA", - "OrganizationName": "Dr. Andrew Silverman, DPM", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJEBD", + "OrganizationName": "Interventional Pain Consultants LLC", "NPIID": "", - "OrganizationZipCode": "0286002860" + "OrganizationZipCode": "62002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJIADD", - "OrganizationName": "Dinesh Bhambhavani MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBFCAA", + "OrganizationName": "Anne Marie Stilwell, M.D., P.C", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "10305" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFIFAA", - "OrganizationName": "Lima Memorial Professional Corp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABIJAA", + "OrganizationName": "Canfield, Kris MD", "NPIID": "", - "OrganizationZipCode": "45801-4300" + "OrganizationZipCode": "82717" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIDBBD", - "OrganizationName": "Palma Sola Neurology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBIEAD", + "OrganizationName": "Blue Coast Cardiology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92056" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFGCBA", - "OrganizationName": "THR-Jeff Zhao, D.O.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJBBD", + "OrganizationName": "Columbus Family Medicine", "NPIID": "", - "OrganizationZipCode": "75149" + "OrganizationZipCode": "31904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDECBA", - "OrganizationName": "Bristol Hospital Multi-Specialty Group Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGGAA", + "OrganizationName": "NYCDOHMH-Downtown Renal P. C.", "NPIID": "", - "OrganizationZipCode": "06011" + "OrganizationZipCode": "10013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBHEBA", - "OrganizationName": "Southfield Family Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFFAD", + "OrganizationName": "Neuro Interventional Pain Management", "NPIID": "", - "OrganizationZipCode": "48076" + "OrganizationZipCode": "48162" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDDJBD", - "OrganizationName": "Northside Podiatry P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJGAA", + "OrganizationName": "Nasseri Clinic of Arthritic Rheumatic Diseases", "NPIID": "", - "OrganizationZipCode": "30434" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDGFAA", - "OrganizationName": "TEXOMACARE , TEXOMA MEDICAL CENTER", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBICA", + "OrganizationName": "Gitlin Gastroenterology", "NPIID": "", - "OrganizationZipCode": "75020" + "OrganizationZipCode": "89128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHBCD", - "OrganizationName": "Northeast Endocrinology P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEGGBD", + "OrganizationName": "Associates in Plastic Surgery", "NPIID": "", - "OrganizationZipCode": "78154" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDEAAA", - "OrganizationName": "Seshadri Seshadri M.D. PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFBCA", + "OrganizationName": "Reading Foot \u0026 Ankle Specialists,PC", "NPIID": "", - "OrganizationZipCode": "33952" + "OrganizationZipCode": "01867" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFDBCD", - "OrganizationName": "Drs Bonet and Doyle PTRS", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCBACD", + "OrganizationName": "Woodlands Heart Vascular Institute, PA", "NPIID": "", - "OrganizationZipCode": "60525" + "OrganizationZipCode": "77380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJICD", - "OrganizationName": "Lakeview Cardiology of Texas PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDACBA", + "OrganizationName": "Blair Renal Associates Inc", "NPIID": "", - "OrganizationZipCode": "75142" + "OrganizationZipCode": "16601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEFHAA", - "OrganizationName": "Thirlby Clinic, PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBBICD", + "OrganizationName": "Gallup Community Health", "NPIID": "", - "OrganizationZipCode": "49684" + "OrganizationZipCode": "87301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JICIBA", - "OrganizationName": "STJ - Metro Medical Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFGGAA", + "OrganizationName": "Jackson Purchase Pulmonary Medicine", "NPIID": "", - "OrganizationZipCode": "48083" + "OrganizationZipCode": "42066" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJHAA", - "OrganizationName": "Peter Chang, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDABAA", + "OrganizationName": "Burchfield Family Practice", "NPIID": "", - "OrganizationZipCode": "77074" + "OrganizationZipCode": "72450" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFEAA", - "OrganizationName": "Perez and Rivera", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIBBD", + "OrganizationName": "Neurology Care PLLC", "NPIID": "", - "OrganizationZipCode": "32796" + "OrganizationZipCode": "75165" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBCCD", - "OrganizationName": "Northwest Mobile Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJJADA", + "OrganizationName": "Bernadette Santos, MD", "NPIID": "", - "OrganizationZipCode": "72762" + "OrganizationZipCode": "32159" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFADBA", - "OrganizationName": "Radnor Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJAADA", + "OrganizationName": "Rehab Associates of Bowling Green", "NPIID": "", - "OrganizationZipCode": "19087" + "OrganizationZipCode": "42104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFHAA", - "OrganizationName": "North Urology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHHIAA", + "OrganizationName": "Berry and Fallon, MD", "NPIID": "", - "OrganizationZipCode": "75069" + "OrganizationZipCode": "93465" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCDBA", - "OrganizationName": "Advocate - Palos Internist SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGHCCA", + "OrganizationName": "Neurology Associates of Ormond Beach", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32174" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBGECD", - "OrganizationName": "Philip Wisotsky MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEGEBD", + "OrganizationName": "Forest General Surgery, PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "24382" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIJBAA", - "OrganizationName": "Gregory Tchejeyan, M.D., Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCCABA", + "OrganizationName": "Advocate - Metro Medical Group LTD", "NPIID": "", - "OrganizationZipCode": "91360" + "OrganizationZipCode": "60805" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFCCAA", - "OrganizationName": "Patel,Biren MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABBCBD", + "OrganizationName": "Ohio Gastroenterology Group Inc", "NPIID": "", - "OrganizationZipCode": "85222" + "OrganizationZipCode": "43202" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFDIBA", - "OrganizationName": "Frederick Medical \u0026 Pulmonary Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGGBDA", + "OrganizationName": "Temple Medical Clinic", "NPIID": "", - "OrganizationZipCode": "21704" + "OrganizationZipCode": "35010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHFFBA", - "OrganizationName": "Carroll Heart Center/ Dr. Shankar Naganna", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAGHBA", + "OrganizationName": "Old Pueblo Cardiology", "NPIID": "", - "OrganizationZipCode": "21157" + "OrganizationZipCode": "85712" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDCBD", - "OrganizationName": "Manassas Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADECD", + "OrganizationName": "PAIN MANAGEMENT OF NORTH DALLAS,P.A", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75034" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFJCD", - "OrganizationName": "Ozark Tricounty Health Consortium dba Access Family Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCBBA", + "OrganizationName": "NYCDOHMH - Chinatown Physician, P.C", "NPIID": "", - "OrganizationZipCode": "4850" + "OrganizationZipCode": "10013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAICBD", - "OrganizationName": "Cecily Anto MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIBBD", + "OrganizationName": "Utah Valley Rheumatology", "NPIID": "", - "OrganizationZipCode": "11788-4358" + "OrganizationZipCode": "84663" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJJECD", - "OrganizationName": "Endocrinology Associates, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDECA", + "OrganizationName": "Cardiovascular Surgery of Alexandria, LLC", "NPIID": "", - "OrganizationZipCode": "24018" + "OrganizationZipCode": "71301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFCDA", - "OrganizationName": "Arminder Singh MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHHBBA", + "OrganizationName": "AZ Endocrinology Center", "NPIID": "", - "OrganizationZipCode": "01104" + "OrganizationZipCode": "85306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHJGAA", - "OrganizationName": "Vascular and Vein Center, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHCIAD", + "OrganizationName": "Altorelli Health, LLC", "NPIID": "", - "OrganizationZipCode": "76104" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJJCBD", - "OrganizationName": "Test-Ramya Chiplunkar 21.137 MsSQL V11", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJBFCD", + "OrganizationName": "CATALYST NEUROMEDICAL CENTER, PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "96001" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJBAA", - "OrganizationName": "Michael B Scott, M.D. Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DACHCA", + "OrganizationName": "Advanas Foot and Ankle Specialists", "NPIID": "", - "OrganizationZipCode": "90262" + "OrganizationZipCode": "49091" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGDGCD", - "OrganizationName": "TruDoc Medical LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJHIAA", + "OrganizationName": "Bay Parkway Medical PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11214" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAAIAD", - "OrganizationName": "West Virginia Orthopedic Trauma", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDIEBD", + "OrganizationName": "PULSE The Heart Valve and Vascular Institute", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33952" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGFIBD", - "OrganizationName": "Camden Heartcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIGCD", + "OrganizationName": "South County Foot Ankle Inc", "NPIID": "", - "OrganizationZipCode": "29020" + "OrganizationZipCode": "02888" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJACA", - "OrganizationName": "Ian L Bourhill MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJBBA", + "OrganizationName": "Advocate - Foot Ankle Associates Ltd", "NPIID": "", - "OrganizationZipCode": "11743-7930" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJIGAA", - "OrganizationName": "Gastroenterology Associates of New Jersey", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAICAD", + "OrganizationName": "Allentown Medical Associates", "NPIID": "", - "OrganizationZipCode": "07424" + "OrganizationZipCode": "08514" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCJICA", - "OrganizationName": "Cardiovascular Health Center PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDIGBA", + "OrganizationName": "Center for Adult Healthcare", "NPIID": "", - "OrganizationZipCode": "32806" + "OrganizationZipCode": "60108" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAJECD", - "OrganizationName": "COMPREHENSIVE PEDIATRICS PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFABA", + "OrganizationName": "Southwestern Neuroscience Institute", "NPIID": "", - "OrganizationZipCode": "08820" + "OrganizationZipCode": "75039" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIBBD", - "OrganizationName": "Laura Wagner MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHGEBA", + "OrganizationName": "Advocate - J M Tang Associates SC", "NPIID": "", - "OrganizationZipCode": "63017" + "OrganizationZipCode": "60453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCAADA", - "OrganizationName": "Poonam Gill MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJAACA", + "OrganizationName": "Aditi Swami MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75025" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFABCA", - "OrganizationName": "Teresa Chan", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCJBA", + "OrganizationName": "Advocate - Aleksander Podolsky, M.D.", "NPIID": "", - "OrganizationZipCode": "10002" + "OrganizationZipCode": "60048" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECDECD", - "OrganizationName": "Christopher J Blanco DPM PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEABD", + "OrganizationName": "Hemet Valley Urology Medical Center", "NPIID": "", - "OrganizationZipCode": "33122" + "OrganizationZipCode": "92543" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEFFAD", - "OrganizationName": "Cardiac Wellness Clinic , PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHGIAD", + "OrganizationName": "Citrus Cardiology", "NPIID": "", - "OrganizationZipCode": "77584" + "OrganizationZipCode": "34452" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJCIBA", - "OrganizationName": "Sandip Parikh", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIDCD", + "OrganizationName": "HOSPICE OF THE CHESAPEAKE, INC", "NPIID": "", - "OrganizationZipCode": "08724" + "OrganizationZipCode": "21122" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCBJAD", - "OrganizationName": "Dearborn Family Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICFABD", + "OrganizationName": "Dr. Elvira Lindwall A Medical Corporation", "NPIID": "", - "OrganizationZipCode": "48124" + "OrganizationZipCode": "91360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBDDBD", - "OrganizationName": "Ironton-Lawrence County CAO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDJBDA", + "OrganizationName": "Lung and Asthma Clinic PA", "NPIID": "", - "OrganizationZipCode": "45638" + "OrganizationZipCode": "77030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBHBD", - "OrganizationName": "Gateway Anesthesia and Pain Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBBBBA", + "OrganizationName": "Nashville Family Foot Care, PLLC", "NPIID": "", - "OrganizationZipCode": "85207" + "OrganizationZipCode": "37203" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAJBA", - "OrganizationName": "Annapolis Rheumatology LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFACA", + "OrganizationName": "ASPA - Gilbert Neurology", "NPIID": "", - "OrganizationZipCode": "21401" + "OrganizationZipCode": "85297" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFJEBA", - "OrganizationName": "Cardiology Specialists of Nevada", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHIBCD", + "OrganizationName": "Lifetime Medical Associates of Aventura, LLC", "NPIID": "", - "OrganizationZipCode": "89128" + "OrganizationZipCode": "33160" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFCCD", - "OrganizationName": "Advanced Urology of Sarasota", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGFGAD", + "OrganizationName": "Health and Psychiatry", "NPIID": "", - "OrganizationZipCode": "34231" + "OrganizationZipCode": "33761" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAJHCD", - "OrganizationName": "Rochester Skin Cancer and Surgery Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJHIBA", + "OrganizationName": "Churchland Internal Medicine", "NPIID": "", - "OrganizationZipCode": "48307" + "OrganizationZipCode": "23435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBJBD", - "OrganizationName": "Gina Greco-Tartaglia MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGECD", + "OrganizationName": "Springs Pediatrics Associates PLLC", "NPIID": "", - "OrganizationZipCode": "10598" + "OrganizationZipCode": "77583" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFGJBD", - "OrganizationName": "Go Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JECHCA", + "OrganizationName": "Advocate - Divyang A Joshi, MD", "NPIID": "", - "OrganizationZipCode": "71291" + "OrganizationZipCode": "60123" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAHAD", - "OrganizationName": "Salim Dabaghi MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECHDBA", + "OrganizationName": "SA Medical Billing LLC", "NPIID": "", - "OrganizationZipCode": "77515" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJEBA", - "OrganizationName": "Robeson Digestive Disease", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJGBD", + "OrganizationName": "Sita Medical Clinic", "NPIID": "", - "OrganizationZipCode": "28358" + "OrganizationZipCode": "48192" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCAADA", - "OrganizationName": "Amaram and Amaram, M.D.s", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDEECD", + "OrganizationName": "The Howard Center for Wellness LLC", "NPIID": "", - "OrganizationZipCode": "31501" + "OrganizationZipCode": "08859" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBCCAA", - "OrganizationName": "Orthopaedic Institute of Ohio", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBCFBD", + "OrganizationName": "Tehmina Sami M.D P.A.", "NPIID": "", - "OrganizationZipCode": "45804" + "OrganizationZipCode": "77479-4908" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IADGAD", - "OrganizationName": "Bradley D. Rodgers, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJHCA", + "OrganizationName": "Jaideep Puri, M.D.", "NPIID": "", - "OrganizationZipCode": "68847" + "OrganizationZipCode": "33458" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFAFCA", - "OrganizationName": "HCA - David Marks MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEAAA", + "OrganizationName": "Innovative Pain Center", "NPIID": "", - "OrganizationZipCode": "78216" + "OrganizationZipCode": "57201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJBGCD", - "OrganizationName": "Hans Blaakman DPM LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAIHAA", + "OrganizationName": "Central California Cardiovascular", "NPIID": "", - "OrganizationZipCode": "29303" + "OrganizationZipCode": "93662-3251" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGHHAA", - "OrganizationName": "NYCDOHMH - Lawrence Rosman, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGHAD", + "OrganizationName": "Change Inc", "NPIID": "", - "OrganizationZipCode": "11375" + "OrganizationZipCode": "26062" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJJDBA", - "OrganizationName": "Pulmonology Associates, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCGJCD", + "OrganizationName": "DAVID ALIABADI, M.D., INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDGAA", - "OrganizationName": "Advanced Imaging Interventional Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCEAA", + "OrganizationName": "Arizona Foot and Ankle Specialists", "NPIID": "", - "OrganizationZipCode": "33761" + "OrganizationZipCode": "92673" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCICD", - "OrganizationName": "Jeffrey L. Horstmyer, M.D., P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAJCA", + "OrganizationName": "Spine and Sport Specialties Medical Group", "NPIID": "", - "OrganizationZipCode": "33133" + "OrganizationZipCode": "92868" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHECCD", - "OrganizationName": "Test - Alisa MySQL Trunk", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDAABA", + "OrganizationName": "HCA - Harmony Heart Group", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75075" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBIACA", - "OrganizationName": "Interventional Pain Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFJBCA", + "OrganizationName": "First Colony Primary Care, PA", "NPIID": "", - "OrganizationZipCode": "63006" + "OrganizationZipCode": "77478" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHBJBD", - "OrganizationName": "ATLANTA DIGESTIVE CENTER, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBEEAA", + "OrganizationName": "Dr. Tuyen T. Trinh, PLLC", "NPIID": "", - "OrganizationZipCode": "30033" + "OrganizationZipCode": "10013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGIHCD", - "OrganizationName": "MID LOUISIANA SURGICAL SPECIALISTS", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJDECD", + "OrganizationName": "Premier Pain Spine Center PLLC", "NPIID": "", - "OrganizationZipCode": "71301" + "OrganizationZipCode": "37207" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGDFCA", - "OrganizationName": "Salem Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHBBD", + "OrganizationName": "Samuel B Cobarrubias MD PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "31634" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAGAD", - "OrganizationName": "Laurence D Haber MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEJACA", + "OrganizationName": "Advocate - Deerbrook Medical Associates", "NPIID": "", - "OrganizationZipCode": "11021" + "OrganizationZipCode": "60061" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICIEBA", - "OrganizationName": "BIDMC LGH - Lawrence G Kidd MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADDEBD", + "OrganizationName": "Shahin S Rad", "NPIID": "", - "OrganizationZipCode": "1841" + "OrganizationZipCode": "91436" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJAECA", - "OrganizationName": "Advanced Gastroenterology of South Florida, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICCAA", + "OrganizationName": "Frances A. Berry-Brown, M.D.", "NPIID": "", - "OrganizationZipCode": "33016" + "OrganizationZipCode": "38464" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBECD", - "OrganizationName": "INDIAN RIVER CARDIOLOGY", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJDBA", + "OrganizationName": "Gross Family Practice", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "29115" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJJABA", - "OrganizationName": "Medical Neurology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAHEAD", + "OrganizationName": "Blue Water Pain Solutions", "NPIID": "", - "OrganizationZipCode": "89113" + "OrganizationZipCode": "33029" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBGBA", - "OrganizationName": "Matthews-Vu Healthcare for Children and Adults", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAAFAA", + "OrganizationName": "Comprehensive Orthopedic LLC", "NPIID": "", - "OrganizationZipCode": "80920" + "OrganizationZipCode": "00801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBIADA", - "OrganizationName": "Adventist - Comprehensive Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICECA", + "OrganizationName": "Southern Vascular of Panama City", "NPIID": "", - "OrganizationZipCode": "20850" + "OrganizationZipCode": "32047" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCFFAA", + "OrganizationName": "Infectious Disease Consultants", + "NPIID": "", + "OrganizationZipCode": "32608" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCJBD", - "OrganizationName": "Z Valley Infectious Disease", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGCFAA", + "OrganizationName": "Houston Cardiac Clinic.", "NPIID": "", - "OrganizationZipCode": "61265" + "OrganizationZipCode": "77024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBGCAA", - "OrganizationName": "University Hematology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAFCAA", + "OrganizationName": "South Rankin Medical Clinic", "NPIID": "", - "OrganizationZipCode": "33613" + "OrganizationZipCode": "39219" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJFCD", - "OrganizationName": "VASCULAR INSTITUTE OF ARIZONA, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJFBCA", + "OrganizationName": "Family Practice Center of Abbeville PA", "NPIID": "", - "OrganizationZipCode": "85142" + "OrganizationZipCode": "36310" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFFBCA", - "OrganizationName": "Advocate - Northwest Chicago Primary Care, SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IABBDD", + "OrganizationName": "Greenspring Personal Oncology, LLC", "NPIID": "", - "OrganizationZipCode": "60634" + "OrganizationZipCode": "21042" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBAIAA", - "OrganizationName": "Gerlie Papillion, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCGCCA", + "OrganizationName": "Northeast Primary Care Associates, PA", "NPIID": "", - "OrganizationZipCode": "95020" + "OrganizationZipCode": "77338" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEGCA", - "OrganizationName": "Eric J Brahin MD PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCBEBA", + "OrganizationName": "Bayonet Point Hudson Cardiology Associates", "NPIID": "", - "OrganizationZipCode": "78224" + "OrganizationZipCode": "34667" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGHCBD", - "OrganizationName": "GulAlam, PC and DBA Meadows Health Cente", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBACA", + "OrganizationName": "Michael Stasko, M.D.", "NPIID": "", - "OrganizationZipCode": "01028" + "OrganizationZipCode": "21502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDDBA", - "OrganizationName": "MLH - Devon Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CACGBD", + "OrganizationName": "Rajiv Agarwal", "NPIID": "", - "OrganizationZipCode": "19333" + "OrganizationZipCode": "77338" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDEEBA", - "OrganizationName": "Berkley Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBEBAA", + "OrganizationName": "William W. Huntley, MD, PA", "NPIID": "", - "OrganizationZipCode": "48070" + "OrganizationZipCode": "34698" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCBFAA", - "OrganizationName": "Family and Medical Counseling Service, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACDGCA", + "OrganizationName": "Advocate - Northwest Associates For Womens Healthcare", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60169" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEDAD", - "OrganizationName": "Athens Cardiac Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGJJCA", + "OrganizationName": "PROD-Palmetto Primary Care Physicians (PPCP)", "NPIID": "", - "OrganizationZipCode": "30677" + "OrganizationZipCode": "29406" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFHCCA", - "OrganizationName": "Advocate - Hoffman-Barrington Internal Medicine Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBEEAA", + "OrganizationName": "Sanjay Aggarwal, MD", "NPIID": "", - "OrganizationZipCode": "60169" + "OrganizationZipCode": "77566" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBGAAA", - "OrganizationName": "Quynh L. Sebastian M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGIBD", + "OrganizationName": "Carolina OBGYN LLP", "NPIID": "", - "OrganizationZipCode": "90404" + "OrganizationZipCode": "29576" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJCAA", - "OrganizationName": "Gulf Breeze Kidney Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJCHBA", + "OrganizationName": "SCAPS Medical LLC", "NPIID": "", - "OrganizationZipCode": "34698" + "OrganizationZipCode": "334012919" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIDGAD", - "OrganizationName": "Oleg Katcher, M.D., PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEGEAA", + "OrganizationName": "Jolita Klementavlclene MD PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "325617801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDFCD", - "OrganizationName": "Anna K. Hopla, M.D., PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEBDD", + "OrganizationName": "Vidabuenamed, PLLC DBA DFW Interventional Pain Institute", "NPIID": "", - "OrganizationZipCode": "38237" + "OrganizationZipCode": "75038" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFEECA", - "OrganizationName": "JORGE A SIFUENTES MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEIJCA", + "OrganizationName": "Rice County Hospital", "NPIID": "", - "OrganizationZipCode": "79007" + "OrganizationZipCode": "67554" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFBGBA", - "OrganizationName": "STJ - Associates in Obstetrics Gynecology, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCABAA", + "OrganizationName": "Fairfield Medical Associates", "NPIID": "", - "OrganizationZipCode": "48374" + "OrganizationZipCode": "29180" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCJDBA", - "OrganizationName": "Brodsky Taylor PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHDBD", + "OrganizationName": "Mark P Batrice, MD PA", "NPIID": "", - "OrganizationZipCode": "48220" + "OrganizationZipCode": "76015" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAGGBA", - "OrganizationName": "Advocate - Palatine Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAICAD", + "OrganizationName": "Florenda L. Fortner, M.D.", "NPIID": "", - "OrganizationZipCode": "60014" + "OrganizationZipCode": "34652" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFDCBD", - "OrganizationName": "Clermont Urgent Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFDBBA", + "OrganizationName": "NYCDOHMH - Steve C C Chang MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11354" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAJDBA", - "OrganizationName": "Kennestone Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHCADA", + "OrganizationName": "Caswell Family Medical Center Inc", "NPIID": "", - "OrganizationZipCode": "30060" + "OrganizationZipCode": "27379" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGGDBD", - "OrganizationName": "Malibu Medical Corp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIJHCA", + "OrganizationName": "Advocate - Gopal Madhav, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60805" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFFCAA", - "OrganizationName": "Tri-County, Poditary", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBCBD", + "OrganizationName": "Florida Pain Care", "NPIID": "", - "OrganizationZipCode": "32159" + "OrganizationZipCode": "34711" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJHFCA", - "OrganizationName": "University of Kansas School of Medicine MPA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGEBA", + "OrganizationName": "Advocate - Millennium Park Medical Associates", "NPIID": "", - "OrganizationZipCode": "67214" + "OrganizationZipCode": "60603" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJGABA", - "OrganizationName": "Tom Gabriel MD LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEFAAA", + "OrganizationName": "Gethsemane Cardiovascular Clinic, LLC", "NPIID": "", - "OrganizationZipCode": "21502" + "OrganizationZipCode": "37130" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EICAAA", - "OrganizationName": "BRANDON DERMATOLOGY, P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DICBBA", + "OrganizationName": "Jih-Lih Chiang, MD", "NPIID": "", - "OrganizationZipCode": "33511" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGIEBA", - "OrganizationName": "Delta Renal Group PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCCCA", + "OrganizationName": "Advocate - Center for Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFFIBD", - "OrganizationName": "Atlanta Gastroenterology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEECA", + "OrganizationName": "Richard C. Lock, MD", "NPIID": "", - "OrganizationZipCode": "30097" + "OrganizationZipCode": "770822439" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCFAD", - "OrganizationName": "Miami Medical Consultants, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFACA", + "OrganizationName": "Karen M. Shainsky, DO, Inc", "NPIID": "", - "OrganizationZipCode": "33146" + "OrganizationZipCode": "90048" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFBDBA", - "OrganizationName": "Cardiac and Vascular Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GECDBA", + "OrganizationName": "Advocate - Mukesh C Jain MD FACC", "NPIID": "", - "OrganizationZipCode": "32162" + "OrganizationZipCode": "60602" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDECD", - "OrganizationName": "ZK Enterprises,Inc.DBA Desert Cardiology Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCJIAD", + "OrganizationName": "Kindred Healthcare Operating Inc. - Palliative Care", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "40202" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECGEBD", - "OrganizationName": "Advocate - Favia Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJHBD", + "OrganizationName": "PAIN CENTER WESTERN WASHINGTON", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "98003" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJHBD", - "OrganizationName": "William Newton Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CECJBA", + "OrganizationName": "GastroCare LI", "NPIID": "", - "OrganizationZipCode": "67156" + "OrganizationZipCode": "11581" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCGJBD", - "OrganizationName": "Ricardo A Garza, MD, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJBEAD", + "OrganizationName": "Angelo DiCenso MD", "NPIID": "", - "OrganizationZipCode": "78201" + "OrganizationZipCode": "02919" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HADIBA", - "OrganizationName": "STJ - Husain Arastu MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBFBA", + "OrganizationName": "Mohamed O. Jeroudi, MD PA", "NPIID": "", - "OrganizationZipCode": "48093" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBGAD", - "OrganizationName": "Roberson Allergy and Asthma Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEDIBA", + "OrganizationName": "Advocate - Dolly Thomas MD", "NPIID": "", - "OrganizationZipCode": "33401" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJGFBA", - "OrganizationName": "Advocate - Barrington Surgeons LTD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAACBD", + "OrganizationName": "Kanghan Medical Services PC", "NPIID": "", - "OrganizationZipCode": "60010" + "OrganizationZipCode": "11354" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGAAA", - "OrganizationName": "Medneph PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIFBCA", + "OrganizationName": "Adventist - Khandagle Medical Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "20904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAHBDA", - "OrganizationName": "Visione 360 Eye Cosmetic Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHBCA", + "OrganizationName": "Advanced Internal Medicine of Northern Illinois", "NPIID": "", - "OrganizationZipCode": "79902" + "OrganizationZipCode": "60178" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEFGCA", - "OrganizationName": "Advocate - Jacek Grela, MD SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCIACA", + "OrganizationName": "Berkower Pain \u0026 Spine Rehabilitation", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33027" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGECAA", - "OrganizationName": "East Atlanta Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIAICA", + "OrganizationName": "OHS - Michigan Neuroscience Clinic", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48180" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFDCDA", - "OrganizationName": "Mount Baker Rheumatology Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDBDD", + "OrganizationName": "Sleep Fit Medical, Inc.", "NPIID": "", - "OrganizationZipCode": "98225" + "OrganizationZipCode": "95476" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIAABD", - "OrganizationName": "Infectious Disease Consultants - GA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFBCCD", + "OrganizationName": "PADMINI BHADRIRAJU MD P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGDDAA", + "OrganizationName": "Huatuco", "NPIID": "", - "OrganizationZipCode": "30024" + "OrganizationZipCode": "95376" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIHDCD", - "OrganizationName": "Megha Mohey MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGGDCD", + "OrganizationName": "Inter American Primary Care LLC dba Inter", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "31904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJHBA", - "OrganizationName": "STJ - Lakeview Medical Center / Dr. Wanis MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEIJBA", + "OrganizationName": "HCA - Mendicino and Lo", "NPIID": "", - "OrganizationZipCode": "48080" + "OrganizationZipCode": "77082" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIBABD", - "OrganizationName": "GastroIntestinal Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCADD", + "OrganizationName": "Litchfield Hills Orthopedic Associates, LLP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDABD", - "OrganizationName": "Delmarva Pain and Spine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHAGAA", + "OrganizationName": "Royal Care Clinic", "NPIID": "", - "OrganizationZipCode": "19713" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBEBA", - "OrganizationName": "Digestive Care P.L.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHAFAA", + "OrganizationName": "Suncoast Community Health Centers", "NPIID": "", - "OrganizationZipCode": "33511" + "OrganizationZipCode": "33570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJGCA", - "OrganizationName": "Deborah Silberman MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGDGAA", + "OrganizationName": "Florida Center for Neurology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEJBA", - "OrganizationName": "Golden Orthopedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJICCA", + "OrganizationName": "Kansas Medical Clinic, P.A.", "NPIID": "", - "OrganizationZipCode": "33428" + "OrganizationZipCode": "66606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFHAD", - "OrganizationName": "Joseph P Addabbo Family Health Center Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIIAA", + "OrganizationName": "Asad Zaman, MD SC", "NPIID": "", - "OrganizationZipCode": "11692" + "OrganizationZipCode": "60477" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFDAD", - "OrganizationName": "PWMD - Brendon Connolly MD PL", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJGFBD", + "OrganizationName": "AdvancedENT", "NPIID": "", - "OrganizationZipCode": "34233" + "OrganizationZipCode": "89521" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFJEBA", - "OrganizationName": "Ronald F Williamson MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIHJBA", + "OrganizationName": "Advocate - Robert Schwartzenberg, M.D., PC", "NPIID": "", - "OrganizationZipCode": "48235" + "OrganizationZipCode": "60021" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEDJBA", - "OrganizationName": "HCA - Advanced Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBDACA", + "OrganizationName": "Mir F. Shuttari M.D.", "NPIID": "", - "OrganizationZipCode": "64064" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFADCA", - "OrganizationName": "Special Health Resources for Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEAEAD", + "OrganizationName": "Concerto Healthcare, INC (Enterprise Directory)", "NPIID": "", - "OrganizationZipCode": "75602" + "OrganizationZipCode": "92614" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEBDA", - "OrganizationName": "Flint Cardiovascular Consultants, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFJACA", + "OrganizationName": "Chia-Der Wu, M.D., PC", "NPIID": "", - "OrganizationZipCode": "48532" + "OrganizationZipCode": "11355" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFHHCD", - "OrganizationName": "Peter S. Birnbaum DO Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADHCCA", + "OrganizationName": "HCA - Coastal Primary Care", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34982" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIAIBA", - "OrganizationName": "Jamil C Mohsin MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCDCD", + "OrganizationName": "FERRER PRIMARY CARE INSTITUTE, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33180" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIIGBD", - "OrganizationName": "Redi-Med LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIIBA", + "OrganizationName": "Baycare - Martha A. Price, M.D., PA", "NPIID": "", - "OrganizationZipCode": "34119" + "OrganizationZipCode": "33609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEAIAA", - "OrganizationName": "Cardiac Intervention Specialist", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCECBD", + "OrganizationName": "Sylacauga Obstetrics and Gynecology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "35150" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBEAA", - "OrganizationName": "Kidney Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIDECA", + "OrganizationName": "Neurology of Central Florida", "NPIID": "", - "OrganizationZipCode": "78207" + "OrganizationZipCode": "32701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJJCA", - "OrganizationName": "Seema Malani, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBHBBD", + "OrganizationName": "TotalCare Emergency Room", "NPIID": "", - "OrganizationZipCode": "77450" + "OrganizationZipCode": "76126" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEAACA", - "OrganizationName": "STJ - South Macomb Internists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHGBAA", + "OrganizationName": "Nacogdoches Nephrology PA", "NPIID": "", - "OrganizationZipCode": "48093" + "OrganizationZipCode": "79565" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEACCD", - "OrganizationName": "Hassan Spine and Sports Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBIIBD", + "OrganizationName": "Delmarva Diabetes Center, LLC", "NPIID": "", - "OrganizationZipCode": "07551" + "OrganizationZipCode": "21804" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBBDBD", - "OrganizationName": "Remnant Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBADBD", + "OrganizationName": "BHN - Sobel Family Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85032" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIFJBD", - "OrganizationName": "Pulmonary Critical Care Associates PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEABD", + "OrganizationName": "Advocate - Metro Family Practice SC", "NPIID": "", - "OrganizationZipCode": "48315" + "OrganizationZipCode": "60056" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAAAAA", - "OrganizationName": "Maple Leaf Family Sports Medicine, LLC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACHAA", + "OrganizationName": "Shyamali M. Singhal", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "94040" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIDHAA", - "OrganizationName": "El Paso Pain Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEGCAA", + "OrganizationName": "Springfield Family Physicians, LLP", "NPIID": "", - "OrganizationZipCode": "79925" + "OrganizationZipCode": "97477" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFBGBD", - "OrganizationName": "TREASURE VALLEY UROLOGY PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGJABD", + "OrganizationName": "Baltimore Healthcare", "NPIID": "", - "OrganizationZipCode": "83642" + "OrganizationZipCode": "21229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBCBA", - "OrganizationName": "Be Well Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIHDCD", + "OrganizationName": "AMITA-Shaheen Fatima, MD", "NPIID": "", - "OrganizationZipCode": "48072" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJFJCD", - "OrganizationName": "Test-Bill", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGJDCD", + "OrganizationName": "Vascular Care Specialists of Los Angeles", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGEEBD", - "OrganizationName": "BORDER CLINIC PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EABCDA", + "OrganizationName": "Bassan and Bloom, MDs, PL", "NPIID": "", - "OrganizationZipCode": "78041" + "OrganizationZipCode": "33140" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGIHAA", - "OrganizationName": "Winters Healthcare Foundation, Redwood", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHEABD", + "OrganizationName": "Jefferson Comprehensive Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJDCA", - "OrganizationName": "Affiliated Colon and Rectal Surgeons, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAADCA", + "OrganizationName": "Renal Consultants, PC", "NPIID": "", - "OrganizationZipCode": "85006-2769" + "OrganizationZipCode": "10970" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCJAAA", - "OrganizationName": "Cardinal Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEDDCA", + "OrganizationName": "Arizona Physical Medicine Rehabilitaion PC", "NPIID": "", - "OrganizationZipCode": "22192" + "OrganizationZipCode": "85280" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAIHAA", - "OrganizationName": "CCherry Mathew, MDherry Mathew, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDADAA", + "OrganizationName": "Pacific Gastroenterology", "NPIID": "", - "OrganizationZipCode": "75904" + "OrganizationZipCode": "98664" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGFDBD", - "OrganizationName": "Pain Relief Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHEECD", + "OrganizationName": "LAKE WALES FOOT AND ANKLE CARE, INC", "NPIID": "", - "OrganizationZipCode": "28613" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGHBD", - "OrganizationName": "Science Hill Family Care, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDECBA", + "OrganizationName": "Advocate - Mokena Foot Ankle Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGFFAA", - "OrganizationName": "North Coast Professional Corporation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEADBD", + "OrganizationName": "Capitol Pain Institute, PA", "NPIID": "", - "OrganizationZipCode": "44870" + "OrganizationZipCode": "78757" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAIFAD", - "OrganizationName": "Vuy Li Physician", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJACA", + "OrganizationName": "Fui Dawson MD", "NPIID": "", - "OrganizationZipCode": "11219" + "OrganizationZipCode": "30338" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCBFAD", - "OrganizationName": "Terry L. Swezey, MD, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIEABA", + "OrganizationName": "NYCDOHMH - George Lum, MD", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "11355" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABBCD", - "OrganizationName": "Southwest Orthopaedic Clinic, P.a.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EICIBD", + "OrganizationName": "Beaufort-Jasper-Hampton Comprehensive Health Services, Inc.", "NPIID": "", - "OrganizationZipCode": "79925" + "OrganizationZipCode": "29936" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJAABA", - "OrganizationName": "Deaconess Hospital- IP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDJCAA", + "OrganizationName": "Fallingwater Medical Associates, PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "73533" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGHJBA", - "OrganizationName": "STJ - Damadi Pearlman", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAJHAA", + "OrganizationName": "NYCDOHMH-Rosman Wasserman", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJIBA", - "OrganizationName": "HCA - Arthritis Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHCADA", + "OrganizationName": "Birmingham Podiatry", "NPIID": "", - "OrganizationZipCode": "78229" + "OrganizationZipCode": "35205" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBGBD", - "OrganizationName": "NADER MAHMOOD MD LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHIDBA", + "OrganizationName": "Huntington Practice Associates", "NPIID": "", - "OrganizationZipCode": "07503" + "OrganizationZipCode": "91105" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFGCD", - "OrganizationName": "BHATIA PULMONARY CENTER P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIHHBD", + "OrganizationName": "ANGELS NEUROLOGICAL CENTERS, P.C.", "NPIID": "", - "OrganizationZipCode": "89144" + "OrganizationZipCode": "02351" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHGAD", - "OrganizationName": "Carl Boagni, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHDHAD", + "OrganizationName": "Sanjay Sikand MD", + "NPIID": "", + "OrganizationZipCode": "08724" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJCCA", + "OrganizationName": "Piedmont Spine Pain Center", "NPIID": "", - "OrganizationZipCode": "70570" + "OrganizationZipCode": "28277" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGDGBA", - "OrganizationName": "CalHipso - Rao Sunkavally, M.D", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHBCD", + "OrganizationName": "OMAR M JEROUDI, M.D. P.A.", "NPIID": "", - "OrganizationZipCode": "94538" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJGEAA", - "OrganizationName": "A Plus Medical Care PC, NYC DOHMH-BK", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIJEAD", + "OrganizationName": "Abba Medical Center", "NPIID": "", - "OrganizationZipCode": "11220" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDBAAA", - "OrganizationName": "Virginia Spine Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFACCA", + "OrganizationName": "Northeast Medical Associates", "NPIID": "", - "OrganizationZipCode": "20190" + "OrganizationZipCode": "77338" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCCBD", - "OrganizationName": "Mercy and Truth Medical Missions", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAGDAA", + "OrganizationName": "North Florida Pain Center", "NPIID": "", - "OrganizationZipCode": "66102" + "OrganizationZipCode": "32210" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEDCAA", - "OrganizationName": "Michael J. Screpetis, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHHHAA", + "OrganizationName": "Gerald Family Care PC", "NPIID": "", - "OrganizationZipCode": "71301" + "OrganizationZipCode": "20910" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEEAD", - "OrganizationName": "Columbus Neurology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAGJBD", + "OrganizationName": "Sleep Therapy and Research Center", "NPIID": "", - "OrganizationZipCode": "31901" + "OrganizationZipCode": "78229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEGDCD", - "OrganizationName": "Camelback Spine Care, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCEFCA", + "OrganizationName": "HCA - Morris Hanan, MD, PA", "NPIID": "", - "OrganizationZipCode": "85032" + "OrganizationZipCode": "33609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAEBCA", - "OrganizationName": "Jackson-Hinds Comprehensive Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIDCAA", + "OrganizationName": "Ellen Turner, MD", "NPIID": "", - "OrganizationZipCode": "39207" + "OrganizationZipCode": "78216" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGBAA", - "OrganizationName": "All Family Medical Center, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIBJAD", + "OrganizationName": "Advocate - Gomez Medical Group Inc.", "NPIID": "", - "OrganizationZipCode": "33710" + "OrganizationZipCode": "60123" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGFCCD", - "OrganizationName": "Marco Gutierrez, M.D. And Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHHDAA", + "OrganizationName": "Crystal Arthritis Center, Inc.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "44333" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFAGBA", - "OrganizationName": "HCA - Neil Schultz", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEEADA", + "OrganizationName": "Otolaryngology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBEDBA", - "OrganizationName": "Neurology Specialists of Monmouth County", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIABBA", + "OrganizationName": "Primary Care Associates - FL", "NPIID": "", - "OrganizationZipCode": "07764" + "OrganizationZipCode": "33948" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIDBA", - "OrganizationName": "Silicon Valley ENT and Sinus Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIJBA", + "OrganizationName": "Weibo Medical Care, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHBECA", - "OrganizationName": "Main Line Health - Gerard Miller, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAJEAA", + "OrganizationName": "Paul D Jaychandra MD PA", "NPIID": "", - "OrganizationZipCode": "19083" + "OrganizationZipCode": "32084" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFJCD", - "OrganizationName": "FHIR R4 Production Sandbox EMR", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGJBCD", + "OrganizationName": "Arizona Advanced Surgery, LLC", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "85202" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AACCCA", - "OrganizationName": "Ear, Nose Throat SpecialtyCare of Minnesota, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGGAA", + "OrganizationName": "Family Medicine Associates of York", "NPIID": "", - "OrganizationZipCode": "55404" + "OrganizationZipCode": "17309" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIEJBD", - "OrganizationName": "Cornerstone Clinic for Women PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDFCDA", + "OrganizationName": "Cardiovascular Center of Hagerstown", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "21742" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCGHAD", - "OrganizationName": "Sun Life Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICHBDA", + "OrganizationName": "Prime Rheumatology Clinic of Houston PLLC", "NPIID": "", - "OrganizationZipCode": "85122" + "OrganizationZipCode": "77384" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCDFAA", - "OrganizationName": "NYCDOHMH-Meyerovich Medical Diagnostic PC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEJAAA", + "OrganizationName": "Family Medicine of Pampa", "NPIID": "", - "OrganizationZipCode": "11374" + "OrganizationZipCode": "79065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFACCA", - "OrganizationName": "Advocate - North Suburban Medical Office LTD.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEBBA", + "OrganizationName": "Adventist - Neil Julie, MD", "NPIID": "", - "OrganizationZipCode": "60031" + "OrganizationZipCode": "20850" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBGIAA", - "OrganizationName": "Palm Beach Diabetes Endocrine Specialists, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCEBD", + "OrganizationName": "Advanced Medical and Kidney Institute", "NPIID": "", - "OrganizationZipCode": "33401" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEGCCA", - "OrganizationName": "MLH-Main Line Institute of Plastic Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGGAD", + "OrganizationName": "Chrsitiana Spine Center, LLC", "NPIID": "", - "OrganizationZipCode": "19096" + "OrganizationZipCode": "19713" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEEIAA", - "OrganizationName": "Lake Havasu Lung and Sleep Disorder", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCDCA", + "OrganizationName": "Advocate - Angspatt-Pisit, MD SC", "NPIID": "", - "OrganizationZipCode": "86403" + "OrganizationZipCode": "60452" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJECAD", - "OrganizationName": "Texas Urological Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJEBD", + "OrganizationName": "AMITA - Nirali Parikh, MD LLC", "NPIID": "", - "OrganizationZipCode": "75901" + "OrganizationZipCode": "60169" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHHJBD", - "OrganizationName": "Robert Thomas MD FCCP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAGHAD", + "OrganizationName": "Jay Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEHJBD", - "OrganizationName": "Texoma ENT Allergy", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHJDCD", + "OrganizationName": "MEDICO LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEBEBA", - "OrganizationName": "Advocate - Retina macula Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIFDCA", + "OrganizationName": "Houston Lung and Sleep Clinic PA", "NPIID": "", - "OrganizationZipCode": "60453" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIJCA", - "OrganizationName": "Deborah Eisen, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGEADD", + "OrganizationName": "Central Georgia Heart Center, P.C.", "NPIID": "", - "OrganizationZipCode": "08755" + "OrganizationZipCode": "31201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIGCD", - "OrganizationName": "Milestone Pediatrics S.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFFBA", + "OrganizationName": "HCA - Denver Spine", "NPIID": "", - "OrganizationZipCode": "53226" + "OrganizationZipCode": "80111" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBECCA", - "OrganizationName": "Cardiology Physicians", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDEAAA", + "OrganizationName": "Seshadri Seshadri M.D. PA", "NPIID": "", - "OrganizationZipCode": "32114" + "OrganizationZipCode": "33952" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABCCBA", - "OrganizationName": "Gulf View WalkIn Clinics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBCADA", + "OrganizationName": "Jigar Ghelani, M.D. Professional Corp", "NPIID": "", - "OrganizationZipCode": "34653" + "OrganizationZipCode": "91360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIEABD", - "OrganizationName": "Elyaman Medical Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBFDAD", + "OrganizationName": "Neurocare Plus", "NPIID": "", - "OrganizationZipCode": "34481" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHEBAA", - "OrganizationName": "Associates In Medicine \u0026 Surgery,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAIEBA", + "OrganizationName": "Sunil Shah, MD", "NPIID": "", - "OrganizationZipCode": "33919" + "OrganizationZipCode": "60901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEGFAD", - "OrganizationName": "Hawkins Physician Services, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHJJAA", + "OrganizationName": "Internal Medicine South", "NPIID": "", - "OrganizationZipCode": "37857" + "OrganizationZipCode": "35045" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJIBD", - "OrganizationName": "Steven Schultz MD, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCECBD", + "OrganizationName": "Stacey W Mayeaux, MD LLC", "NPIID": "", - "OrganizationZipCode": "73069" + "OrganizationZipCode": "70570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIEAA", - "OrganizationName": "Inovia Specialty Vein Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDGDBA", + "OrganizationName": "IUHC Medclinic", "NPIID": "", - "OrganizationZipCode": "97701" + "OrganizationZipCode": "474053190" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGBBCD", - "OrganizationName": "Ashford Orthopedic Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGCJBD", + "OrganizationName": "SWHR - KOKORO HEALTH \u0026 WELLNESS, INC", "NPIID": "", - "OrganizationZipCode": "30606" + "OrganizationZipCode": "75254" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHGDCD", - "OrganizationName": "Manaswi s Orthopedic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAICCA", + "OrganizationName": "Advocate - Alawad Medical Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60415" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAGICD", - "OrganizationName": "St Mark Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCFJAA", + "OrganizationName": "AIP - Sunrise Medical Management", "NPIID": "", - "OrganizationZipCode": "10312" + "OrganizationZipCode": "85381" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBFAD", - "OrganizationName": "PWMD Jorge O Diaz", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHIBAA", + "OrganizationName": "Milan Medical Center PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "38358" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJDDBA", - "OrganizationName": "Pradeep Mahal, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJBCA", + "OrganizationName": "Steward - Neuro Institute of New England", "NPIID": "", - "OrganizationZipCode": "07083" + "OrganizationZipCode": "02035" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBICCD", - "OrganizationName": "Pain Physicians of Wisconsin, S.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIFBA", + "OrganizationName": "Attleboro Dermatology, P.C", "NPIID": "", - "OrganizationZipCode": "53105" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHIHCD", - "OrganizationName": "Magic Valley Pain and Spine Associates PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIBIAD", + "OrganizationName": "Health Services of North Texas", "NPIID": "", - "OrganizationZipCode": "83402" + "OrganizationZipCode": "76207" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBDCA", - "OrganizationName": "Orthopedic Associates, S.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHFFBA", + "OrganizationName": "Carroll Heart Center/ Dr. Shankar Naganna", "NPIID": "", - "OrganizationZipCode": "60005" + "OrganizationZipCode": "21157" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGHACD", - "OrganizationName": "Azimi Cardiovascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHBHAD", + "OrganizationName": "Advocate - Gateway Spine and Pain Physicians", "NPIID": "", - "OrganizationZipCode": "91942" + "OrganizationZipCode": "60440" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACEBCD", - "OrganizationName": "Test-Siddharth Pandya MySQL V11", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJBDA", + "OrganizationName": "BAY AREA INFECTIOUS DISEASE", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "33511" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBBHAA", - "OrganizationName": "Newport Coast Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGHJAD", + "OrganizationName": "Advocate - Internal Medicine Family Practice, S.C.", "NPIID": "", - "OrganizationZipCode": "92663" + "OrganizationZipCode": "60435" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJJCA", - "OrganizationName": "C James Anderson", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIHBBA", + "OrganizationName": "MPR Ajaz Umerani MD", "NPIID": "", - "OrganizationZipCode": "62226" + "OrganizationZipCode": "45505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFJFCD", - "OrganizationName": "Barrington Pain and Spine Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIGBBA", + "OrganizationName": "William E. Roundtree MD PC", "NPIID": "", - "OrganizationZipCode": "60010" + "OrganizationZipCode": "31906" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJJICD", - "OrganizationName": "Monmouth Cardiology Associates, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFFFAD", + "OrganizationName": "Comprehensive Spine and Rehabilitation Medicine", "NPIID": "", - "OrganizationZipCode": "07724" + "OrganizationZipCode": "32827" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BICCCA", - "OrganizationName": "Lung Care and P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBDIAA", + "OrganizationName": "HCA - Terre Haute Internal Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "47802" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDBCA", - "OrganizationName": "Advocate - Alexander Kmicikewycz, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFBIAA", + "OrganizationName": "Pyramid Pain and Rehab PA", "NPIID": "", - "OrganizationZipCode": "60463" + "OrganizationZipCode": "75092" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBFIBD", - "OrganizationName": "Pain Management Specialists of Atlanta", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJECA", + "OrganizationName": "Anointed Health Partners, Ltd", "NPIID": "", - "OrganizationZipCode": "30281" + "OrganizationZipCode": "60617" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGHHBD", - "OrganizationName": "Ludlow Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFGAA", + "OrganizationName": "Pacific Coast Dermatology", "NPIID": "", - "OrganizationZipCode": "01056" + "OrganizationZipCode": "91710" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEDCCD", - "OrganizationName": "Big Horn Ankle Foot", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBAJBA", + "OrganizationName": "Thomas M. Boyle, M.D.", "NPIID": "", - "OrganizationZipCode": "82435" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDFJAD", - "OrganizationName": "Southern Gastroenterology Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHAFAD", + "OrganizationName": "East Coast Nephrology Associates", "NPIID": "", - "OrganizationZipCode": "30248" + "OrganizationZipCode": "32174" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIBBCA", - "OrganizationName": "HCA - Tampa Bay Family Physicians, INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJEIBD", + "OrganizationName": "Nadir Mir Ali, MD PLLC", "NPIID": "", - "OrganizationZipCode": "33573" + "OrganizationZipCode": "775984160" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDFAA", - "OrganizationName": "Gregory M Bricca MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCJICA", + "OrganizationName": "Cardiovascular Health Center PA", "NPIID": "", - "OrganizationZipCode": "95661" + "OrganizationZipCode": "32806" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJICD", - "OrganizationName": "Summers Healthcare Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIIBA", + "OrganizationName": "Sunil Rana MD", "NPIID": "", - "OrganizationZipCode": "63109" + "OrganizationZipCode": "06830" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFHFBA", - "OrganizationName": "Advocate - FemaCare Obstetrics and Gynecology SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIBAA", + "OrganizationName": "Primary Physician Partners/Partners Internal Medicine", "NPIID": "", - "OrganizationZipCode": "60077" + "OrganizationZipCode": "01608" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJFCDA", - "OrganizationName": "Golden Triangle Neurocare LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEHBD", + "OrganizationName": "WAFL Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "43113" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIHBA", - "OrganizationName": "HCA - Greenville Neurology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBAEBA", + "OrganizationName": "NYCDOHMH - Kee Y. Shum, MD, PC", "NPIID": "", - "OrganizationZipCode": "75401" + "OrganizationZipCode": "11355" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADEJBD", - "OrganizationName": "Umpqua Internal Medicine PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEJAD", + "OrganizationName": "Cano Health", "NPIID": "", - "OrganizationZipCode": "97471" + "OrganizationZipCode": "33024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDIGAD", - "OrganizationName": "California Neurosurgical Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHCCD", + "OrganizationName": "Dr. Wentworth Jarrett, PA", "NPIID": "", - "OrganizationZipCode": "91355" + "OrganizationZipCode": "33186" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIHCA", - "OrganizationName": "First Coast Cardiovascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJEAD", + "OrganizationName": "Cardiology of Miami", "NPIID": "", - "OrganizationZipCode": "32216" + "OrganizationZipCode": "33126" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBDJAD", - "OrganizationName": "MA Medical Care PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCJIAD", + "OrganizationName": "Pramod Joseph, MD, LLC", "NPIID": "", - "OrganizationZipCode": "77494" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHJCCA", - "OrganizationName": "Sleep and Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDCCCA", + "OrganizationName": "Duck Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCJCA", - "OrganizationName": "Lansdowne Travel Family Medicine LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDJFAA", + "OrganizationName": "Raby Institute for Integrative Medicine", "NPIID": "", - "OrganizationZipCode": "20176" + "OrganizationZipCode": "60611" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIEIAD", - "OrganizationName": "Madaiah Revana MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGCEBA", + "OrganizationName": "THR - Grayson Medical Consultants, P.A.", "NPIID": "", - "OrganizationZipCode": "77396" + "OrganizationZipCode": "75092" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDIFCD", - "OrganizationName": "SouthWest Ohio ENT Specialists Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFCCA", + "OrganizationName": "Sovereign Medical Group", "NPIID": "", - "OrganizationZipCode": "45402" + "OrganizationZipCode": "07410" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHBGAA", - "OrganizationName": "Sussex Pulmonary \u0026 Endocrine Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGBJBD", + "OrganizationName": "Gina Greco-Tartaglia MD PC", "NPIID": "", - "OrganizationZipCode": "19971" + "OrganizationZipCode": "10598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFEJCD", - "OrganizationName": "Empowered arthritis and Rheumatology Center PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGAGBA", + "OrganizationName": "Eastern Plains Medical Clinic", "NPIID": "", - "OrganizationZipCode": "27518" + "OrganizationZipCode": "80808" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBGCCA", - "OrganizationName": "Sultan Khan, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEEHBA", + "OrganizationName": "Northside Gastroenterology Associates", "NPIID": "", - "OrganizationZipCode": "11229" + "OrganizationZipCode": "77070" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIFDCA", - "OrganizationName": "HCA - Colon Rectal Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBJDCD", + "OrganizationName": "Arthritis and Rheumatology Institute, PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADICCD", - "OrganizationName": "Farr Medical Group, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFHDCD", + "OrganizationName": "WALKUP FAMILY MEDICINE CLINIC LLC", "NPIID": "", - "OrganizationZipCode": "93312" + "OrganizationZipCode": "74745" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGHHAA", - "OrganizationName": "Philip Brown, M.D", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGGBBA", + "OrganizationName": "Advocate - Lawn Medical Center", "NPIID": "", - "OrganizationZipCode": "75231" + "OrganizationZipCode": "60638" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGIBBD", - "OrganizationName": "Maged Ayad MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDIDCA", + "OrganizationName": "Saroj Verma, MD", "NPIID": "", - "OrganizationZipCode": "91505" + "OrganizationZipCode": "60617" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDJCBA", - "OrganizationName": "Gary R. Clayton, M.D., P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBFDBA", + "OrganizationName": "Texas Heart Rhythm Center, PA", "NPIID": "", - "OrganizationZipCode": "77701" + "OrganizationZipCode": "77074" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHGICD", - "OrganizationName": "Medical Teams International", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHBGCA", + "OrganizationName": "University Foot and Ankle Institute", "NPIID": "", - "OrganizationZipCode": "97224" + "OrganizationZipCode": "90403-5742" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDDADA", - "OrganizationName": "Fort Bend Cardiology PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDGECD", + "OrganizationName": "OZ Healthcare PLLC", "NPIID": "", - "OrganizationZipCode": "77469" + "OrganizationZipCode": "77479" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGAICD", - "OrganizationName": "Advanced Garden State Cardiology LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEDDCA", + "OrganizationName": "Advocate- Mukesh K Ahluwalia, MD PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60634" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFHHCA", - "OrganizationName": "PINNACLE HEALTH CENTER", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIBDCA", + "OrganizationName": "Cypress Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDDJAA", - "OrganizationName": "PHA- Adult medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIEDAA", + "OrganizationName": "Neurosurgery Associates of West Texas", "NPIID": "", - "OrganizationZipCode": "19146" + "OrganizationZipCode": "75209" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADBBA", - "OrganizationName": "NYCDOHMH - Tze On Poon, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDGAA", + "OrganizationName": "Advanced Imaging Interventional Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEJAD", - "OrganizationName": "Precision Endocrinology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFCJAA", + "OrganizationName": "Center for Symptom Relief LLS", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "43214" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDEECD", - "OrganizationName": "Bluth Family Medicine, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHHDAA", + "OrganizationName": "Neurological Care Center, P.A", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "08757" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDGFBD", - "OrganizationName": "John Hoover, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECBDD", + "OrganizationName": "Florida Spine Associates, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33431" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAGHBA", - "OrganizationName": "Saba Siddiqi, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADGCA", + "OrganizationName": "Advocate - Metro Chest Professionals", "NPIID": "", - "OrganizationZipCode": "21237" + "OrganizationZipCode": "60657" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJFAA", - "OrganizationName": "Sacry, MD,Roger", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEAGCD", + "OrganizationName": "Southwest Idaho", "NPIID": "", - "OrganizationZipCode": "64836" + "OrganizationZipCode": "83704" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBGEAD", - "OrganizationName": "Treasure Coast Cardiovascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJCHBD", + "OrganizationName": "Bela Urogynecology, LLC", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "34786" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJJGBD", - "OrganizationName": "El Portal Cancer Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFFAA", + "OrganizationName": "Westwood Primary Care,PPLC", "NPIID": "", - "OrganizationZipCode": "95348" + "OrganizationZipCode": "77354" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAJHBD", - "OrganizationName": "New Life Heart Care LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCACBA", + "OrganizationName": "NYCDOHMH - Future Bright Management, Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "10013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIAECA", - "OrganizationName": "APU testing", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACABD", + "OrganizationName": "The Family Medicine Center", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "96720" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFBDD", - "OrganizationName": "John Gordon D.O., LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCDBAA", + "OrganizationName": "Gastroenterology Assoc of Tidewater", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "23320" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFIJCD", - "OrganizationName": "Mountain Ridge Healthcare PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHFCD", + "OrganizationName": "CARDIOLOGY CARDIOVASCULAR", "NPIID": "", - "OrganizationZipCode": "84043" + "OrganizationZipCode": "89128" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCDECA", - "OrganizationName": "James Liu, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGHCA", + "OrganizationName": "ACN Medical Group", "NPIID": "", - "OrganizationZipCode": "77024" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGIHAA", - "OrganizationName": "New England Uro-Gynocology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBFAD", + "OrganizationName": "Pain Management", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "49503" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEEBA", - "OrganizationName": "Associates in Nephrology, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDBECA", + "OrganizationName": "Arthur L Ostrowski MD SC", "NPIID": "", - "OrganizationZipCode": "16502" + "OrganizationZipCode": "60010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGIFAD", - "OrganizationName": "Adventist HealthCare - Enterprise", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJJABA", + "OrganizationName": "Medical Neurology", "NPIID": "", - "OrganizationZipCode": "20878" + "OrganizationZipCode": "89113" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGBBA", - "OrganizationName": "Bluegrass Kidney Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBFBA", + "OrganizationName": "Advocate - Oscar Alonso MD SC", "NPIID": "", - "OrganizationZipCode": "40059" + "OrganizationZipCode": "60515" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EACICA", - "OrganizationName": "Gastroenterology and Nutrition of Central Florida", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHCIAA", + "OrganizationName": "James Brazil, MD", "NPIID": "", - "OrganizationZipCode": "34748" + "OrganizationZipCode": "42211" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCFDAA", - "OrganizationName": "Mittal Kidney and Dialysis", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEEDAD", + "OrganizationName": "Shaver Medical Clinic", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77506" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIJHAA", - "OrganizationName": "Professional Health Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEBBCD", + "OrganizationName": "Dallas Regenerative and Neuropathy Center PLLC", "NPIID": "", - "OrganizationZipCode": "33713" + "OrganizationZipCode": "75093" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGIFAD", - "OrganizationName": "Georgetown Hospital System - dba Tidelands Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JACJCA", + "OrganizationName": "Douglas Neurology Associates, P.C.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30135" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGCGAD", - "OrganizationName": "Doylestown Hospital - ECW Ambulatory", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJEDAA", + "OrganizationName": "Rehan Ahmad, M.D.", "NPIID": "", - "OrganizationZipCode": "18901" + "OrganizationZipCode": "12553" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGIICD", - "OrganizationName": "Northwest Family Physicians LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJEGAD", + "OrganizationName": "Rockland Family Medical Care", "NPIID": "", - "OrganizationZipCode": "67205" + "OrganizationZipCode": "10952" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDEJAA", - "OrganizationName": "New England Neurological", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAEGBA", + "OrganizationName": "Heart Peripheral Vascular Group (Dr. Neasman)", "NPIID": "", - "OrganizationZipCode": "01843" + "OrganizationZipCode": "78550" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCFBBD", - "OrganizationName": "Legacy Orthopedics, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJIDBA", + "OrganizationName": "Heart of the America Eyecare", "NPIID": "", - "OrganizationZipCode": "75248" + "OrganizationZipCode": "66215" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADIBD", - "OrganizationName": "SUNSHINE RHEUMATOLOGY AND ARTHRITIS CENTER LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBJCA", + "OrganizationName": "Pine Mountain Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIABCD", - "OrganizationName": "Cardiology Consultants of East Michigan", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBEIBA", + "OrganizationName": "Advocate - Cardiovascular Care Consultants", "NPIID": "", - "OrganizationZipCode": "48446" + "OrganizationZipCode": "60453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDFHBA", - "OrganizationName": "OHS - Christopher Whitty, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAHCCA", + "OrganizationName": "Westside Family Health Center", "NPIID": "", - "OrganizationZipCode": "48193" + "OrganizationZipCode": "90405-4901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHEABD", - "OrganizationName": "Bartlett Regional Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAHDAD", + "OrganizationName": "Lake City Institute of Neurology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32055" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDBCD", - "OrganizationName": "Robert Neville Associates, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHFIBA", + "OrganizationName": "Advocate - Pulmonary Sleep Medicine Clinic LLC", "NPIID": "", - "OrganizationZipCode": "77380" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDBCBD", - "OrganizationName": "Gulf Coast Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFCFAA", + "OrganizationName": "Noe R. Olvera, MD", "NPIID": "", - "OrganizationZipCode": "34668" + "OrganizationZipCode": "77901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHEADA", - "OrganizationName": "Diabetes And Metabolism Specialists of San Antonio", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJGABA", + "OrganizationName": "Tom Gabriel MD LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "21502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIJBA", - "OrganizationName": "Advocate - Quality Medical Care, SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEJAA", + "OrganizationName": "Stuart A. Shapiro, M.D.", "NPIID": "", - "OrganizationZipCode": "60016" + "OrganizationZipCode": "77063" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICIFBD", - "OrganizationName": "Sonoran Spine Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFAJBA", + "OrganizationName": "HCA - ENT Associates of CC", "NPIID": "", - "OrganizationZipCode": "85281" + "OrganizationZipCode": "78411" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIGDAA", - "OrganizationName": "Castle Country Orthopaedics and Sports Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGFFCA", + "OrganizationName": "Orange Medical Surgical Associates", "NPIID": "", - "OrganizationZipCode": "84501" + "OrganizationZipCode": "77630" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHAGBD", - "OrganizationName": "Comprehensive Primary Care, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGIEBA", + "OrganizationName": "BIDMC LGH - Riverside Nephrology PC", "NPIID": "", - "OrganizationZipCode": "30046" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGEHCD", - "OrganizationName": "Kirkwood Diagnostic Orthopedic Associates LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEEBDD", + "OrganizationName": "OMNI PRIMARY CARE, PC", "NPIID": "", - "OrganizationZipCode": "63122" + "OrganizationZipCode": "30328" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJBFCA", - "OrganizationName": "Wythe Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJHIAD", + "OrganizationName": "Shehzad Sami MD", "NPIID": "", - "OrganizationZipCode": "24382" + "OrganizationZipCode": "77521" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDFHBD", - "OrganizationName": "Internal Medicine Associates - TX", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAHAAA", + "OrganizationName": "Dr Riaz Mohammad", "NPIID": "", - "OrganizationZipCode": "78382" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJICD", - "OrganizationName": "Complete cardiac vascular care, pllc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHBCD", + "OrganizationName": "AbsoluteCARE", "NPIID": "", - "OrganizationZipCode": "76063" + "OrganizationZipCode": "30309" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEAFAD", - "OrganizationName": "Wound Care Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCGCA", + "OrganizationName": "Cancer Care Chemotherapy Center", "NPIID": "", - "OrganizationZipCode": "79413" + "OrganizationZipCode": "34972" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIAACA", - "OrganizationName": "Nilesh Patel, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGAIBD", + "OrganizationName": "Little River Medical Center Inc", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "29566" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFGBD", - "OrganizationName": "Algos Pain and Spine Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGBCD", + "OrganizationName": "Redirect Health", "NPIID": "", - "OrganizationZipCode": "60607" + "OrganizationZipCode": "85254" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICAFAA", - "OrganizationName": "Unity Health Care,Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJHACD", + "OrganizationName": "Hisham Abukamleh MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "93306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGJBA", - "OrganizationName": "Connally Memorial Hospital - Cardiology Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGECAA", + "OrganizationName": "East Atlanta Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGIJBD", - "OrganizationName": "Health Center Network of New York", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEBCDA", + "OrganizationName": "Rebecca Kerr MD DBA California Pain Institute, a Med Grp", "NPIID": "", - "OrganizationZipCode": "12206" + "OrganizationZipCode": "90045" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEBECD", - "OrganizationName": "RWLC Consulting LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABDFAD", + "OrganizationName": "Covered Bridge Healthcare Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "49032" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJFECD", - "OrganizationName": "NSC Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFEICA", + "OrganizationName": "Smyrna Family Medicine LLC", "NPIID": "", - "OrganizationZipCode": "30024" + "OrganizationZipCode": "30080" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIHECD", - "OrganizationName": "JAROSLAW K. PASZKOWIAK, M.D.P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIJFBD", + "OrganizationName": "Fort Davis Family Practice", "NPIID": "", - "OrganizationZipCode": "73505" + "OrganizationZipCode": "79734" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCHJAA", - "OrganizationName": "Pulmonary Critical Care and Sleep Specialists, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HICCDA", + "OrganizationName": "Sole Foot and Ankle Specialists", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "85306" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCHHBA", - "OrganizationName": "Peter Grant M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAJEBA", + "OrganizationName": "ACME Medical Specialties PLLC", "NPIID": "", - "OrganizationZipCode": "60302" + "OrganizationZipCode": "28358" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHCIAA", - "OrganizationName": "Caring Cardiology Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDAIAD", + "OrganizationName": "Luis Vazquez, DO", "NPIID": "", - "OrganizationZipCode": "92653" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCGGCD", - "OrganizationName": "Gill Neurosciences, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAADAD", + "OrganizationName": "Bucks Thyroid Endocrine Care, LLC", "NPIID": "", - "OrganizationZipCode": "77065" + "OrganizationZipCode": "19067" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHDFBA", - "OrganizationName": "Coastal Surgical Vascular Vein Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJCGAA", + "OrganizationName": "Fishkill Medical Associates", "NPIID": "", - "OrganizationZipCode": "29407" + "OrganizationZipCode": "12524" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBJJAD", - "OrganizationName": "Legacy Pain Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEDAA", + "OrganizationName": "NYCDOHMH-Zoe Liu Medical Office", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "10002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIICA", - "OrganizationName": "Etowah Center for Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEDJBA", + "OrganizationName": "HCA - Advanced Surgical Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "64064" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIABBA", - "OrganizationName": "HCA - North Texas Lung Sleep Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCEBD", + "OrganizationName": "Heart and Vascular Wellness Center", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "92562" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADJCA", - "OrganizationName": "Victoria Vein Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADGEAA", + "OrganizationName": "Bay Area, ENT, Specialist, LLP", "NPIID": "", - "OrganizationZipCode": "77901" + "OrganizationZipCode": "77584" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGBFAA", - "OrganizationName": "Arizona Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIHCA", + "OrganizationName": "Gregory Maidoh, MD", "NPIID": "", - "OrganizationZipCode": "85364" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGDEBA", - "OrganizationName": "Rashid Elahi, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJAGBA", + "OrganizationName": "Interventional Cardiology and Vascular Consultants", "NPIID": "", - "OrganizationZipCode": "95116" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEFBBA", - "OrganizationName": "Kris G. McGrath, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDJCD", + "OrganizationName": "BHN - Blair T Butterfield DO", "NPIID": "", - "OrganizationZipCode": "60611" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIHHBA", - "OrganizationName": "East Texas Medical Specialties", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHFGBD", + "OrganizationName": "Southeast Alabama Rural Health Services", "NPIID": "", - "OrganizationZipCode": "75965" + "OrganizationZipCode": "36079" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFBGBA", - "OrganizationName": "Family Medical Clinic of Harrogate, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEIBAA", + "OrganizationName": "AAL Podiatry Associates PC", "NPIID": "", - "OrganizationZipCode": "37752" + "OrganizationZipCode": "23504" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHFEAA", - "OrganizationName": "Ankle and Foot LLC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBIBDD", + "OrganizationName": "YurHealth, LLC", "NPIID": "", - "OrganizationZipCode": "31501" + "OrganizationZipCode": "30442" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDFJCD", - "OrganizationName": "Baal Perazim Wellness, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACCGAA", + "OrganizationName": "Digestive Specialists,P.A", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77384" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGHDAD", - "OrganizationName": "Alexandria Neurosurgical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBDJBA", + "OrganizationName": "Midcoast Cardiovascular Associates", "NPIID": "", - "OrganizationZipCode": "71301" + "OrganizationZipCode": "93454" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIHCA", - "OrganizationName": "Westchester Putnam Gastroenterology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBCGBD", + "OrganizationName": "Atlanta Total Foot and Ankle Care", "NPIID": "", - "OrganizationZipCode": "10512" + "OrganizationZipCode": "30189" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIEBD", - "OrganizationName": "The Vaz Clinic, P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHEAD", + "OrganizationName": "Family Medical Walkin(Gurley)", "NPIID": "", - "OrganizationZipCode": "78629" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FADCBD", - "OrganizationName": "Schlesinger Pain Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGADD", + "OrganizationName": "Eastern Internal Medicine, P.A.", "NPIID": "", - "OrganizationZipCode": "91506" + "OrganizationZipCode": "27893" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIFCAA", - "OrganizationName": "Atlanta Heart Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJGAAA", + "OrganizationName": "Gowani Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGEEAA", - "OrganizationName": "Northeastern Ohio Medical Specialists.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIHCAD", + "OrganizationName": "Nephrology-Hypertension Associates", "NPIID": "", - "OrganizationZipCode": "44320" + "OrganizationZipCode": "08882" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADGCD", - "OrganizationName": "Florida Premier Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEFGBA", + "OrganizationName": "HCA - Dr. Linh Dang", "NPIID": "", - "OrganizationZipCode": "33484" + "OrganizationZipCode": "77304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFDCD", - "OrganizationName": "I B MEDICAL ASSOCIATES, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJIAA", + "OrganizationName": "HCA - Gastroeneterology and Associates", "NPIID": "", - "OrganizationZipCode": "33150" + "OrganizationZipCode": "33709" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECEBCA", - "OrganizationName": "Houston Neurocare, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIEGCD", + "OrganizationName": "Desert Bloom Family Medicine", "NPIID": "", - "OrganizationZipCode": "77030" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEHAA", - "OrganizationName": "Gramercy Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJBJAD", + "OrganizationName": "East Side Family Medicine", "NPIID": "", - "OrganizationZipCode": "10901" + "OrganizationZipCode": "40601" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGEGCA", - "OrganizationName": "California Clinical Thrombosis Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCIAA", + "OrganizationName": "Bay Area Total Health Medical Group, P.A.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77598" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIAIAD", - "OrganizationName": "Huntington Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFCEAA", + "OrganizationName": "AZ Endocrine Institute", "NPIID": "", - "OrganizationZipCode": "11743" + "OrganizationZipCode": "85201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDBEBD", - "OrganizationName": "VICTORIA ORTHOPEDIC CENTER LLP", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCBFAD", + "OrganizationName": "Terry L. Swezey, MD, P.A.", "NPIID": "", - "OrganizationZipCode": "77901" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFCEBA", - "OrganizationName": "The Olsen Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEEBAA", + "OrganizationName": "Family Medical Center", "NPIID": "", - "OrganizationZipCode": "72745" + "OrganizationZipCode": "85546" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGBJBA", - "OrganizationName": "IPECH - Chandan Saw D.O.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDGDAD", + "OrganizationName": "Shariar Cohen MD Corp", "NPIID": "", - "OrganizationZipCode": "94040" + "OrganizationZipCode": "91360" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHCCAA", - "OrganizationName": "Cranberry Medical Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDGAD", + "OrganizationName": "Prasad Maddukuri MD PLLC", "NPIID": "", - "OrganizationZipCode": "26764" + "OrganizationZipCode": "75182" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEADD", - "OrganizationName": "Matthew Schaeffer MD P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBJABD", + "OrganizationName": "BPN Family Medicine Clinic", "NPIID": "", - "OrganizationZipCode": "19382" + "OrganizationZipCode": "77701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBEBBA", - "OrganizationName": "Munson - BirchTree Podiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEEIAA", + "OrganizationName": "Northwest Heart Center", "NPIID": "", - "OrganizationZipCode": "49686" + "OrganizationZipCode": "77375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHACDA", - "OrganizationName": "Reed Ward DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIJEAA", + "OrganizationName": "Transfusion Medicine Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBCABA", - "OrganizationName": "HCA - Mukesh Patel, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCABD", + "OrganizationName": "Anees Ahsan MD", "NPIID": "", - "OrganizationZipCode": "34667" + "OrganizationZipCode": "20912" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFIACD", - "OrganizationName": "Live Oak Family Medicine, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDABA", + "OrganizationName": "Advocate - Reginald Spears MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBBACD", - "OrganizationName": "Sasse Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCEFAA", + "OrganizationName": "Family Allergy Asthma Care Consultants, LLC", "NPIID": "", - "OrganizationZipCode": "89502" + "OrganizationZipCode": "19904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIFCA", - "OrganizationName": "UMA Pain and Spine Clinic, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHHCA", + "OrganizationName": "Howard Memorial Hospital", "NPIID": "", - "OrganizationZipCode": "27804" + "OrganizationZipCode": "71852" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFCJBD", - "OrganizationName": "Alliance Spine and Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDICAA", + "OrganizationName": "Internal Medicine, Hypertension and Kidney Center", "NPIID": "", - "OrganizationZipCode": "78006" + "OrganizationZipCode": "23502" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFACBD", - "OrganizationName": "Allergy and Asthma Associates - NJ", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IIEEAD", + "OrganizationName": "Columbus Neurology Associates", "NPIID": "", - "OrganizationZipCode": "07701" + "OrganizationZipCode": "31901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJIAA", - "OrganizationName": "HCA-Krishnababu Chunduri MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHECBA", + "OrganizationName": "NYCDOHMH - Ching-Yin Lam, MD", "NPIID": "", - "OrganizationZipCode": "76104" + "OrganizationZipCode": "10038" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICIEAA", - "OrganizationName": "Syed J Raza MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJGFBA", + "OrganizationName": "Advocate - Harold Jamies, MD, PC DBA Jamies Medical Group", "NPIID": "", - "OrganizationZipCode": "92307" + "OrganizationZipCode": "60647" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCEAA", - "OrganizationName": "La Clinica del Pueblo, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBGACA", + "OrganizationName": "American Vision Associates", "NPIID": "", - "OrganizationZipCode": "20009" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AABDAD", - "OrganizationName": "Atul Aggarwal MD Cardiology Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEJBBA", + "OrganizationName": "Spring Branch Podiatry", "NPIID": "", - "OrganizationZipCode": "93311" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHAHCD", - "OrganizationName": "Man C Duong MD, APCDBA DBA Imperial Clinica", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCFHBD", + "OrganizationName": "Dr. Alameddine", "NPIID": "", - "OrganizationZipCode": "92231" + "OrganizationZipCode": "77429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDGDAA", - "OrganizationName": "Kikkeri International", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACACBD", + "OrganizationName": "Wilson Velazquez, MD", "NPIID": "", - "OrganizationZipCode": "75150" + "OrganizationZipCode": "78411" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDBADD", - "OrganizationName": "Michael R. Gatto,M.D.,Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGACA", + "OrganizationName": "Advocate - Manuel A. Malicay", "NPIID": "", - "OrganizationZipCode": "92262" + "OrganizationZipCode": "60440" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEHFAD", - "OrganizationName": "Ideal Option----TEST", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEFJAA", + "OrganizationName": "Rheumatology Clinic", "NPIID": "", - "OrganizationZipCode": "99336" + "OrganizationZipCode": "77573" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAFJAD", - "OrganizationName": "CenterWell Senior Primary Care", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHACDA", + "OrganizationName": "BHN - Pioneer Cardiovascular Consultants, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJIFCD", - "OrganizationName": "Richard L. Chang, P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIIBA", + "OrganizationName": "Eastern Nephrology", "NPIID": "", - "OrganizationZipCode": "33176" + "OrganizationZipCode": "35215" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGAHAA", - "OrganizationName": "Houston Nephrology Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEEJCA", + "OrganizationName": "Mid Florida Cardiovascular Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DICAAA", - "OrganizationName": "Arthritis Center of Nebraska", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFACCA", + "OrganizationName": "Advocate - North Suburban Medical Office LTD.", "NPIID": "", - "OrganizationZipCode": "68516" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHAAA", - "OrganizationName": "Jose M. Roque, M.D., Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AADFAA", + "OrganizationName": "Macon Lung and Atlantic Sleep Lab", "NPIID": "", - "OrganizationZipCode": "92868" + "OrganizationZipCode": "31201" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CADCCA", - "OrganizationName": "Pulmonary and Sleep Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECIJCA", + "OrganizationName": "Sugarland Neurology Sleep", "NPIID": "", - "OrganizationZipCode": "43081" + "OrganizationZipCode": "77479" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGBCCA", - "OrganizationName": "Adventist - Qiufang Cheng, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCAHCA", + "OrganizationName": "Moises Siperstein MD", "NPIID": "", - "OrganizationZipCode": "20877" + "OrganizationZipCode": "34952" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJEGBA", - "OrganizationName": "Srinivas Pavuluri MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGGJBA", + "OrganizationName": "Lynda Lane MD", "NPIID": "", - "OrganizationZipCode": "07733" + "OrganizationZipCode": "60657" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIHBCD", - "OrganizationName": "Women s Care Florida North - Physician", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJBHAD", + "OrganizationName": "Primary and Alternative Medicine Center", "NPIID": "", - "OrganizationZipCode": "33609" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBHBCD", - "OrganizationName": "Sarasota Medical Pregnancy Center INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIBFAD", + "OrganizationName": "Ozarks Family Health", "NPIID": "", - "OrganizationZipCode": "34239" + "OrganizationZipCode": "65721" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBFAD", - "OrganizationName": "Cape Cod Orthopaedics and Sports Medicine PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBFAA", + "OrganizationName": "Florida Urology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34741" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGHABD", - "OrganizationName": "NORTH GEORGIA UROLOGY CENTER PC INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAIBBD", + "OrganizationName": "Spine and Orthopedic Center", "NPIID": "", - "OrganizationZipCode": "30720" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJBFBD", - "OrganizationName": "Conviva Care Solutions, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHEBAA", + "OrganizationName": "Associates In Medicine \u0026 Surgery,LLC", "NPIID": "", - "OrganizationZipCode": "33155" + "OrganizationZipCode": "33919" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDBHBA", - "OrganizationName": "Cape Center Internal Medicine PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBGFBA", + "OrganizationName": "Advocate - Kirill Zhadovich, MD SC", "NPIID": "", - "OrganizationZipCode": "28304" + "OrganizationZipCode": "60068" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJACA", - "OrganizationName": "Monica O. Woodward, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBFECA", + "OrganizationName": "Northeast Allergy, Asthma Immunology", "NPIID": "", - "OrganizationZipCode": "34110" + "OrganizationZipCode": "01453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBIAAA", - "OrganizationName": "Scott Orthopedic Center, Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDADA", + "OrganizationName": "Vascularcare of Texas, PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75042" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEHIBD", - "OrganizationName": "Idaho Falls Family and Sports Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHDHCA", + "OrganizationName": "Beth Anglin, MD", "NPIID": "", - "OrganizationZipCode": "83404" + "OrganizationZipCode": "75075" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAFHBA", - "OrganizationName": "Blair Nephrology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGACD", + "OrganizationName": "Blue Water Internal Medicine PC", "NPIID": "", - "OrganizationZipCode": "16601" + "OrganizationZipCode": "48060" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFAIBD", - "OrganizationName": "ASIMA RAHMAN LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADBDBA", + "OrganizationName": "Amir Hassan MD, Laila Hassan MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77089" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFCDCA", - "OrganizationName": "Arthritis Treatment Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCEBA", + "OrganizationName": "Mobile Physician Services PA", "NPIID": "", - "OrganizationZipCode": "88001" + "OrganizationZipCode": "34652" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AOMNYC", - "OrganizationName": "Artisans of Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBCDBA", + "OrganizationName": "Advocate - Ashland Medical Clinic", "NPIID": "", - "OrganizationZipCode": "11220" + "OrganizationZipCode": "60657" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGICD", - "OrganizationName": "Medical Cares Associates - Prattville, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJCFAA", + "OrganizationName": "Texas Pain Management", "NPIID": "", - "OrganizationZipCode": "36067" + "OrganizationZipCode": "77380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEDGAA", - "OrganizationName": "Dingmans Medical", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBBHAA", + "OrganizationName": "Newport Coast Gastroenterology", "NPIID": "", - "OrganizationZipCode": "18328" + "OrganizationZipCode": "92663" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAJFAA", - "OrganizationName": "Family Physicians Of Spartanburg PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJFEAD", + "OrganizationName": "Salman Ahmad, MD", "NPIID": "", - "OrganizationZipCode": "29301" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFACAA", - "OrganizationName": "Cornerstone Pulmonary and Critical Care Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCHBCA", + "OrganizationName": "Philip Blum, MD, PA", "NPIID": "", - "OrganizationZipCode": "37087" + "OrganizationZipCode": "77024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGHHBD", - "OrganizationName": "LUIS F ANEZ, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEHIBA", + "OrganizationName": "Family Medical Associates, PC", "NPIID": "", - "OrganizationZipCode": "32257" + "OrganizationZipCode": "47170" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDJHCD", - "OrganizationName": "Test_kelvin_local", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGCCA", + "OrganizationName": "Pain Management Services", "NPIID": "", - "OrganizationZipCode": "01582" + "OrganizationZipCode": "35244" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDBBA", - "OrganizationName": "Christopher Ha MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJBBBA", + "OrganizationName": "Josel Cabaccan MD", "NPIID": "", - "OrganizationZipCode": "95678" + "OrganizationZipCode": "95148" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEIBD", - "OrganizationName": "Gastroenterology Consultants - SC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFCBA", + "OrganizationName": "Advocate - John Oh M.D.S.C.", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60714" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBGCAA", - "OrganizationName": "Marutani", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIAFBA", + "OrganizationName": "Susan Rife Family Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60467" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIEICA", - "OrganizationName": "AIP - Pinnacle Care Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDJCA", + "OrganizationName": "Affiliated Urologists", "NPIID": "", - "OrganizationZipCode": "85381" + "OrganizationZipCode": "85012" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFDGBA", - "OrganizationName": "Frank Daniel Mongiardo, MD, PSC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFCABA", + "OrganizationName": "Advocate - YR Medical Group SC", "NPIID": "", - "OrganizationZipCode": "41701" + "OrganizationZipCode": "60062" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGEABD", - "OrganizationName": "C and D Pulmonary", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGICA", + "OrganizationName": "Chandler Neurology and Sleep Disorders Associates PC", "NPIID": "", - "OrganizationZipCode": "34667" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEIJCA", - "OrganizationName": "Adriana Pop-Moody Clinic PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIIDAA", + "OrganizationName": "NYCDOHMH-8Ave Medical Office PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHBDBD", - "OrganizationName": "Sahara Behavioral Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAFEAA", + "OrganizationName": "Sugarloaf Medical, P.C", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "30024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEIHCD", - "OrganizationName": "Hunterdon Neurology PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBJEAA", + "OrganizationName": "Campbell Urology", "NPIID": "", - "OrganizationZipCode": "08801" + "OrganizationZipCode": "75904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJFDBD", - "OrganizationName": "Advocate - Chicago Hand Orthopedic Surgery Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACHBCA", + "OrganizationName": "Chambers Memorial Hospital Clinic", "NPIID": "", - "OrganizationZipCode": "60173" + "OrganizationZipCode": "72833" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIHCA", - "OrganizationName": "Tampa Bay Bone Joint Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEFEAA", + "OrganizationName": "Midwest Nephology Associates .P.C.", "NPIID": "", - "OrganizationZipCode": "33618" + "OrganizationZipCode": "73130" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFCAA", - "OrganizationName": "Northwest Medical Care, LLC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDGCBA", + "OrganizationName": "Internal Medicine And Infectious Disease", "NPIID": "", - "OrganizationZipCode": "07876" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBGDAD", - "OrganizationName": "Internal - Labcorp", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIFBD", + "OrganizationName": "Pulmonology Clinic of Opelousas", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "70570" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEIEAA", - "OrganizationName": "Jaiswal Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAACBD", + "OrganizationName": "Malek Medical Center", "NPIID": "", - "OrganizationZipCode": "74701" + "OrganizationZipCode": "07764" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECEIBD", - "OrganizationName": "Blue Ridge Pain Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGCCDA", + "OrganizationName": "Desert Angels Medical Clinic", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "86442" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDEHBD", - "OrganizationName": "Physicians Specialists of Northern NJ", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJFFBA", + "OrganizationName": "Peace Internal Medicine and Cardiology Center", "NPIID": "", - "OrganizationZipCode": "07562" + "OrganizationZipCode": "29605" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAHFAD", - "OrganizationName": "Mena Regional Health System", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHBEAA", + "OrganizationName": "Dimitri Dermatology", "NPIID": "", - "OrganizationZipCode": "71953" + "OrganizationZipCode": "70056" + }, + { + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIHBA", + "OrganizationName": "HCA - Greenville Neurology Associates", + "NPIID": "", + "OrganizationZipCode": "75401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHHGAA", - "OrganizationName": "Kids First Pediatrics of Raleigh", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFHIBD", + "OrganizationName": "Manos Family Practice", "NPIID": "", - "OrganizationZipCode": "27604" + "OrganizationZipCode": "19380" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGAJCA", - "OrganizationName": "Razi Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCHAD", + "OrganizationName": "SWHR - Greenville Healthcare Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "75401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDIDBA", - "OrganizationName": "Angel Raposas, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGCJCA", + "OrganizationName": "Weiyan Tan Physician, PC", "NPIID": "", - "OrganizationZipCode": "16601" + "OrganizationZipCode": "11220" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEJCBA", - "OrganizationName": "NYCDOHMH - Advanced Gynecology and Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHDJBA", + "OrganizationName": "Shakti Narain, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "34748" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICJAAA", - "OrganizationName": "Texas ENT Specialists PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBGCCA", + "OrganizationName": "Sultan Khan, M.D.", "NPIID": "", - "OrganizationZipCode": "77065" + "OrganizationZipCode": "11229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEIEAA", - "OrganizationName": "Mary s Center for Maternal and Child Care, Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIJADA", + "OrganizationName": "Heart and Vascular Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIJFBA", - "OrganizationName": "Marc Lieberman, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHAACA", + "OrganizationName": "Mid South Gastroenterology", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "38464" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGCACA", - "OrganizationName": "Lowe and Andya Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEGDBD", + "OrganizationName": "Katy Nephrology Associates", "NPIID": "", - "OrganizationZipCode": "95945" + "OrganizationZipCode": "77082" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFHEAD", - "OrganizationName": "Erickson Living Management", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGIBBA", + "OrganizationName": "Primary Care Group, LLC", "NPIID": "", - "OrganizationZipCode": "21228" + "OrganizationZipCode": "38104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFIFBA", - "OrganizationName": "Whitney Dixon, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDDJBD", + "OrganizationName": "Northside Podiatry P.C", "NPIID": "", - "OrganizationZipCode": "95926" + "OrganizationZipCode": "30434" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHDBBA", - "OrganizationName": "Don Mehrab, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEGCBA", + "OrganizationName": "Selena Ellis, MD", "NPIID": "", - "OrganizationZipCode": "90212" + "OrganizationZipCode": "94705" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHIJAD", - "OrganizationName": "University Vascular Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCGHCA", + "OrganizationName": "AMITA - Soumya Health, LLC", "NPIID": "", - "OrganizationZipCode": "90024" + "OrganizationZipCode": "60527-5226" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAHFCA", - "OrganizationName": "JULIAN F. NARANJO, MD, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJFAA", + "OrganizationName": "Sacry, MD,Roger", "NPIID": "", - "OrganizationZipCode": "33022" + "OrganizationZipCode": "64836" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAEBAA", - "OrganizationName": "Innovative Primary Care, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGBIAD", + "OrganizationName": "Vail Summit Orthopaedics", "NPIID": "", - "OrganizationZipCode": "85234" + "OrganizationZipCode": "80443" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAJECA", - "OrganizationName": "Cancer Care Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBDJCD", + "OrganizationName": "Greater Baden Medical Services", "NPIID": "", - "OrganizationZipCode": "90036" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFFICA", - "OrganizationName": "INDIAN RIVER MEDICAL OFFICE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFJBA", + "OrganizationName": "HCA - Table Mountain Foot and Ankle", "NPIID": "", - "OrganizationZipCode": "32796" + "OrganizationZipCode": "80033" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGAGAA", - "OrganizationName": "Western Kentucky Heart and Lung Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGDECD", + "OrganizationName": "Cutting Edge Foot and Ankle Clinic PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "37207" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABEJBA", - "OrganizationName": "TKFMC - Gurtej Dhillon, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJABA", + "OrganizationName": "Pasco Cardiology Associates", "NPIID": "", - "OrganizationZipCode": "93277" + "OrganizationZipCode": "33541" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHDIAA", - "OrganizationName": "NYCDOHMH-Sindhu Gupta, M.D., P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGIFAD", + "OrganizationName": "Georgetown Hospital System - dba Tidelands Health", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "29440-3304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDDBDA", - "OrganizationName": "Abbas Khans LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFEIBA", + "OrganizationName": "Kidney Center of South Louisiana", "NPIID": "", - "OrganizationZipCode": "32955" + "OrganizationZipCode": "70301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIAJCA", - "OrganizationName": "Dr. Erick C. Derocher, DO", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGEJAD", + "OrganizationName": "Betsy Perez, MD", "NPIID": "", - "OrganizationZipCode": "73644" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJEAAA", - "OrganizationName": "Center For Family And Geriatric Medicine, S.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJHAA", + "OrganizationName": "Peter Chang, MD, PA", "NPIID": "", - "OrganizationZipCode": "60005" + "OrganizationZipCode": "77074" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJEBAA", - "OrganizationName": "Shore Cardiology Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DABABA", + "OrganizationName": "Comprehensive Heart and Sleep", "NPIID": "", - "OrganizationZipCode": "08724" + "OrganizationZipCode": "32578" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAHJBA", - "OrganizationName": "Venu Prabaker MD Inc - MPMG", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHBJBA", + "OrganizationName": "Powell Orthopedics", "NPIID": "", - "OrganizationZipCode": "91942-7435" + "OrganizationZipCode": "35209" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEIBD", - "OrganizationName": "Arizona Pain Care Center PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFIJBA", + "OrganizationName": "Advocate - Quality Medical Care, SC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGEIAA", - "OrganizationName": "NYCDOHMH - Anil Gupta, M.D. P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEDCAA", + "OrganizationName": "Community Health Care, Inc.", "NPIID": "", - "OrganizationZipCode": "10473" + "OrganizationZipCode": "44614" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHGJCD", - "OrganizationName": "Test Facility-Akinsola Okunsokan", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJDAA", + "OrganizationName": "Carson Medical Group", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "89703" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJDHBD", - "OrganizationName": "Flagstaff Surgical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGIHAA", + "OrganizationName": "John Richard Duke SR.,M.D.,P.L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFCACD", - "OrganizationName": "ENT Sleep Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EAIFAA", + "OrganizationName": "NYCDOHMH,Advanced Womens Health OB/GYN Services", "NPIID": "", - "OrganizationZipCode": "20770" + "OrganizationZipCode": "11355" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIGHBD", - "OrganizationName": "Joseph Labricciosa, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFGBD", + "OrganizationName": "Algos Pain and Spine Care", "NPIID": "", - "OrganizationZipCode": "19008" + "OrganizationZipCode": "60607" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGCAA", - "OrganizationName": "Digestive and Liver Center of FL", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAFHBA", + "OrganizationName": "Matthew Keum MD", "NPIID": "", - "OrganizationZipCode": "32828" + "OrganizationZipCode": "44094" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBHAA", - "OrganizationName": "Benson Huang, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABGIAA", + "OrganizationName": "Stuart M. Homer MD and Associates", "NPIID": "", - "OrganizationZipCode": "78041" + "OrganizationZipCode": "07011" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFHBD", - "OrganizationName": "Dallas Premier Heart and Vascular", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFDIBA", + "OrganizationName": "Frederick Medical \u0026 Pulmonary Associates", "NPIID": "", - "OrganizationZipCode": "75243" + "OrganizationZipCode": "21704" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEBJCA", - "OrganizationName": "Complete Foot Care Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBBDCD", + "OrganizationName": "CERIUM URGENT CARE, LLC", "NPIID": "", - "OrganizationZipCode": "32128" + "OrganizationZipCode": "30084" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIIBAA", - "OrganizationName": "Idicula Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HABGBD", + "OrganizationName": "Alamo Ranch Integrative Medicine", "NPIID": "", - "OrganizationZipCode": "34613" + "OrganizationZipCode": "78253" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAEACD", - "OrganizationName": "Grant Memorial Hospital Clinics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBJJAD", + "OrganizationName": "Legacy Pain Associates", "NPIID": "", - "OrganizationZipCode": "26847" + "OrganizationZipCode": "77375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EECCBD", - "OrganizationName": "Cattail River Hematology and Medical Oncology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCDCDA", + "OrganizationName": "Sarma S. Challa, MD", "NPIID": "", - "OrganizationZipCode": "20832" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCHBCD", - "OrganizationName": "Umpqua Orthopedics PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHIHAA", + "OrganizationName": "HCA- Southern Tennessee Cardiology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "37398" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIDJCD", - "OrganizationName": "Cherokee Family Healthcare, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJFJBA", + "OrganizationName": "Hudson Valley Endocrinology", "NPIID": "", - "OrganizationZipCode": "35960" + "OrganizationZipCode": "12528-1401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCBCD", - "OrganizationName": "NAZEERI FAMILY MEDICINE", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCGBD", + "OrganizationName": "Dr. Rose Osowik", "NPIID": "", - "OrganizationZipCode": "17042" + "OrganizationZipCode": "43623" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACGFAA", - "OrganizationName": "Neurology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIGFBD", + "OrganizationName": "Opticare Medicine PLLC", "NPIID": "", - "OrganizationZipCode": "96817" + "OrganizationZipCode": "34786" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJCBA", - "OrganizationName": "HCA - Mobeen Mazhar, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFCDA", + "OrganizationName": "Arminder Singh MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "01104" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHGACD", - "OrganizationName": "Ear Medical Group PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICJCD", + "OrganizationName": "Adventist - Ravi Passi, M.D., P.C", "NPIID": "", - "OrganizationZipCode": "78240" + "OrganizationZipCode": "20850" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIAIBD", - "OrganizationName": "Polyclinic Medical Center Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDEADD", + "OrganizationName": "MSO - Honeycomb Management Services", "NPIID": "", - "OrganizationZipCode": "93305" + "OrganizationZipCode": "38119" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGBBCD", - "OrganizationName": "Academy Orthopedics LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHEABA", + "OrganizationName": "Peninsula Allergy Asthma", "NPIID": "", - "OrganizationZipCode": "30040" + "OrganizationZipCode": "21801" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGEGCD", - "OrganizationName": "Vadim Petrov, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJDFBA", + "OrganizationName": "Matsumoto, Takahashi and Hashimoto, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHIGCD", - "OrganizationName": "Vascular Surgery Associates of Richmond PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIGECA", + "OrganizationName": "Robert Taylor, MD", "NPIID": "", - "OrganizationZipCode": "23226" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFIGAA", - "OrganizationName": "Michelle Plaster MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJJAD", + "OrganizationName": "SNMH - Bouchier Pritchett Family Medicine", "NPIID": "", - "OrganizationZipCode": "30655" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBHAD", - "OrganizationName": "Digestive Health Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAJECD", + "OrganizationName": "COMPREHENSIVE PEDIATRICS PC", "NPIID": "", - "OrganizationZipCode": "34471" + "OrganizationZipCode": "08820" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFGCD", - "OrganizationName": "CHRISTOPHER D. MARSHALL M.D. PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIFBAA", + "OrganizationName": "MyMD Group", "NPIID": "", - "OrganizationZipCode": "38363" + "OrganizationZipCode": "08527" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICCJAD", - "OrganizationName": "Hometown Family Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGIGCD", + "OrganizationName": "East Ohio Regional Hospital", "NPIID": "", - "OrganizationZipCode": "30240" + "OrganizationZipCode": "43935" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJDAD", - "OrganizationName": "Silvia Castillo-Sy MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIGBAA", + "OrganizationName": "Tri-Cities Digestive Health Center", "NPIID": "", - "OrganizationZipCode": "78572" + "OrganizationZipCode": "99352" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AEHCBA", - "OrganizationName": "PRMC - Eastern Shore ENT Allergy Associates, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GICDCD", + "OrganizationName": "Micah Berry, MD Inc. dba Sierra Nevada Orthopedic Institute", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95945-5083" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHJJCA", - "OrganizationName": "Orlando Arthritis Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBAFBD", + "OrganizationName": "Northeast Florida Health Services", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32720" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GABFCD", - "OrganizationName": "Arizona Diabetes and Endocrinology PLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAGECD", + "OrganizationName": "DR GALAN,MD NEUROLOGY AND PAIN MANAGEMENT, PC", "NPIID": "", - "OrganizationZipCode": "85249" + "OrganizationZipCode": "93454" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBIIAD", - "OrganizationName": "Northeast Atlanta ENT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFCGCA", + "OrganizationName": "Spine Institute of North America", "NPIID": "", - "OrganizationZipCode": "77521" + "OrganizationZipCode": "08520" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIBACD", - "OrganizationName": "Fairbanks Partners, LLC dba Orlando Neurosurgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBHBD", + "OrganizationName": "Gateway Anesthesia and Pain Associates", "NPIID": "", - "OrganizationZipCode": "32789" + "OrganizationZipCode": "85207" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIAGAA", - "OrganizationName": "Cynthia Williams, MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJADA", + "OrganizationName": "Northwest Houston Neurology", "NPIID": "", - "OrganizationZipCode": "90503" + "OrganizationZipCode": "77375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHCJBA", - "OrganizationName": "Urologic Institute of the High Desert", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAFIAD", + "OrganizationName": "Chetna Mital MD", "NPIID": "", - "OrganizationZipCode": "92307" + "OrganizationZipCode": "45013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHAIAA", - "OrganizationName": "Jay Care Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJGCBD", + "OrganizationName": "Lopez Pain Management DBA Seaside Pain Spine", "NPIID": "", - "OrganizationZipCode": "33805" + "OrganizationZipCode": "32137" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHIHCD", - "OrganizationName": "Mountain View Headache and Spine Institute PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJACBD", + "OrganizationName": "Sahay Medical Group", "NPIID": "", - "OrganizationZipCode": "85012" + "OrganizationZipCode": "11530" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBEAA", - "OrganizationName": "Northwest Houston Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEIBDA", + "OrganizationName": "Ponderosa Family Care", "NPIID": "", - "OrganizationZipCode": "77375" + "OrganizationZipCode": "85541" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGBCAA", - "OrganizationName": "Austin Urological Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIEBA", + "OrganizationName": "Faith Medical Associates", "NPIID": "", - "OrganizationZipCode": "78705" + "OrganizationZipCode": "44143" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBFFAD", - "OrganizationName": "Dr Adam Madsen Orthopedic Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCAADA", + "OrganizationName": "Amaram and Amaram, M.D.s", "NPIID": "", - "OrganizationZipCode": "84078" + "OrganizationZipCode": "31501" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECIBD", - "OrganizationName": "PRECISION CARE WELLNESS, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIJFAD", + "OrganizationName": "Eliad Culcea MD", "NPIID": "", - "OrganizationZipCode": "19802" + "OrganizationZipCode": "59405" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBCGBD", - "OrganizationName": "John D Atwater MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDDECD", + "OrganizationName": "Garden City Neurology, PC", "NPIID": "", - "OrganizationZipCode": "32960" + "OrganizationZipCode": "11530" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFGJAD", - "OrganizationName": "SWHR - North Texas Preferred Health Partners", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCBCA", + "OrganizationName": "Woodrome Medical PA", "NPIID": "", - "OrganizationZipCode": "75246" + "OrganizationZipCode": "77351" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGBJCD", - "OrganizationName": "B3 Universal Management, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCIAA", + "OrganizationName": "Sierra Nevada Memorial Hospital - Dr. Claydon", "NPIID": "", - "OrganizationZipCode": "33647" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JEEDBA", - "OrganizationName": "Baycare - George B. Blake, MD PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCEACA", + "OrganizationName": "Advocate - Retina Consultants Ltd.", "NPIID": "", - "OrganizationZipCode": "33606" + "OrganizationZipCode": "60016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BAFJBD", - "OrganizationName": "San Antonio Head and Neck", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBEEAD", + "OrganizationName": "Bellezza Womens Health", "NPIID": "", - "OrganizationZipCode": "78229" + "OrganizationZipCode": "86305" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBHBCA", - "OrganizationName": "Lepow Podiatric Medical Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHBABA", + "OrganizationName": "Sierra Care Physicians", "NPIID": "", - "OrganizationZipCode": "77030" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDFGBD", - "OrganizationName": "Russell County Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGFAD", + "OrganizationName": "Ironwood Urology", "NPIID": "", - "OrganizationZipCode": "42642" + "OrganizationZipCode": "85048" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFJBAA", - "OrganizationName": "Knott Street Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBIACA", + "OrganizationName": "Interventional Pain Institute", "NPIID": "", - "OrganizationZipCode": "97212" + "OrganizationZipCode": "63006" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IAEGBD", - "OrganizationName": "Renal Specialists of North Texas", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBGEBD", + "OrganizationName": "Ashford Pain Solutions", "NPIID": "", - "OrganizationZipCode": "75015" + "OrganizationZipCode": "30606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHBGBD", - "OrganizationName": "Compassionate Medical Care, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEADCA", + "OrganizationName": "John W. Lace, MD", "NPIID": "", - "OrganizationZipCode": "10040" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDAAAA", - "OrganizationName": "Brody Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFGGBD", + "OrganizationName": "Central Valley Kidney Center", "NPIID": "", - "OrganizationZipCode": "11030" + "OrganizationZipCode": "93277" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCHBDA", - "OrganizationName": "Cobb Nephrology Hypertension Associates, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJJBCA", + "OrganizationName": "Advocate - Beatrisa Paz Averbuch MD SC", "NPIID": "", - "OrganizationZipCode": "30106" + "OrganizationZipCode": "60077" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHBBD", - "OrganizationName": "David A. Herf, MD General Surgery", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFEDAD", + "OrganizationName": "Thomas C Tolli MD PA", "NPIID": "", - "OrganizationZipCode": "32539" + "OrganizationZipCode": "33713" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJGCCD", - "OrganizationName": "Dr. Paul B. Ross, The Podiatry", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFDHCA", + "OrganizationName": "SNMH - Bruce V. Lattyak", "NPIID": "", - "OrganizationZipCode": "20814" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGIICD", - "OrganizationName": "Memorial Pulmonary and Sleep Disorders", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCBADA", + "OrganizationName": "Digestive Associates", "NPIID": "", - "OrganizationZipCode": "77079" + "OrganizationZipCode": "89030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCBCCA", - "OrganizationName": "MTT Corp - Harris Family Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGBECD", + "OrganizationName": "INDIAN RIVER CARDIOLOGY", "NPIID": "", - "OrganizationZipCode": "32901" + "OrganizationZipCode": "32960" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGDAAA", - "OrganizationName": "COMMONWEALTH INTERNAL MEDICINE, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBDIBA", + "OrganizationName": "Arkansas Heart Hospital Clinic", "NPIID": "", - "OrganizationZipCode": "22191-3310" + "OrganizationZipCode": "72211" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAJADD", - "OrganizationName": "Dr Joseph Weinstein", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCDBDD", + "OrganizationName": "Alamo Primary Care of Potranco PLLC", "NPIID": "", - "OrganizationZipCode": "38128" + "OrganizationZipCode": "78253" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGJHAD", - "OrganizationName": "Advanced Orthopedics of Oklahoma", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IICGCD", + "OrganizationName": "K S HEALTHCARE LLC dba Northeast Prohealth", "NPIID": "", - "OrganizationZipCode": "74136" + "OrganizationZipCode": "78109" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCFIAA", - "OrganizationName": "Horizon Surgical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHICAA", + "OrganizationName": "Jean Yun, MD", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "10013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHICD", - "OrganizationName": "Vladimir Gabay MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIEGCA", + "OrganizationName": "Eric J Brahin MD PLLC", "NPIID": "", - "OrganizationZipCode": "11375" + "OrganizationZipCode": "78224" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFJACD", - "OrganizationName": "Mason District Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEAHAA", + "OrganizationName": "Vascular and Vein Associates", "NPIID": "", - "OrganizationZipCode": "62644" + "OrganizationZipCode": "01844" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACJBAA", - "OrganizationName": "9th Street Internal Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJIECD", + "OrganizationName": "Provas of Ogden, LLC", "NPIID": "", - "OrganizationZipCode": "19107" + "OrganizationZipCode": "84403" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABGGBD", - "OrganizationName": "Endocrine Associates of Mid-Cities", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHFJBD", + "OrganizationName": "Lilac Ob-Gyn", "NPIID": "", - "OrganizationZipCode": "76022" + "OrganizationZipCode": "85224" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDCJBD", - "OrganizationName": "Anesthesia Associates of KC, PC dba Pain", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFEECA", + "OrganizationName": "JORGE A SIFUENTES MD PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "79007" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDIFBD", - "OrganizationName": "Oscar Ortiz, MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJCAAA", + "OrganizationName": "The Dermatology Center at Ladera", "NPIID": "", - "OrganizationZipCode": "08755" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJHJCD", - "OrganizationName": "Prime Medical Group LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHABDD", + "OrganizationName": "Prairie Podiatry L.L.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBBJAA", - "OrganizationName": "Digestive Healthcare Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCHGCD", + "OrganizationName": "InterMed", "NPIID": "", - "OrganizationZipCode": "85037" + "OrganizationZipCode": "04106" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDDJCD", - "OrganizationName": "Pulmonary and Sleep Private Care, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCEFCD", + "OrganizationName": "Peripheral Vascular Partners of Boise LLC", "NPIID": "", - "OrganizationZipCode": "86301" + "OrganizationZipCode": "83642" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIJAA", - "OrganizationName": "Michael W. Chan, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFFCAA", + "OrganizationName": "Tri-County, Poditary", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32159" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDDGCA", - "OrganizationName": "HCA - Digestive Liver Disease Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDJCBD", + "OrganizationName": "Vein and Vascular Experts", "NPIID": "", - "OrganizationZipCode": "77090" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCGBD", - "OrganizationName": "Brian J. Lee, MD, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDFIBA", + "OrganizationName": "Foothill Podiatry Clinic Of Grass Valley, Inc", "NPIID": "", - "OrganizationZipCode": "21042" + "OrganizationZipCode": "95945" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHGGAA", - "OrganizationName": "Lowcountry Spine And Sport", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJHBBA", + "OrganizationName": "Medical Chest Associates, PA", "NPIID": "", - "OrganizationZipCode": "29927" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCAHCD", - "OrganizationName": "Lakewood Medical Center P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DABGAA", + "OrganizationName": "Comprehensive Cardiac Care", "NPIID": "", - "OrganizationZipCode": "80214" + "OrganizationZipCode": "20016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBDBBA", - "OrganizationName": "John T. Frasca, MD, FACS", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCFIAA", + "OrganizationName": "UrologySpecialists of West Florida", "NPIID": "", - "OrganizationZipCode": "02081" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBFIAA", - "OrganizationName": "Newark CHC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJHBA", + "OrganizationName": "Manhattan Cardiac Medical", "NPIID": "", - "OrganizationZipCode": "07104" + "OrganizationZipCode": "10002" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DCIGCD", - "OrganizationName": "360 Cardiac Care, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIJHBD", + "OrganizationName": "William Newton Hospital", "NPIID": "", - "OrganizationZipCode": "76180" + "OrganizationZipCode": "67156" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCDCA", - "OrganizationName": "Physician Providers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJJJCD", + "OrganizationName": "Catherine Kilby, M.D.,LLC", "NPIID": "", - "OrganizationZipCode": "34471" + "OrganizationZipCode": "99508" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCEBA", - "OrganizationName": "Renal Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBGBBA", + "OrganizationName": "Advent Neurology, SC", "NPIID": "", - "OrganizationZipCode": "63136" + "OrganizationZipCode": "60005" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDBECD", - "OrganizationName": "Plaza Del Rio Eye Clinic, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCJEAA", + "OrganizationName": "Eko Internal Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "37375" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDAAAA", - "OrganizationName": "Lance, Gaynes, Zavadil Argento, M.D. P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBICAA", + "OrganizationName": "Midtown Neurology, PC", "NPIID": "", - "OrganizationZipCode": "20707-5234" + "OrganizationZipCode": "30312" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFJCCA", - "OrganizationName": "HCA - Michael N. Newton MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEFGCA", + "OrganizationName": "Advocate - Jacek Grela, MD SC", "NPIID": "", - "OrganizationZipCode": "33613" + "OrganizationZipCode": "60439" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBGHCD", - "OrganizationName": "Mouli Associates LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDICAA", + "OrganizationName": "Premier NW Houston Medical Group", "NPIID": "", - "OrganizationZipCode": "06074" + "OrganizationZipCode": "77065" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJJCD", - "OrganizationName": "RINA HEALTH MEDICAL PRACTICE P.C.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAJGBD", + "OrganizationName": "Advanced Heart and Vein Center", "NPIID": "", - "OrganizationZipCode": "11210" + "OrganizationZipCode": "80202" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCIAD", - "OrganizationName": "Christ Community Health Services TN", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGFACA", + "OrganizationName": "Advocate - Midwest Sleep Institute", "NPIID": "", - "OrganizationZipCode": "38112" + "OrganizationZipCode": "60031" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCACD", - "OrganizationName": "Rock Canyon Foot and Ankle Clinic, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDJCA", + "OrganizationName": "Swedish - Foot Ankle Specialist, LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60625" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAJACD", - "OrganizationName": "Advanced Arthritis and Rheumatology Care PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEJBA", + "OrganizationName": "Golden Orthopedics", "NPIID": "", - "OrganizationZipCode": "23112" + "OrganizationZipCode": "33428" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJFFCD", - "OrganizationName": "ART VASCULAR INTERVENTIONAL ASSOCIATES, INC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBAFCA", + "OrganizationName": "Merced Lung Sleep", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "95340" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJFADA", - "OrganizationName": "South Lake Pain Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHJBAA", + "OrganizationName": "Premier Gastroenterology, PA", "NPIID": "", - "OrganizationZipCode": "34711" + "OrganizationZipCode": "34613" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCACAA", - "OrganizationName": "St. Pete ENT, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJEDBA", + "OrganizationName": "William C. Brown, Jr, MD", "NPIID": "", - "OrganizationZipCode": "33713" + "OrganizationZipCode": "33756" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHDABA", - "OrganizationName": "Hampshire GI", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDJBD", + "OrganizationName": "Christopher VandeLune MD", "NPIID": "", - "OrganizationZipCode": "01062-3160" + "OrganizationZipCode": "51012" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIJHAA", - "OrganizationName": "Wake Spine and Pain Specialists, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEBDA", + "OrganizationName": "Flint Cardiovascular Consultants, PC", "NPIID": "", - "OrganizationZipCode": "27609" + "OrganizationZipCode": "48532" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEIHCD", - "OrganizationName": "Atlanta Prime Physicians, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDAJBA", + "OrganizationName": "Dallas Surgical Group", "NPIID": "", - "OrganizationZipCode": "30097" + "OrganizationZipCode": "75230" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFIJBD", - "OrganizationName": "Test-Shashank Patel", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJGCCD", + "OrganizationName": "NORTH TEXAS FOOT", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BBIBAA", - "OrganizationName": "Arthritis Care Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIBACD", + "OrganizationName": "Michael Bublik, MD", "NPIID": "", - "OrganizationZipCode": "61265" + "OrganizationZipCode": "91204" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ECFFCD", - "OrganizationName": "Hillside Medical Office, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFDCBD", + "OrganizationName": "Fairbanks Urology LLC", "NPIID": "", - "OrganizationZipCode": "67214" + "OrganizationZipCode": "99701" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CAAIBA", - "OrganizationName": "Trust Medical Services", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEACCD", + "OrganizationName": "Hassan Spine and Sports Medicine", "NPIID": "", - "OrganizationZipCode": "43213" + "OrganizationZipCode": "07551" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CACGAA", - "OrganizationName": "Sleepmed of Central Georgia", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCAIAD", + "OrganizationName": "Advanced Orthopedics Institute, P.A.", "NPIID": "", - "OrganizationZipCode": "31201" + "OrganizationZipCode": "32159" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIIEBA", - "OrganizationName": "Kumar Desai, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDEEAA", + "OrganizationName": "Whaley, Andrew", "NPIID": "", - "OrganizationZipCode": "91360-1869" + "OrganizationZipCode": "78205" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFEAD", - "OrganizationName": "Homeria Mehrabian MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DBBIBA", + "OrganizationName": "RPM Medical Billing", "NPIID": "", - "OrganizationZipCode": "92663" + "OrganizationZipCode": "80111" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFD1AD", - "OrganizationName": "Elion Krok, MD PC, DBA - IMMC Health", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHDCBA", + "OrganizationName": "Advocate - SFZ Corporation", "NPIID": "", - "OrganizationZipCode": "07052" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFEJCD", - "OrganizationName": "Test facility-MAELIETST, PA,LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGIBCD", + "OrganizationName": "Uma Mohan MD", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "77429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGCABA", - "OrganizationName": "Sarasota Vascular Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHJDCA", + "OrganizationName": "Affiliated Colon and Rectal Surgeons, PC", "NPIID": "", - "OrganizationZipCode": "34232" + "OrganizationZipCode": "85006-2769" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHEJCD", - "OrganizationName": "ARTERY AND VEIN SPECIALISTS OF AMERICA, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCAFBD", + "OrganizationName": "Yeargain Foot and Ankle", "NPIID": "", - "OrganizationZipCode": "77386" + "OrganizationZipCode": "75249" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDCFCA", - "OrganizationName": "Cardiology Associates of Sandwich", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBCFAA", + "OrganizationName": "Samuel Bada, MD", "NPIID": "", - "OrganizationZipCode": "02643" + "OrganizationZipCode": "38301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AICBBD", - "OrganizationName": "StratiFi - Fort Worth Medical Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFAGCA", + "OrganizationName": "New York City REC", "NPIID": "", - "OrganizationZipCode": "76104" + "OrganizationZipCode": "10013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEBHBA", - "OrganizationName": "Charles H Croft MD PA - Rep Medical - Ventana Med", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGJBDA", + "OrganizationName": "Satish Patel, MD", "NPIID": "", - "OrganizationZipCode": "32953-3466" + "OrganizationZipCode": "34652" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GHIGAA", - "OrganizationName": "Mehdi Meratee, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAIFAD", + "OrganizationName": "Vuy Li Physician", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "11219" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHIIBD", - "OrganizationName": "Carolina Pulmonary Physicians, P.A.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIDCDA", + "OrganizationName": "Advocate - ALR Health", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60471" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAIDAA", - "OrganizationName": "Marrietta Rheumatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGBFCA", + "OrganizationName": "The Heart Medical Group", "NPIID": "", - "OrganizationZipCode": "30060" + "OrganizationZipCode": "91406" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CGGICA", - "OrganizationName": "Bury Hettrick, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GBEIAA", + "OrganizationName": "Ranjit Grewal MD", "NPIID": "", - "OrganizationZipCode": "53168" + "OrganizationZipCode": "78253" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAEJCA", - "OrganizationName": "Margaret Leila Rasouli MD Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCIFAD", + "OrganizationName": "Expert Pain Physicians LLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60462" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIBJCD", - "OrganizationName": "Adept Medical, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BIFBCA", + "OrganizationName": "Family Care Clinic of Fresno", "NPIID": "", - "OrganizationZipCode": "84065" + "OrganizationZipCode": "93710" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABEFCA", - "OrganizationName": "Shasta Regional Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BFIAAA", + "OrganizationName": "Drs. Shahla And Fleer, P.A", "NPIID": "", - "OrganizationZipCode": "96001" + "OrganizationZipCode": "34135" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFDHAD", - "OrganizationName": "Aldor Pulmonary", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCCBD", + "OrganizationName": "Mercy and Truth Medical Missions", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "66102" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFHDBA", - "OrganizationName": "Flatbush Family Medicine, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAJGAA", + "OrganizationName": "Waleed Lashin MD", "NPIID": "", - "OrganizationZipCode": "11225" + "OrganizationZipCode": "07011" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHBIBD", - "OrganizationName": "Innis Community Health Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFFBDD", + "OrganizationName": "Inceptivia Health Wellness LLC", "NPIID": "", - "OrganizationZipCode": "70715" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BDBIAA", - "OrganizationName": "Kelso Dermatology, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDACAA", + "OrganizationName": "Corvallis Family Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "97330" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCEBA", - "OrganizationName": "Great Lakes Physiatrists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIIFCA", + "OrganizationName": "CIMA - Capital Internal Medicine Associates PC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "48911" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DAABDA", - "OrganizationName": "Baltimore Medical Associates, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJBICD", + "OrganizationName": "Heartcare MD PA", "NPIID": "", - "OrganizationZipCode": "21117" + "OrganizationZipCode": "76051" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AFBHBA", - "OrganizationName": "HCA - Stanley H. Kim", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACBGAA", + "OrganizationName": "Lyle Breeding, MD", "NPIID": "", - "OrganizationZipCode": "78758" + "OrganizationZipCode": "34613" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFFCCD", - "OrganizationName": "Vascular Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IGBABA", + "OrganizationName": "HCA - Michael H.C. Wei, MD-PG", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33950" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIAEBD", - "OrganizationName": "Endocrinology Associates of Southern Maryland", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCDFAA", + "OrganizationName": "NYCDOHMH-Meyerovich Medical Diagnostic PC.", "NPIID": "", - "OrganizationZipCode": "20735" + "OrganizationZipCode": "11374" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIBBA", - "OrganizationName": "Pulmonary Sleep of Tampa Bay", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIEAA", + "OrganizationName": "Catawba Valley Medical Center", "NPIID": "", - "OrganizationZipCode": "33511" + "OrganizationZipCode": "28602" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCGHAD", - "OrganizationName": "Khera Cardiology Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBGAAA", + "OrganizationName": "Mitchell S Gittelman DO PA", "NPIID": "", - "OrganizationZipCode": "85306" + "OrganizationZipCode": "21804" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJGBDA", - "OrganizationName": "Affiliates in Footcare", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IBJGBD", + "OrganizationName": "First Choice Endocrinology LLC", "NPIID": "", - "OrganizationZipCode": "01801" + "OrganizationZipCode": "32217" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IEFHAA", - "OrganizationName": "Stephen A. White, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EEBEBA", + "OrganizationName": "Advocate - Retina macula Care", "NPIID": "", - "OrganizationZipCode": "37043" + "OrganizationZipCode": "60453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIBCD", - "OrganizationName": "Neurology Consultants of Montgomery,P.C", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFJACA", + "OrganizationName": "Mount Rainier Urology", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "98506" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFFCCD", - "OrganizationName": "Advanced Wound Institute", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHJFBD", + "OrganizationName": "Community Pain Medicine", "NPIID": "", - "OrganizationZipCode": "85234" + "OrganizationZipCode": "11354" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ADFCBD", - "OrganizationName": "Oklahoma Center for Spine Pain Solutions, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HFGCAA", + "OrganizationName": "Asthma Allergy Physicians", "NPIID": "", - "OrganizationZipCode": "73159-7020" + "OrganizationZipCode": "02301" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCCECD", - "OrganizationName": "Test-Jasper_Bandi", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBHGAD", + "OrganizationName": "Foot Specialists of Alabama LLC", "NPIID": "", - "OrganizationZipCode": "01581" + "OrganizationZipCode": "35976" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGHGBA", - "OrganizationName": "Anil Sharma", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIABA", + "OrganizationName": "Advocate - Neurology Consultants, SC", "NPIID": "", - "OrganizationZipCode": "08757" + "OrganizationZipCode": "60429" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JCABCA", - "OrganizationName": "Marc Cohen, M.D., Inc.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEJIBD", + "OrganizationName": "Steven Schultz MD, PLLC", "NPIID": "", - "OrganizationZipCode": "91356" + "OrganizationZipCode": "73069" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABJCAD", - "OrganizationName": "Associated Cardiovascular and Thoracic Surgeons", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ABFFCA", + "OrganizationName": "Advocate - Dr. GJ Winters Foot Ankle Center LTD", "NPIID": "", - "OrganizationZipCode": "77702" + "OrganizationZipCode": "60030" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIDJBD", - "OrganizationName": "Susan Biegel MD INC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBJFBA", + "OrganizationName": "East Liverpool Professionals, LLC", "NPIID": "", - "OrganizationZipCode": "91786" + "OrganizationZipCode": "43920" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ACIDAA", - "OrganizationName": "Mahoney Dermatology Specialists, PA.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJDCBA", + "OrganizationName": "Fabian E. Espinosa, MD, PA", "NPIID": "", - "OrganizationZipCode": "33773" + "OrganizationZipCode": "77901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDAJCD", - "OrganizationName": "McMillion Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HAFECA", + "OrganizationName": "Daryl M. McClendon, M.D.", "NPIID": "", - "OrganizationZipCode": "35801" + "OrganizationZipCode": "99508" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEJCBA", - "OrganizationName": "Valley Medical Center PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FCBDCA", + "OrganizationName": "Orthopedic Associates, S.C", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "60005" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDJBBA", - "OrganizationName": "Ajaipal S Gill, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAGEAA", + "OrganizationName": "Houston Cardiac Association", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77025" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DGAIAA", - "OrganizationName": "Misty Snyder", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJHCAD", + "OrganizationName": "Scenic Bluffs Community Health Centers", "NPIID": "", - "OrganizationZipCode": "25301" + "OrganizationZipCode": "54619" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CCIFBD", - "OrganizationName": "Temecula Center for Integrative Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDGDAD", + "OrganizationName": "Dean Richard Lindstrom, III MD", "NPIID": "", - "OrganizationZipCode": "92591" + "OrganizationZipCode": "32901" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FGCFCD", - "OrganizationName": "Premier Heart and Vascular, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIECAA", + "OrganizationName": "Trokhan, Eileen", "NPIID": "", - "OrganizationZipCode": "85037" + "OrganizationZipCode": "07624" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDFHBA", - "OrganizationName": "HCA - Greater Houston Digestive Disease Consultants", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DJDBCA", + "OrganizationName": "Advocate - Alexander Kmicikewycz, M.D.", "NPIID": "", - "OrganizationZipCode": "77380" + "OrganizationZipCode": "60463" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIEEAD", - "OrganizationName": "Hanowell Spine Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GACCAA", + "OrganizationName": "Integrative Pain Medicine", "NPIID": "", - "OrganizationZipCode": "30014" + "OrganizationZipCode": "60195" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JJJGBA", - "OrganizationName": "Ogden Clinic", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HACIAA", + "OrganizationName": "Central PA Cardiology", "NPIID": "", - "OrganizationZipCode": "84405" + "OrganizationZipCode": "16602" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIIICD", - "OrganizationName": "UniVida Medical Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HIBDBA", + "OrganizationName": "Adventist - Rosie Singh, MD", "NPIID": "", - "OrganizationZipCode": "33144" + "OrganizationZipCode": "20904" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEAGBD", - "OrganizationName": "Cape Cardiology MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIEFBD", + "OrganizationName": "Loudoun Cardiology PLC", "NPIID": "", - "OrganizationZipCode": "02601" + "OrganizationZipCode": "20166" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBHACD", - "OrganizationName": "Medical Associates of Terre Haute, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEIFCD", + "OrganizationName": "ProVas of Salt Lake, LLC", "NPIID": "", - "OrganizationZipCode": "47802" + "OrganizationZipCode": "84094" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEGDAA", - "OrganizationName": "Institute for Respiratory and Sleep Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CFHFBA", + "OrganizationName": "Advocate - FemaCare Obstetrics and Gynecology SC", "NPIID": "", - "OrganizationZipCode": "19007" + "OrganizationZipCode": "60077" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFFBAA", - "OrganizationName": "Advanced Physical Medicine", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIHCCA", + "OrganizationName": "HCA - South Texas Pulmonary and Critical Care Associates", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78404" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CDACDA", - "OrganizationName": "veriMED Health Group Lakeland", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBCJAD", + "OrganizationName": "Reliance Medical Management, LLC", "NPIID": "", - "OrganizationZipCode": "33805" + "OrganizationZipCode": "93020" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JIDBCD", - "OrganizationName": "MIchigan Medical Advantage Inc", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGEGAD", + "OrganizationName": "Dr. Laxmi Deepika Koya", "NPIID": "", - "OrganizationZipCode": "48104" + "OrganizationZipCode": "75067" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HEJICD", - "OrganizationName": "Above Beyond Wellness Medspa", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FBDJAD", + "OrganizationName": "MA Medical Care PLLC", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "77494" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGIACA", - "OrganizationName": "ID Care Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGCCDA", + "OrganizationName": "Anitha Kolli, MD", "NPIID": "", - "OrganizationZipCode": "08844" + "OrganizationZipCode": "34609" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JAIGAD", - "OrganizationName": "Robson F. Araujo, DPM", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FFBHAD", + "OrganizationName": "Destiny Internal Medicine", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "80016" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHCBCD", - "OrganizationName": "Community Health Alliance", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HHDDCD", + "OrganizationName": "Adnan Afzal, MD, PA DBA Healing Hearts", "NPIID": "", - "OrganizationZipCode": "89502" + "OrganizationZipCode": "77304" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DIIFBA", - "OrganizationName": "Providence Hospital", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HGIBBD", + "OrganizationName": "Maged Ayad MD", "NPIID": "", - "OrganizationZipCode": "20017" + "OrganizationZipCode": "91505" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBCFAA", - "OrganizationName": "Pinnacle Orthopaedics", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IHEHCA", + "OrganizationName": "Texan Vein Vascular", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "78613" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JDBABD", - "OrganizationName": "Allergy and Rheumatology Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJIDAA", + "OrganizationName": "Main Street Medical Center of Crestview", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "32536" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FECHBA", - "OrganizationName": "HCA - All-Star Orthopedics Sports", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADBBA", + "OrganizationName": "NYCDOHMH - Tze On Poon, MD, PC", "NPIID": "", - "OrganizationZipCode": "75063" + "OrganizationZipCode": "10013" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GGIACA", - "OrganizationName": "Hemet Heart Medical Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDCGBD", + "OrganizationName": "Texas Pain Physicians", "NPIID": "", - "OrganizationZipCode": "92543" + "OrganizationZipCode": "75240" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AGICBD", - "OrganizationName": "Amir Kaykha, MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDGBBD", + "OrganizationName": "Wayne Urology", "NPIID": "", - "OrganizationZipCode": "95124" + "OrganizationZipCode": "31545" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BECIAA", - "OrganizationName": "Los Altos Dermatology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JFIFAA", + "OrganizationName": "Lima Memorial Professional Corp", "NPIID": "", - "OrganizationZipCode": "94024" + "OrganizationZipCode": "45801-4300" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JGDBBD", - "OrganizationName": "Tri-City Foot Ankle Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDCIBD", + "OrganizationName": "Frostwood Family Medicine, PLLC", "NPIID": "", - "OrganizationZipCode": "99352" + "OrganizationZipCode": "77024" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EICDCA", - "OrganizationName": "Ameli Heart Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HDFBDD", + "OrganizationName": "John Gordon D.O., LLC", "NPIID": "", - "OrganizationZipCode": "89117" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIHEBD", - "OrganizationName": "Ali Achira, MD, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHJICD", + "OrganizationName": "Lakeview Cardiology of Texas PLLC", "NPIID": "", - "OrganizationZipCode": "48126" + "OrganizationZipCode": "75142" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIFJBD", - "OrganizationName": "Pain Management Specialists P.A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IFBDBA", + "OrganizationName": "HCA - Vickie Harrell, MD", "NPIID": "", - "OrganizationZipCode": "29169" + "OrganizationZipCode": "32401" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FHECCD", - "OrganizationName": "Orthopedic Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CIEDAD", + "OrganizationName": "Premier Healthcare Services LLC", "NPIID": "", - "OrganizationZipCode": "76201" + "OrganizationZipCode": "" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HCBHAD", - "OrganizationName": "Medford Leas CCRC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJCDBA", + "OrganizationName": "Advocate - Palos Internist SC", "NPIID": "", - "OrganizationZipCode": "08055" + "OrganizationZipCode": "60453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EGIGBD", - "OrganizationName": "Highland Internal Medicine, PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEBBBA", + "OrganizationName": "Houston Neurology Associates, PA", "NPIID": "", - "OrganizationZipCode": "30525" + "OrganizationZipCode": "77074" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHCGBD", - "OrganizationName": "Connelley Family Medical, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHJBBD", + "OrganizationName": "Metro North Cardiovascular", "NPIID": "", - "OrganizationZipCode": "71657" + "OrganizationZipCode": "78217" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GIEDBD", - "OrganizationName": "NNamdi Dike MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AAIAAA", + "OrganizationName": "Canadian Family Physicians", "NPIID": "", - "OrganizationZipCode": "75033" + "OrganizationZipCode": "79014" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGICBD", - "OrganizationName": "Gastroenterology Center, PA", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AHCDAD", + "OrganizationName": "Diabetes and Endocrinology Center", "NPIID": "", - "OrganizationZipCode": "76028" + "OrganizationZipCode": "30009" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFIFCA", - "OrganizationName": "San Luis Podiatry Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JBJGAA", + "OrganizationName": "Southwest Surgery (Alexander Zilberman, M.D.)", "NPIID": "", - "OrganizationZipCode": "93401" + "OrganizationZipCode": "86403" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BGECBD", - "OrganizationName": "Naima Cheema, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AIGCCA", + "OrganizationName": "DO Sleep Solutions", "NPIID": "", - "OrganizationZipCode": "30076" + "OrganizationZipCode": "33756" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DHEEAA", - "OrganizationName": "Roger H Karlin MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HJIBDD", + "OrganizationName": "Instant Urgent Care", "NPIID": "", - "OrganizationZipCode": "06812" + "OrganizationZipCode": "95111" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BHFGCA", - "OrganizationName": "Central Florida Breast Center", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFGCDA", + "OrganizationName": "Ballard Family Medicine", "NPIID": "", - "OrganizationZipCode": "32792" + "OrganizationZipCode": "35594" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BADEAD", - "OrganizationName": "Kaveh Parvaresh MD PC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GDFBCA", + "OrganizationName": "Tak-Leominster Medical Associates", "NPIID": "", - "OrganizationZipCode": "22204" + "OrganizationZipCode": "01453" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDHCCD", - "OrganizationName": "Trahan Medical Corporation", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EJIIAA", + "OrganizationName": "Theodore L. LePage, MD, FACC", "NPIID": "", - "OrganizationZipCode": "70570" + "OrganizationZipCode": "14626" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEFBBD", - "OrganizationName": "Advance Medical Specialty, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BCJABA", + "OrganizationName": "Advocate - Phillip Markowitz", "NPIID": "", - "OrganizationZipCode": "32159" + "OrganizationZipCode": "60068" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CICDAA", - "OrganizationName": "Edward Leahey, M.D. PA.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEDCCA", + "OrganizationName": "Jerald Garcia, MD", "NPIID": "", - "OrganizationZipCode": "77521" + "OrganizationZipCode": "96826" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DEGGCD", - "OrganizationName": "Collier Neurologic Specialists, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IJDCBA", + "OrganizationName": "Advocate - Fox Glen Gastro", "NPIID": "", - "OrganizationZipCode": "34105" + "OrganizationZipCode": "60010" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDABBD", - "OrganizationName": "North Texas Surgical Specialists, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FDCEAD", + "OrganizationName": "J. Barton Williams MD PA", "NPIID": "", - "OrganizationZipCode": "76104" + "OrganizationZipCode": "39705" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EFCBCD", - "OrganizationName": "Valley ENT", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FAAGCA", + "OrganizationName": "M. Douglas Gossman, MD PLLC", "NPIID": "", - "OrganizationZipCode": "85224" + "OrganizationZipCode": "40299" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EIGCBD", - "OrganizationName": "United Vein Centers", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BABFBA", + "OrganizationName": "Advocate - Gastroenterology Services LTD", "NPIID": "", - "OrganizationZipCode": "33624" + "OrganizationZipCode": "60515" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CBCEBA", - "OrganizationName": "Sasha Cavanagh MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHEAAA", + "OrganizationName": "Clark Dermatology, LLC", "NPIID": "", - "OrganizationZipCode": "98502" + "OrganizationZipCode": "07066" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BEHIBD", - "OrganizationName": "Fort Norfolk Plaza Cardiology", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GJJHAA", + "OrganizationName": "Walk-In Clinic", "NPIID": "", - "OrganizationZipCode": "23510" + "OrganizationZipCode": "49684" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CHBGBA", - "OrganizationName": "Red River ENT Associates", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DFDDBA", + "OrganizationName": "NYCDOHMH - Brett Wu, MD", "NPIID": "", - "OrganizationZipCode": "71303" + "OrganizationZipCode": "11354" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJAAAA", - "OrganizationName": "Prime Medic P A", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/HBBECA", + "OrganizationName": "Munson Behavioral Health", "NPIID": "", - "OrganizationZipCode": "77327" + "OrganizationZipCode": "49684" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GAAECD", - "OrganizationName": "GEORGE H. GARCIA, M.D., INC.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FIDAAA", + "OrganizationName": "Associates of Internal Medicine, PA", "NPIID": "", - "OrganizationZipCode": "" + "OrganizationZipCode": "33446" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EDIGBA", - "OrganizationName": "Stephen Kaiser, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IACHBA", + "OrganizationName": "West Shore Health Centers Corporation", "NPIID": "", - "OrganizationZipCode": "11230" + "OrganizationZipCode": "49660" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/JHDDCD", - "OrganizationName": "Baker Family Practice", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GCEIBA", + "OrganizationName": "Mid South Medicine", "NPIID": "", - "OrganizationZipCode": "91723" + "OrganizationZipCode": "38671" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/ICFCBA", - "OrganizationName": "Prabhakara Kunamnani, M.D.", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FJJGCD", + "OrganizationName": "Aesclepion Healthcare LLC", "NPIID": "", - "OrganizationZipCode": "32778" + "OrganizationZipCode": "01606" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GFHICD", - "OrganizationName": "DREAM PHYSICIANS, LLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CJAEAA", + "OrganizationName": "ATL Colorectal Surgery, PC", "NPIID": "", - "OrganizationZipCode": "08820" + "OrganizationZipCode": "30309" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/DDCBCA", - "OrganizationName": "Gastro Cure", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/IDBABD", + "OrganizationName": "Heart Vein and Vascular", "NPIID": "", - "OrganizationZipCode": "07052" + "OrganizationZipCode": "32779" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/GEICAA", - "OrganizationName": "Hamilton Medical Group", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/AJJJAA", + "OrganizationName": "Dermatology Specialists", "NPIID": "", - "OrganizationZipCode": "70506" + "OrganizationZipCode": "27403" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/BJACBD", - "OrganizationName": "Advanced Kidney Specialists", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CICEBA", + "OrganizationName": "Pulmonary Specialists of the Palm Beaches", "NPIID": "", - "OrganizationZipCode": "38305" + "OrganizationZipCode": "33470" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/CEHGAD", - "OrganizationName": "Philip J Weintraub MD", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EHFEBA", + "OrganizationName": "HCA - General Surgical Associates", "NPIID": "", - "OrganizationZipCode": "10021" + "OrganizationZipCode": "78229" }, { - "URL": "https://fhir4.eclinicalworks.com/fhir/r4/EBHCCD", - "OrganizationName": "Kingwood Gastroenterology, PLLC", + "URL": "https://fhir4.eclinicalworks.com/fhir/r4/FEDDBA", + "OrganizationName": "Newman Physicians Group", "NPIID": "", - "OrganizationZipCode": "77365" + "OrganizationZipCode": "73858" } ] } \ No newline at end of file diff --git a/resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json b/resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json new file mode 100644 index 000000000..d33980300 --- /dev/null +++ b/resources/prod_resources/i3_Healthcare_Solutions_LLC_EndpointSources.json @@ -0,0 +1,58 @@ +{ + "Endpoints": [ + { + "URL": "https://fhir.healthtogo.me/oauth/imed.assa", + "OrganizationName": "Advanced Southern Surgical ASSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.bourque", + "OrganizationName": "Daniel R. Bourque, M.D., APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.efm", + "OrganizationName": "Edwards Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.fammedpc", + "OrganizationName": "Family Medicine, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.lhc", + "OrganizationName": "Louisiana Heart Center ** LHC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.noim", + "OrganizationName": "North Oaks Internal Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.degeyter", + "OrganizationName": "Roland J. Degeyter, M.D., APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.welshfamily", + "OrganizationName": "The Clinic of Welsh", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fhir.healthtogo.me/oauth/imed.vsc", + "OrganizationName": "Vascular Specialty C VSC", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/scripts/populatedb.sh b/scripts/populatedb.sh index 1d47c79e4..0ecabe9de 100755 --- a/scripts/populatedb.sh +++ b/scripts/populatedb.sh @@ -36,17 +36,17 @@ go run main.go cd .. # get NPPES contact (endpoint) pfile into db -cd nppescontactpopulator -go run main.go /etc/lantern/resources/endpoint_pfile.csv -cd .. +#cd nppescontactpopulator +#go run main.go /etc/lantern/resources/endpoint_pfile.csv +#cd .. # get NPPES org pfile data into db -cd nppesorgpopulator -go run main.go /etc/lantern/resources/npidata_pfile.csv -cd ../endpointlinker -go run main.go -cd .. +#cd nppesorgpopulator +#go run main.go /etc/lantern/resources/npidata_pfile.csv +#cd ../endpointlinker +#go run main.go +#cd .. # run data validation to ensure number of endpoints does not exceed maximum for query interval cd datavalidation diff --git a/scripts/populatedb_prod.sh b/scripts/populatedb_prod.sh index 9b5287128..ead884754 100644 --- a/scripts/populatedb_prod.sh +++ b/scripts/populatedb_prod.sh @@ -22,20 +22,20 @@ rm -f *fileheader.csv rm -f temp.zip rm -f npidata_pfile2.csv -echo "Downloading ${MONTH} NPPES Resources..." -curl -s -f -o temp.zip ${NPPESFILE} || echo "${MONTH} NPPES Resources not available, downloading ${PASTMONTH} NPPES Resources..." && curl -s -o temp.zip ${PASTNPPESFILE} -echo "Extracting endpoint and npidata files from NPPES zip file..." -unzip -q temp.zip endpoint_pfile\*.csv -unzip -q temp.zip npidata_pfile\*.csv -rm -f *fileheader.csv -mv -f endpoint_pfile*.csv endpoint_pfile.csv -mv -f npidata_pfile*.csv npidata_pfile.csv -rm -f temp.zip - -echo "Removing all entries from npidata_pfile that are not Entity Type 2 (Organization)..." -sed -E '/^[^,]*,[^,]*(\"1\"|\"\")/d' npidata_pfile.csv > npidata_pfile2.csv -rm -f npidata_pfile.csv -mv -f npidata_pfile2.csv npidata_pfile.csv +#echo "Downloading ${MONTH} NPPES Resources..." +#curl -s -f -o temp.zip ${NPPESFILE} || echo "${MONTH} NPPES Resources not available, downloading ${PASTMONTH} NPPES Resources..." && curl -s -o temp.zip ${PASTNPPESFILE} +#echo "Extracting endpoint and npidata files from NPPES zip file..." +#unzip -q temp.zip endpoint_pfile\*.csv +#unzip -q temp.zip npidata_pfile\*.csv +#rm -f *fileheader.csv +#mv -f endpoint_pfile*.csv endpoint_pfile.csv +#mv -f npidata_pfile*.csv npidata_pfile.csv +#rm -f temp.zip + +#echo "Removing all entries from npidata_pfile that are not Entity Type 2 (Organization)..." +#sed -E '/^[^,]*,[^,]*(\"1\"|\"\")/d' npidata_pfile.csv > npidata_pfile2.csv +#rm -f npidata_pfile.csv +#mv -f npidata_pfile2.csv npidata_pfile.csv echo "Populating db with endpoint and NPPES information..." cd ../../scripts From 6cf30cbc4d8b046604c1b733af3dc85acf16d8c0 Mon Sep 17 00:00:00 2001 From: Prasad Konka Date: Thu, 25 Jan 2024 21:30:03 -0500 Subject: [PATCH 2/2] Adding endpoints and parsers --- .../capabilityhandler/supportedProfiles.go | 5 +- .../allegiancemdwebscraper.go | 4 +- .../bridgepatientportalwebscraper.go | 6 +- .../broadstreetwebscraper.go | 44 + .../chplendpointquerier.go | 19 +- .../modernizingmedicineparser.go | 29 +- .../officepracticumwebscraper.go | 38 + .../willowquerierparser.go | 54 + endpointmanager/pkg/helpers/helpers.go | 2 + .../AdvancedMD_EndpointSources.json | 9 +- ...roadStreet_Health_LLC_EndpointSources.json | 10 + resources/dev_resources/CHPLProductsInfo.json | 73700 ++++++++-------- .../Modernizing_Medicine_EndpointSources.json | 70 +- .../Office_Practicum_EndpointSources.json | 64 + ...of_the_ContinuumCloud_EndpointSources.json | 20 +- ...hnologies_Corporation_EndpointSources.json | 16 + .../AdvancedMD_EndpointSources.json | 9 +- ...roadStreet_Health_LLC_EndpointSources.json | 10 + .../prod_resources/CHPLProductsInfo.json | 73700 ++++++++-------- ...c_Systems_Corporation_EndpointSources.json | 2 +- .../Healthie_EndpointSources.json | 3 + .../MEDHOST_EndpointSources.json | 2 +- .../Modernizing_Medicine_EndpointSources.json | 1770 +- .../Office_Practicum_EndpointSources.json | 1720 + .../Practice_Fusion_EndpointSources.json | 8208 +- ...of_the_ContinuumCloud_EndpointSources.json | 310 +- ...hnologies_Corporation_EndpointSources.json | 16 + .../athenahealth_Inc_EndpointSources.json | 84 +- 28 files changed, 81738 insertions(+), 78186 deletions(-) create mode 100644 endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go create mode 100644 endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go create mode 100644 endpointmanager/pkg/chplendpointquerier/willowquerierparser.go create mode 100644 resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json create mode 100644 resources/dev_resources/Office_Practicum_EndpointSources.json create mode 100644 resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json create mode 100644 resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json create mode 100644 resources/prod_resources/Healthie_EndpointSources.json create mode 100644 resources/prod_resources/Office_Practicum_EndpointSources.json create mode 100644 resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json diff --git a/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go b/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go index fcaf5fb81..21e86babe 100644 --- a/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go +++ b/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go @@ -1,6 +1,7 @@ package capabilityhandler import ( + "fmt" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/endpointmanager" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" ) @@ -75,7 +76,7 @@ func getCapabilityStatementProfiles(capInt map[string]interface{}, supportedProf supportedProfileArr, ok := resourceInt["supportedProfile"].([]interface{}) if !ok { // Handle the case where "supportedProfile" is not a []interface{} - //fmt.Println("Error: 'supportedProfile' is not a []interface{}") + fmt.Println("Error: 'supportedProfile' is not a []interface{}") // Add appropriate error handling or return from the function } @@ -89,7 +90,7 @@ func getCapabilityStatementProfiles(capInt map[string]interface{}, supportedProf supportedProfiles = append(supportedProfiles, profileInfo) } else { // Handle the case where profileEntry is not a string - //fmt.Println("Error: 'supportedProfile' entry is not a string") + fmt.Println("Error: 'supportedProfile' entry is not a string") // Add appropriate error handling or return from the function } } diff --git a/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go b/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go index ec725cc7a..f0421dbcc 100644 --- a/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go @@ -1,11 +1,10 @@ package chplendpointquerier import ( - "strings" - "github.com/PuerkitoBio/goquery" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" log "github.com/sirupsen/logrus" + "strings" ) func AllegianceMDWebscraper(chplURL string, fileToWriteTo string) { @@ -18,7 +17,6 @@ func AllegianceMDWebscraper(chplURL string, fileToWriteTo string) { if err != nil { log.Fatal(err) } - doc.Each(func(index int, pElem *goquery.Selection) { aElem := pElem.Find("a").First() hrefText, exists := aElem.Attr("href") diff --git a/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go b/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go index 90a4172a5..dc5466667 100644 --- a/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go @@ -1,11 +1,11 @@ package chplendpointquerier import ( - "strings" - + "fmt" "github.com/PuerkitoBio/goquery" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" log "github.com/sirupsen/logrus" + "strings" ) func BridgePatientPortalWebscraper(chplURL string, fileToWriteTo string) { @@ -17,7 +17,7 @@ func BridgePatientPortalWebscraper(chplURL string, fileToWriteTo string) { if err != nil { log.Fatal(err) } - + fmt.Println(doc.Html()) fhirEndpointsHeaderElem := doc.Find("#introduction/fhir-bridge-patient-portal/fhir-endpoints") if fhirEndpointsHeaderElem.Length() > 0 { spanElem := fhirEndpointsHeaderElem.Eq(0).Next() diff --git a/endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go b/endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go new file mode 100644 index 000000000..9539121d5 --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go @@ -0,0 +1,44 @@ +package chplendpointquerier + +import ( + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" + "strings" +) + +func BroadStreetURLWebscraper(CHPLURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, "article") + if err != nil { + log.Fatal(err) + } + doc.Find("article").Each(func(index int, articleElems *goquery.Selection) { + articleElems.Find("table").Each(func(index int, tableElems *goquery.Selection) { + tableElems.Find("tbody").Each(func(index int, bodyElems *goquery.Selection) { + bodyElems.Find("tr").Each(func(index int, trElems *goquery.Selection) { + tdEntry := trElems.Find("td").First() + if strings.Contains(tdEntry.Text(), "FHIR Production") { + tdEntryNext := trElems.Find("td").Next() + if tdEntryNext.Length() > 0 { + var entry LanternEntry + entry.URL = strings.TrimSpace(tdEntryNext.Text()) + lanternEntryList = append(lanternEntryList, entry) + } + } + }) + }) + }) + }) + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go index 303413b3a..7b18e94fc 100644 --- a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go +++ b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go @@ -63,7 +63,6 @@ var varianmedicalURL = "https://variandev.dynamicfhir.com/" var caretrackerURL = "https://hag-fhir.amazingcharts.com/ac/endpoints" var zhhealthcareURL = "https://blueehr.com/fhir-urls/" var emedpracticeURL = "https://emedpractice.com/Fhir/FhirHelpDocument.html" -var modernizingmedicineURL = "https://mm-fhir-endpoint-display.qa.fhir.ema-api.com/" var doc_torURL = "https://hag-fhir.amazingcharts.com/pc/endpoints" var azaleahealthURL = "https://api.azaleahealth.com/fhir/R4/Endpoint" var cloudcraftURL = "https://fhirapitest.naiacorp.net/fhir/r4/endpoints/" @@ -71,7 +70,6 @@ var darenasolutionsURL = "https://api.meldrx.com/Directories/fhir/endpoints" var glenwoodsystemsURL = "https://static.glaceemr.com/endpoints/urls.json" var practicefusionURL = "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json" var universalEHRURL = "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json" -var welligentURL = "https://mu3test.welligent.com/fhir/r4/endpoints/" var astronautURL = "https://astronautehr.com/index.php/fhir-base-urls/" var bestpracticesacademyURL = "https://ipatientcare.com/onc-acb-certified-2015-edition" var californiamedicalsystemsURL = "https://cal-med.com/fhir/Fhir-base-urls.csv" @@ -137,6 +135,11 @@ var CarepathsURL = "https://carepaths.com/uploads/org_endpoint_bundle.json" var athenaClinicalsURL = "https://docs.athenahealth.com/api/guides/base-fhir-urls" var canvasMedicalURL = "https://docs.canvasmedical.com/api/service-base-urls/" var veradigmURL = "https://open.platform.veradigm.com/fhirendpoints" +var broadStreetURL = "https://broadstreetcare.com/docs" +var officePracticumURL = "https://fhir-documentation.patientmedrecords.com/endpoints" +var modernizingMedicineURL = "https://mm-fhir-endpoint-display.prod.fhir.ema-api.com/" +var welligentURL = "https://fhir.qa.welligent.com/" +var willowURL = "https://www.willowgladetechnologies.com/requirements" func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { @@ -148,6 +151,8 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { Canvaswebscraper(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, AlteraURL) { AlteraQuerier(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, modernizingMedicineURL) { + ModernizingMedicineQuerier(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, EpicURL) { EpicQuerier(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, MeditechURL) { @@ -236,8 +241,6 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { MedicalInformaticsEngineeringWebscraper(chplURL, fileToWriteTo) } else if chplURL == emedpracticeURL { eMedPracticeWebscraper("https://servicebackup.emedpractice.com:8443/helpdoc/fhir_helpdoc.html", fileToWriteTo) - } else if chplURL == modernizingmedicineURL { - ModernizingMedicineQuerier("qa.fhir.ema-api.com/fhir/r4/Endpoint?connection-type=hl7-fhir-rest", fileToWriteTo) } else if chplURL == doc_torURL { BundleQuerierParser(chplURL+"/r4", fileToWriteTo) } else if URLsEqual(chplURL, azaleahealthURL) { @@ -253,7 +256,7 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { } else if URLsEqual(chplURL, universalEHRURL) { BundleQuerierParser(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, welligentURL) { - BundleQuerierParser(chplURL, fileToWriteTo) + BundleQuerierParser("https://fhir.qa.welligent.com/fhir/r4/endpoints", fileToWriteTo) } else if URLsEqual(chplURL, astronautURL) { CSVParser("https://astronautehr.com/wp-content/uploads/2022/12/Astronaut-fhir-base-urls.csv", fileToWriteTo, "./astronaut_fhir_base_urls.csv", 1, 2, true, 1, -1) } else if URLsEqual(chplURL, bestpracticesacademyURL) { @@ -382,6 +385,12 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { CSVParser(MEDENTURL, fileToWriteTo, "./ServiceBaseURL.csv", 1, 0, true, 1, 0) } else if URLsEqual(chplURL, canvasMedicalURL) { CanvasMedicalURLWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, broadStreetURL) { + BroadStreetURLWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, officePracticumURL) { + OfficePracticumURLWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, willowURL) { + WillowQuerierParser("https://ccdoc.phn.care/service-base-urls", fileToWriteTo) } else if URLsEqual(chplURL, veradigmURL) { BundleQuerierParser("https://open.platform.veradigm.com/fhirendpoints/download/R4", fileToWriteTo) } diff --git a/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go b/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go index 2e7ed4c9e..a3b333a6d 100644 --- a/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go +++ b/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go @@ -6,29 +6,46 @@ import ( ) func ModernizingMedicineQuerier(chplURL string, fileToWriteTo string) { - - emaURL := "https://fhir.m2qa." + chplURL - gastroURL := "https://fhir.gastro." + chplURL + emaURL := "https://fhir.mmi.prod.fhir.ema-api.com/fhir/r4/Endpoint?connection-type=hl7-fhir-rest" + gastroURL := "https://fhir.gastro.prod.fhir.ema-api.com/fhir/r4/Endpoint?connection-type=hl7-fhir-rest" + exscribeURL := "https://ehrapi-exscribe-prod-fhir.ema-api.com/api/Endpoint" + //traknetURL := "https://ehrapi-traknet-prod-fhir.ema-api.com/api/Endpoint" + //sammyURL := "https://ehrapi-sammyehr-prod-fhir.ema-api.com/api/Endpoint" var endpointEntryList EndpointList - respBody, err := helpers.QueryEndpointList(emaURL) if err != nil { log.Fatal(err) } - endpointEntryList.Endpoints = BundleToLanternFormat(respBody) respBody, err = helpers.QueryEndpointList(gastroURL) if err != nil { log.Fatal(err) } + endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + respBody, err = helpers.QueryEndpointList(exscribeURL) + if err != nil { + log.Fatal(err) + } endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + //respBody, err = helpers.QueryEndpointList(traknetURL) + //if err != nil { + // log.Fatal(err) + //} + //endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + + // respBody, err = helpers.QueryEndpointList(sammyURL) + // if err != nil { + // log.Fatal(err) + // } + + // endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) if err != nil { log.Fatal(err) } - } diff --git a/endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go b/endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go new file mode 100644 index 000000000..b126f083d --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go @@ -0,0 +1,38 @@ +package chplendpointquerier + +import ( + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" + "strings" +) + +func OfficePracticumURLWebscraper(CHPLURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, ".MuiTableCell-root.MuiTableCell-body.MuiTableCell-sizeMedium.css-q34dxg") + if err != nil { + log.Fatal(err) + } + + doc.Find("tbody.MuiTableBody-root.css-1xnox0e").Each(func(i int, bodyEle *goquery.Selection) { + bodyEle.Find("tr").Each(func(index int, trEle *goquery.Selection) { + organizationName := trEle.Find("td").First().Text() + URL := trEle.Find("td").Next().Text() + var entry LanternEntry + entry.OrganizationName = strings.TrimSpace(organizationName) + entry.URL = strings.TrimSpace(URL) + lanternEntryList = append(lanternEntryList, entry) + }) + }) + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/willowquerierparser.go b/endpointmanager/pkg/chplendpointquerier/willowquerierparser.go new file mode 100644 index 000000000..6483d5362 --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/willowquerierparser.go @@ -0,0 +1,54 @@ +package chplendpointquerier + +import ( + "encoding/json" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" +) + +type Entry struct { + ID string `json:"id"` + Name string `json:"name"` + LogoURL string `json:"logoUrl,omitempty"` + URL string `json:"url"` +} + +type Bundle struct { + ResourceType string `json:"resourceType"` + Type string `json:"type"` + Total int `json:"total"` + Entry []Entry `json:"entry"` + ID string `json:"id"` +} + +func WillowQuerierParser(willowURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + respBody, err := helpers.QueryEndpointList(willowURL) + if err != nil { + log.Fatal(err) + } + var willowArr Bundle + err = json.Unmarshal(respBody, &willowArr) + if err != nil { + log.Fatal(err) + } + + for _, willowEntry := range willowArr.Entry { + var entry LanternEntry + + entry.URL = willowEntry.URL + entry.OrganizationName = willowEntry.Name + + lanternEntryList = append(lanternEntryList, entry) + } + + endpointEntryList.Endpoints = lanternEntryList + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/helpers/helpers.go b/endpointmanager/pkg/helpers/helpers.go index d8ffe7f1a..c20a5e022 100644 --- a/endpointmanager/pkg/helpers/helpers.go +++ b/endpointmanager/pkg/helpers/helpers.go @@ -131,6 +131,8 @@ func ChromedpQueryEndpointList(endpointListURL string, waitVisibleElement string func QueryEndpointList(endpointListURL string) ([]byte, error) { client := &http.Client{} req, err := http.NewRequest("GET", endpointListURL, nil) + req.Header.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36") + if err != nil { return nil, err } diff --git a/resources/dev_resources/AdvancedMD_EndpointSources.json b/resources/dev_resources/AdvancedMD_EndpointSources.json index 15c250df3..0e3bc63c8 100644 --- a/resources/dev_resources/AdvancedMD_EndpointSources.json +++ b/resources/dev_resources/AdvancedMD_EndpointSources.json @@ -1,10 +1,3 @@ { - "Endpoints": [ - { - "URL": "https://providerapi.advancedmd.com/v1/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - } - ] + "Endpoints": null } \ No newline at end of file diff --git a/resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json b/resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json new file mode 100644 index 000000000..eb5cafe8e --- /dev/null +++ b/resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://broadstreet.arsanahealth.com/api/fhir/", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/CHPLProductsInfo.json b/resources/dev_resources/CHPLProductsInfo.json index 7a122c57a..01cb3ef35 100644 --- a/resources/dev_resources/CHPLProductsInfo.json +++ b/resources/dev_resources/CHPLProductsInfo.json @@ -32,9 +32,19 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -42,89 +52,74 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -132,24 +127,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -157,19 +157,19 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.onemedical.io/fhir/overview/" + "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" }, { "criterion": { @@ -181,11 +181,11 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" + "value": "https://apidocs.onemedical.io/fhir/overview/" } ], "acb": "SLI Compliance" @@ -220,59 +220,59 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -280,44 +280,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -325,49 +320,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -375,19 +370,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -453,44 +453,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -498,59 +503,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -558,14 +558,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -573,24 +568,34 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -598,9 +603,9 @@ "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -608,9 +613,9 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, @@ -618,14 +623,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 59, @@ -633,35 +643,17 @@ "title": "Direct Project" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://app.smartemr.com/api/api_client.php" - }, { "criterion": { "id": 181, @@ -677,6 +669,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.smartemr.com/api/api_client.php" } ], "acb": "Drummond Group" @@ -716,59 +716,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -776,14 +771,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -796,24 +786,24 @@ "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -821,24 +811,34 @@ "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -846,55 +846,47 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -910,6 +902,14 @@ "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -944,9 +944,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -954,54 +954,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 178, @@ -1009,49 +999,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -1059,59 +1054,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -1177,39 +1177,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, @@ -1217,29 +1207,29 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -1247,34 +1237,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -1282,19 +1247,14 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 25, @@ -1302,19 +1262,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -1322,9 +1282,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 178, @@ -1337,27 +1302,70 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" + }, { "criterion": { "id": 56, @@ -1373,14 +1381,6 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirapi.asp.md:3000" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" } ], "acb": "SLI Compliance" @@ -1420,19 +1420,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -1440,59 +1435,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 4, @@ -1500,24 +1485,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -1525,90 +1510,97 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" - }, { "criterion": { "id": 181, @@ -1624,6 +1616,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1663,14 +1663,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 33, @@ -1678,84 +1683,84 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 175, @@ -1763,90 +1768,85 @@ "title": "Auditing Actions on Health Information" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://axeium.net/api/swagger/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://axeium.net/api/swagger/" }, @@ -1896,44 +1896,39 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 178, @@ -1946,44 +1941,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 167, @@ -1991,19 +1986,14 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -2011,105 +2001,115 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" }, @@ -2154,34 +2154,44 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -2189,14 +2199,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -2204,9 +2224,9 @@ "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -2214,24 +2234,14 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -2239,24 +2249,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -2264,94 +2264,94 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -2365,17 +2365,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" } @@ -2417,69 +2417,79 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -2487,109 +2497,99 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -2597,29 +2597,29 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -2685,34 +2685,19 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -2725,9 +2710,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, @@ -2735,17 +2725,35 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://smartbox.aidbox.app/documentation" + }, { "criterion": { "id": 181, @@ -2761,14 +2769,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://smartbox.aidbox.app/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://smartbox.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -2808,9 +2808,14 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 175, @@ -2823,14 +2828,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -2843,9 +2843,9 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -2894,16 +2894,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 2, "number": "170.315 (a)(2)", @@ -2915,79 +2905,79 @@ "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -2995,39 +2985,44 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 178, @@ -3035,9 +3030,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 15, @@ -3045,34 +3050,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -3080,17 +3080,17 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" }, @@ -3104,9 +3104,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3147,20 +3147,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -3173,44 +3193,49 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -3218,39 +3243,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -3258,39 +3278,19 @@ "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -3298,45 +3298,37 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" - }, { "criterion": { "id": 182, @@ -3352,6 +3344,14 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3385,20 +3385,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, @@ -3406,44 +3426,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -3451,14 +3466,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -3466,9 +3476,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -3476,9 +3496,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -3486,9 +3506,14 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 35, @@ -3496,24 +3521,24 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -3521,57 +3546,40 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 182, @@ -3587,14 +3595,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/ac-api-documentation/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3629,34 +3629,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -3664,39 +3639,39 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -3704,19 +3679,19 @@ "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -3724,19 +3699,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -3744,64 +3724,64 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -3812,6 +3792,26 @@ "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -3877,29 +3877,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -3907,14 +3917,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -3922,29 +3927,19 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -3952,14 +3947,19 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, @@ -3967,74 +3967,74 @@ "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -4100,9 +4100,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -4110,94 +4110,99 @@ "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -4205,39 +4210,24 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -4250,24 +4240,34 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -4281,17 +4281,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.pai.healthcare/documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" } @@ -4333,19 +4333,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 36, @@ -4353,29 +4343,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -4383,89 +4373,89 @@ "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -4473,34 +4463,44 @@ "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -4514,17 +4514,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" } @@ -4566,24 +4566,24 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -4591,29 +4591,39 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 174, @@ -4621,79 +4631,79 @@ "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 43, @@ -4701,59 +4711,59 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -4761,35 +4771,25 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dev.azaleahealth.com/" }, @@ -4839,44 +4839,44 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 171, @@ -4884,49 +4884,34 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -4939,49 +4924,54 @@ "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -4989,9 +4979,14 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 35, @@ -4999,79 +4994,84 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -5085,17 +5085,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" } @@ -5137,30 +5137,65 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -5171,45 +5206,30 @@ "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 14, @@ -5217,24 +5237,24 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -5242,9 +5262,9 @@ "title": "Electronic Health Information Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -5252,14 +5272,29 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 26, @@ -5267,34 +5302,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -5302,19 +5347,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 166, @@ -5322,19 +5372,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -5342,67 +5392,25 @@ "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, { "criterion": { "id": 56, @@ -5418,14 +5426,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" } ], "acb": "SLI Compliance" @@ -5465,34 +5465,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -5500,29 +5500,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -5530,29 +5525,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, @@ -5560,134 +5560,139 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 13, @@ -5695,9 +5700,14 @@ "title": "Patient-Specific Education Resources" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 8, @@ -5705,32 +5715,30 @@ "title": "Medication Allergy List" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -5746,14 +5754,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -5787,50 +5787,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -5838,64 +5853,64 @@ "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -5903,54 +5918,34 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -5958,52 +5953,65 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -6019,14 +6027,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -6061,74 +6061,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -6136,24 +6121,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -6161,49 +6151,49 @@ "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -6211,24 +6201,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -6236,52 +6236,52 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" }, @@ -6295,9 +6295,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" } @@ -6339,14 +6339,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 42, @@ -6354,24 +6349,29 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -6379,29 +6379,24 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -6409,39 +6404,39 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -6449,9 +6444,19 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -6459,24 +6464,29 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -6484,24 +6494,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -6567,19 +6567,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -6587,9 +6577,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, @@ -6602,9 +6597,9 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -6612,9 +6607,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 50, @@ -6622,30 +6622,30 @@ "title": "Automated Numerator Recording" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.sb.meldrx.com/swagger/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://app.sb.meldrx.com/swagger/index.html" } @@ -6686,6 +6686,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -6697,84 +6707,94 @@ "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 44, @@ -6782,24 +6802,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -6807,34 +6827,24 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 178, @@ -6842,35 +6852,17 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" - }, { "criterion": { "id": 182, @@ -6879,6 +6871,14 @@ }, "value": "https://blueehr.com/certifications-and-costs/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + }, { "criterion": { "id": 56, @@ -6925,24 +6925,24 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -6950,24 +6950,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -6980,34 +6980,34 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -7016,14 +7016,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" - }, { "criterion": { "id": 181, @@ -7039,6 +7031,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://bridgepatientportal.docs.apiary.io/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" } ], "acb": "SLI Compliance" @@ -7078,19 +7078,9 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -7098,14 +7088,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -7113,39 +7103,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -7153,19 +7123,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 51, @@ -7173,69 +7148,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -7243,32 +7228,47 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://broadstreetcare.com/docs" }, @@ -7282,9 +7282,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://broadstreetcare.com/docs" } @@ -7326,64 +7326,64 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -7391,34 +7391,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -7426,34 +7426,19 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -7461,69 +7446,64 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -7531,24 +7511,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -7556,9 +7546,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -7570,14 +7570,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 181, @@ -7585,6 +7577,14 @@ "title": "Application Access - All Data Request" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7619,39 +7619,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 171, @@ -7659,19 +7659,29 @@ "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -7679,29 +7689,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -7709,149 +7714,144 @@ "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -7863,14 +7863,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 56, @@ -7878,6 +7870,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7917,94 +7917,74 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -8012,24 +7992,19 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -8037,44 +8012,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -8082,39 +8057,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -8122,12 +8102,40 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, { "criterion": { "id": 56, @@ -8143,14 +8151,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.aprima.com/api_doc/api/v1/help.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" } ], "acb": "Drummond Group" @@ -8185,34 +8185,29 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -8220,9 +8215,14 @@ "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -8230,29 +8230,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -8260,19 +8255,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -8280,9 +8270,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, @@ -8290,19 +8280,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -8310,24 +8305,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -8335,34 +8320,49 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -8376,17 +8376,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://apitest.emds.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.emds.com/documentation" } @@ -8428,9 +8428,9 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 180, @@ -8438,34 +8438,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -8473,19 +8473,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -8493,17 +8493,25 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, { "criterion": { "id": 181, @@ -8519,14 +8527,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" } ], "acb": "Drummond Group" @@ -8566,54 +8566,54 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -8621,9 +8621,14 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -8631,99 +8636,99 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -8731,19 +8736,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 1, @@ -8751,9 +8751,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -8767,17 +8767,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.canvasmedical.com/api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.canvasmedical.com/api/" } @@ -8819,24 +8819,24 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -8844,34 +8844,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 4, @@ -8884,24 +8894,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -8909,49 +8909,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -8959,19 +8944,14 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -8979,14 +8959,9 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -8994,9 +8969,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -9004,40 +8999,37 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.acurussolutions.com/Certification.html" - }, { "criterion": { "id": 182, @@ -9046,6 +9038,14 @@ }, "value": "https://www.acurussolutions.com/Certification.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.acurussolutions.com/Certification.html" + }, { "criterion": { "id": 181, @@ -9092,69 +9092,94 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -9162,19 +9187,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 173, @@ -9182,109 +9202,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -9298,17 +9298,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" } @@ -9345,39 +9345,49 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -9385,49 +9395,49 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -9435,24 +9445,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -9460,19 +9475,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -9480,44 +9485,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -9525,22 +9530,17 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, @@ -9554,9 +9554,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" } @@ -9593,74 +9593,64 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -9668,49 +9658,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, @@ -9718,9 +9698,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -9728,125 +9713,140 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" }, @@ -9896,14 +9896,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -9911,29 +9906,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -9941,44 +9931,49 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -9986,34 +9981,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -10021,14 +10006,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -10036,29 +10021,39 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -10066,37 +10061,42 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://qualifacts.com/api-documentation/" }, @@ -10110,9 +10110,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://qualifacts.com/api-documentation/" } @@ -10153,20 +10153,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, @@ -10174,14 +10169,39 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -10189,130 +10209,110 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://carepaths.com/api_documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://carepaths.com/api_documentation/" }, @@ -10362,29 +10362,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 176, @@ -10392,19 +10372,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -10416,10 +10396,30 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -10433,17 +10433,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.carefluence.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.carefluence.com" } @@ -10485,54 +10485,59 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 42, @@ -10540,24 +10545,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 26, @@ -10565,29 +10575,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -10595,14 +10605,19 @@ "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -10610,69 +10625,44 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -10680,29 +10670,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -10710,25 +10700,35 @@ "title": "Transmission to Immunization Registries" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, @@ -10778,19 +10778,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 172, @@ -10798,14 +10788,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -10813,84 +10803,84 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 15, @@ -10898,64 +10888,59 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -10963,19 +10948,34 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -10983,25 +10983,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, @@ -11051,104 +11051,69 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -11156,9 +11121,9 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -11166,59 +11131,94 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -11237,17 +11237,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.charteasy.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.charteasy.com/" } @@ -11288,30 +11288,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -11319,134 +11314,134 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -11454,34 +11449,29 @@ "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 171, @@ -11489,9 +11479,14 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -11502,17 +11497,14 @@ "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" - }, { "criterion": { "id": 56, @@ -11528,6 +11520,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" } ], "acb": "Drummond Group" @@ -11567,44 +11567,54 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 8, "number": "170.315 (a)(8)", "title": "Medication Allergy List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 182, @@ -11612,34 +11622,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -11647,24 +11632,29 @@ "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -11672,19 +11662,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 181, @@ -11692,29 +11692,49 @@ "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 19, "number": "170.315 (b)(4)", "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -11722,19 +11742,14 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -11742,9 +11757,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -11755,24 +11770,17 @@ "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" - }, + } + ], + "apiDocumentation": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://beta.afoundria.com/api" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ { "criterion": { "id": 182, @@ -11788,14 +11796,6 @@ "title": "Application Access - All Data Request" }, "value": "https://beta.afoundria.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://beta.afoundria.com/api" } ], "acb": "Drummond Group" @@ -11835,29 +11835,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 28, @@ -11865,44 +11865,34 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, @@ -11910,34 +11900,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -11945,49 +11930,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, @@ -11995,19 +11985,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -12015,19 +12010,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -12041,17 +12041,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" } @@ -12093,84 +12093,99 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -12178,64 +12193,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 179, @@ -12243,24 +12263,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -12268,32 +12283,25 @@ "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sabiamed.com/api-documentation" + }, { "criterion": { "id": 182, @@ -12309,14 +12317,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.sabiamed.com:8081/MPIServices/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sabiamed.com/api-documentation" } ], "acb": "Drummond Group" @@ -12356,44 +12356,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -12401,14 +12391,9 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 172, @@ -12416,9 +12401,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -12426,39 +12421,49 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -12466,14 +12471,9 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -12481,39 +12481,39 @@ "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -12521,9 +12521,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -12531,14 +12536,19 @@ "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -12546,24 +12556,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -12571,9 +12571,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -12582,14 +12582,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" - }, { "criterion": { "id": 181, @@ -12605,6 +12597,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" } ], "acb": "SLI Compliance" @@ -12644,109 +12644,104 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 33, @@ -12754,39 +12749,39 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 44, @@ -12794,19 +12789,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 10, @@ -12814,14 +12814,9 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -12829,9 +12824,14 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -12839,44 +12839,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -12942,64 +12942,49 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -13007,19 +12992,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -13027,49 +13012,29 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -13077,29 +13042,29 @@ "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 174, @@ -13107,9 +13072,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -13117,19 +13087,19 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -13137,9 +13107,39 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -13204,25 +13204,40 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, @@ -13230,14 +13245,9 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -13245,14 +13255,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -13260,29 +13265,19 @@ "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -13290,9 +13285,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -13300,9 +13295,9 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -13310,25 +13305,30 @@ "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" } @@ -13370,30 +13370,50 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", @@ -13405,49 +13425,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -13455,14 +13460,14 @@ "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 51, @@ -13470,54 +13475,54 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, @@ -13525,14 +13530,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -13540,29 +13545,24 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" }, { "criterion": { @@ -13574,11 +13574,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" } ], "acb": "Drummond Group" @@ -13618,24 +13618,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -13643,14 +13628,9 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -13658,19 +13638,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 13, @@ -13678,29 +13663,34 @@ "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -13708,19 +13698,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -13728,9 +13718,9 @@ "title": "Application Access - All Data Request" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -13738,19 +13728,19 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -13758,19 +13748,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -13836,64 +13836,69 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -13901,54 +13906,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -13956,39 +13946,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -14000,14 +14000,6 @@ }, "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -14015,6 +14007,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" } ], "acb": "UL LLC" @@ -14053,6 +14053,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", @@ -14063,40 +14073,15 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -14104,24 +14089,39 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -14135,17 +14135,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.developers.cozeva.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.developers.cozeva.com/" } @@ -14187,29 +14187,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -14217,74 +14212,54 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 176, @@ -14292,24 +14267,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -14317,59 +14292,59 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -14377,19 +14352,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, @@ -14397,9 +14377,29 @@ "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -14465,19 +14465,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -14485,24 +14490,19 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -14510,69 +14510,64 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, @@ -14580,24 +14575,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, @@ -14605,67 +14605,75 @@ "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://criterions.com/documentation/" + }, { "criterion": { "id": 182, @@ -14681,14 +14689,6 @@ "title": "Application Access - All Data Request" }, "value": "https://criterions.com/fhir-api-documentation/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://criterions.com/documentation/" } ], "acb": "Drummond Group" @@ -14733,19 +14733,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -14753,34 +14743,34 @@ "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -14788,84 +14778,89 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -14873,29 +14868,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -14903,25 +14903,17 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" - }, { "criterion": { "id": 182, @@ -14937,6 +14929,14 @@ "title": "Application Access - All Data Request" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" } ], "acb": "Drummond Group" @@ -14976,49 +14976,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -15026,29 +15026,34 @@ "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 46, @@ -15056,49 +15061,44 @@ "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -15106,14 +15106,9 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 49, @@ -15121,82 +15116,87 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" }, @@ -15210,9 +15210,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" } @@ -15254,9 +15254,9 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 11, @@ -15264,34 +15264,39 @@ "title": "Smoking Status" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 182, @@ -15299,24 +15304,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -15324,49 +15339,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -15374,29 +15379,24 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 37, @@ -15409,99 +15409,99 @@ "title": "Emergency Access" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -15567,44 +15567,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -15612,34 +15587,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -15647,19 +15622,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -15667,9 +15642,34 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -15677,24 +15677,29 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -15702,54 +15707,49 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -15763,17 +15763,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,34 +15815,44 @@ }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -15850,104 +15860,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -15955,49 +15950,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 46, @@ -16005,39 +15995,34 @@ "title": "Transmission to Cancer Registries" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -16045,14 +16030,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -16064,14 +16064,6 @@ }, "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, { "criterion": { "id": 56, @@ -16079,6 +16071,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" } ], "acb": "Drummond Group" @@ -16117,60 +16117,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -16183,34 +16143,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 172, @@ -16218,34 +16198,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, @@ -16253,24 +16228,19 @@ "title": "Care Plan" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -16278,22 +16248,52 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" }, @@ -16307,9 +16307,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" } @@ -16351,24 +16351,24 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -16376,24 +16376,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -16401,69 +16406,49 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 28, @@ -16471,9 +16456,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 170, @@ -16481,34 +16466,54 @@ "title": "Care Plan" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -16516,19 +16521,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 51, @@ -16536,57 +16536,65 @@ "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, { "criterion": { "id": 56, @@ -16602,14 +16610,6 @@ "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -16644,74 +16644,44 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 33, @@ -16719,39 +16689,54 @@ "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -16759,24 +16744,24 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -16784,29 +16769,29 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -16814,72 +16799,87 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16893,9 +16893,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -16932,24 +16932,19 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -16957,44 +16952,59 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -17002,9 +17012,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -17012,24 +17022,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -17037,9 +17062,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 46, @@ -17047,135 +17077,97 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, { "criterion": { "id": 56, @@ -17191,6 +17183,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -17229,25 +17229,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 43, @@ -17255,29 +17245,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 34, @@ -17285,29 +17290,34 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -17315,14 +17325,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -17330,89 +17350,64 @@ "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -17420,24 +17415,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -17503,89 +17503,84 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, @@ -17593,24 +17588,29 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -17618,19 +17618,19 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -17638,24 +17638,29 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 173, @@ -17663,35 +17668,30 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://drsdoc.com/FHIRapi" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://drsdoc.com/FHIRapi" }, @@ -17741,49 +17741,54 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -17791,39 +17796,24 @@ "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -17831,24 +17821,29 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, @@ -17856,92 +17851,97 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, @@ -17955,9 +17955,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" } @@ -17999,104 +17999,79 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18104,29 +18079,34 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 39, @@ -18134,34 +18114,29 @@ "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 174, @@ -18169,17 +18144,42 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.ehnote.com/" }, @@ -18193,9 +18193,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.ehnote.com/" } @@ -18237,9 +18237,9 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 174, @@ -18247,29 +18247,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -18277,59 +18262,44 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -18337,19 +18307,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 178, @@ -18357,70 +18327,92 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -18436,6 +18428,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -18470,54 +18470,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -18525,24 +18505,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18550,115 +18530,135 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18708,79 +18708,79 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -18788,64 +18788,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -18853,85 +18863,67 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ehryourway.com/api" - }, { "criterion": { "id": 56, @@ -18947,6 +18939,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ehryourway.com/api" } ], "acb": "SLI Compliance" @@ -18986,34 +18986,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -19021,9 +18996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -19031,24 +19006,24 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -19056,39 +19031,49 @@ "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -19096,19 +19081,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -19116,39 +19096,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -19156,30 +19131,55 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19224,14 +19224,9 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -19239,49 +19234,64 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -19289,34 +19299,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -19324,94 +19334,84 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -19425,17 +19425,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" } @@ -19472,39 +19472,44 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -19517,99 +19522,109 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -19617,50 +19632,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.modmed.com/public-api-v2/" - }, { "criterion": { "id": 182, @@ -19676,6 +19668,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -19710,44 +19710,39 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -19755,69 +19750,74 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -19825,14 +19825,9 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, @@ -19840,29 +19835,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -19870,55 +19865,60 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19968,14 +19968,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 15, @@ -19983,19 +19983,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -20003,9 +19998,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -20013,34 +20008,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 32, @@ -20048,44 +20038,44 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -20093,30 +20083,40 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, @@ -20166,29 +20166,29 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, @@ -20196,94 +20196,84 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -20291,54 +20281,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -20346,35 +20341,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.elationhealth.com/reference/introduction" - }, { "criterion": { "id": 56, @@ -20390,6 +20382,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.elationhealth.com/reference/introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.elationhealth.com/reference/introduction" } ], "acb": "Drummond Group" @@ -20429,144 +20429,154 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -20574,19 +20584,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -20594,29 +20594,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -20630,17 +20630,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://apitest.enablemyhealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.enablemyhealth.com/" } @@ -20682,19 +20682,24 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -20702,14 +20707,14 @@ "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -20717,14 +20722,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 174, @@ -20732,44 +20747,39 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 172, @@ -20782,49 +20792,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -20832,24 +20837,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -20857,9 +20857,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -20867,24 +20872,14 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, @@ -20892,60 +20887,57 @@ "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.endosoft.com/fhir" - }, { "criterion": { "id": 181, @@ -20954,6 +20946,14 @@ }, "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.endosoft.com/fhir" + }, { "criterion": { "id": 56, @@ -21000,59 +21000,59 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -21060,29 +21060,14 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -21090,9 +21075,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -21100,94 +21085,109 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -21201,17 +21201,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21248,39 +21248,34 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -21293,49 +21288,39 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -21343,54 +21328,59 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -21398,14 +21388,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -21413,29 +21408,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -21449,17 +21449,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21496,19 +21496,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -21521,24 +21521,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 167, @@ -21546,59 +21551,39 @@ "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -21606,39 +21591,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -21646,34 +21631,49 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -21681,9 +21681,9 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -21744,19 +21744,19 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -21764,24 +21764,9 @@ "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -21789,49 +21774,54 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -21839,29 +21829,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -21869,49 +21854,49 @@ "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 12, @@ -21919,35 +21904,50 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -21992,34 +21992,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22027,34 +22032,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, @@ -22062,104 +22062,104 @@ "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -22167,29 +22167,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -22203,17 +22203,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -22250,9 +22250,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 176, @@ -22260,24 +22275,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 14, @@ -22285,14 +22295,29 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -22300,14 +22325,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, @@ -22315,19 +22340,14 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22335,14 +22355,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, @@ -22350,9 +22375,9 @@ "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -22365,39 +22390,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 5, @@ -22405,24 +22400,24 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -22430,30 +22425,35 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22498,24 +22498,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -22523,19 +22508,9 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -22548,84 +22523,84 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -22633,19 +22608,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -22653,19 +22628,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -22673,35 +22653,55 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22746,14 +22746,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -22761,19 +22766,9 @@ "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -22781,19 +22776,24 @@ "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -22801,19 +22801,29 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 3, @@ -22821,64 +22831,69 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -22886,24 +22901,24 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 2, @@ -22911,45 +22926,30 @@ "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22993,55 +22993,75 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -23049,39 +23069,44 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 42, @@ -23089,64 +23114,64 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -23157,47 +23182,22 @@ "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23242,19 +23242,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 36, @@ -23262,74 +23267,69 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -23337,19 +23337,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -23357,14 +23357,14 @@ "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -23372,54 +23372,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -23427,12 +23422,25 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 56, @@ -23448,14 +23456,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -23490,14 +23490,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -23505,39 +23500,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23550,29 +23545,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -23580,79 +23570,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 42, @@ -23660,32 +23650,42 @@ "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23699,9 +23699,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -23738,9 +23738,14 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -23748,64 +23753,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -23813,24 +23813,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 1, @@ -23838,74 +23843,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -23913,19 +23923,9 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -23986,24 +23986,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -24011,19 +23996,24 @@ "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, @@ -24031,29 +24021,29 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -24061,14 +24051,14 @@ "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, @@ -24076,79 +24066,74 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -24156,19 +24141,34 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -24179,17 +24179,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -24233,15 +24233,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, @@ -24254,9 +24294,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -24264,44 +24304,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -24309,9 +24339,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -24319,14 +24354,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -24334,39 +24369,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -24374,64 +24404,34 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -24445,17 +24445,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -24497,54 +24497,59 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -24552,29 +24557,29 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -24582,24 +24587,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -24607,34 +24617,9 @@ "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -24642,24 +24627,39 @@ "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24725,49 +24725,29 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 181, @@ -24775,49 +24755,54 @@ "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -24825,24 +24810,29 @@ "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -24850,14 +24840,29 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -24870,29 +24875,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24958,19 +24958,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, @@ -24978,19 +24978,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, @@ -24998,9 +24993,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -25049,105 +25049,100 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -25160,69 +25155,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, @@ -25230,29 +25230,29 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -25266,17 +25266,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" } @@ -25313,29 +25313,14 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -25343,39 +25328,34 @@ "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -25387,45 +25367,45 @@ "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -25433,34 +25413,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 14, @@ -25468,9 +25458,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -25478,9 +25473,14 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -25488,19 +25488,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -25508,25 +25513,12 @@ "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" - }, { "criterion": { "id": 181, @@ -25542,6 +25534,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" } ], "acb": "SLI Compliance" @@ -25581,24 +25581,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -25606,29 +25601,29 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -25641,115 +25636,120 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -25794,139 +25794,129 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -25934,9 +25924,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -25944,50 +25934,60 @@ "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -26052,49 +26052,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -26102,19 +26082,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -26127,69 +26102,89 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -26197,45 +26192,42 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -26251,6 +26243,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26285,49 +26285,79 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 179, @@ -26335,29 +26365,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -26365,34 +26390,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -26400,79 +26410,69 @@ "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" } ], "apiDocumentation": [ @@ -26538,9 +26538,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 182, @@ -26548,24 +26553,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -26573,69 +26593,74 @@ "title": "End-User Device Encryption" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -26643,34 +26668,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -26678,34 +26693,29 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -26713,32 +26723,30 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 182, @@ -26754,14 +26762,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" @@ -26795,60 +26795,50 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -26856,129 +26846,139 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -26990,14 +26990,6 @@ }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, { "criterion": { "id": 182, @@ -27005,6 +26997,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -27039,59 +27039,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 37, @@ -27099,29 +27084,29 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -27129,39 +27114,39 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -27169,75 +27154,90 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, @@ -27287,34 +27287,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 4, @@ -27322,9 +27312,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -27332,39 +27322,54 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, @@ -27372,9 +27377,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 44, @@ -27382,44 +27392,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -27427,37 +27427,45 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.geesemed.com/api.html" + }, { "criterion": { "id": 182, @@ -27473,14 +27481,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.geesemed.com/api.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.geesemed.com/api.html" } ], "acb": "Drummond Group" @@ -27520,79 +27520,79 @@ }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -27600,59 +27600,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -27660,64 +27655,59 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 28, @@ -27725,39 +27715,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://geniusdoc.com/API.php" }, { "criterion": { @@ -27769,11 +27769,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://geniusdoc.com/API.php" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" } ], "acb": "SLI Compliance" @@ -27813,24 +27813,24 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 165, @@ -27838,29 +27838,39 @@ "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -27868,34 +27878,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -27903,44 +27913,34 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -27948,70 +27948,62 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28027,6 +28019,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28061,9 +28061,9 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -28071,74 +28071,79 @@ "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, @@ -28146,39 +28151,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -28186,34 +28191,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -28221,19 +28211,24 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 44, @@ -28241,14 +28236,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -28309,9 +28309,44 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -28319,14 +28354,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 33, @@ -28334,24 +28364,19 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -28359,24 +28384,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -28384,9 +28409,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -28394,9 +28424,14 @@ "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 9, @@ -28409,39 +28444,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -28449,24 +28459,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -28474,37 +28484,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, @@ -28518,9 +28518,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } @@ -28557,69 +28557,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -28627,24 +28652,14 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -28652,89 +28667,74 @@ "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -28742,9 +28742,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -28756,14 +28756,6 @@ }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28771,6 +28763,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28809,60 +28809,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 168, @@ -28870,14 +28855,24 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -28885,14 +28880,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -28900,39 +28910,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 26, @@ -28940,14 +28945,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -28960,64 +28960,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -29025,32 +29020,45 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.glaceemr.com/documentation" + }, { "criterion": { "id": 56, @@ -29066,14 +29074,6 @@ "title": "Application Access - All Data Request" }, "value": "https://api.glaceemr.com/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.glaceemr.com/documentation" } ], "acb": "Drummond Group" @@ -29113,9 +29113,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -29123,34 +29133,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -29158,9 +29163,19 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -29168,29 +29183,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -29198,29 +29213,34 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 39, @@ -29228,34 +29248,14 @@ "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -29263,34 +29263,34 @@ "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -29350,6 +29350,16 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -29361,14 +29371,19 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -29376,19 +29391,24 @@ "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -29396,54 +29416,54 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -29456,24 +29476,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -29486,54 +29511,29 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -29594,14 +29594,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -29609,9 +29629,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -29619,64 +29644,79 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -29684,19 +29724,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 33, @@ -29704,24 +29734,19 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 3, @@ -29729,64 +29754,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { @@ -29798,11 +29798,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29837,74 +29837,79 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -29912,29 +29917,19 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -29942,79 +29937,84 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -30028,17 +30028,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developers.greenwayhealth.com/developer-platform" } @@ -30080,64 +30080,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -30145,44 +30130,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 46, @@ -30190,74 +30160,84 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 15, @@ -30265,44 +30245,49 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -30310,9 +30295,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 169, @@ -30320,22 +30305,37 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, @@ -30349,9 +30349,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } @@ -30388,34 +30388,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 59, @@ -30423,49 +30433,59 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 180, @@ -30473,14 +30493,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 169, @@ -30488,54 +30513,34 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -30543,84 +30548,79 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -30628,14 +30628,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -30701,24 +30701,34 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -30726,14 +30736,14 @@ "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -30741,44 +30751,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -30786,24 +30781,9 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 178, @@ -30811,44 +30791,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -30856,19 +30836,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 44, @@ -30876,19 +30871,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -30896,20 +30896,12 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" - }, { "criterion": { "id": 182, @@ -30925,6 +30917,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/caretracker-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -30964,29 +30964,29 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -30994,39 +30994,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, @@ -31034,24 +31024,29 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -31059,14 +31054,14 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -31074,72 +31069,85 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://cmpl.aidbox.app/documentation" + }, { "criterion": { "id": 182, @@ -31155,14 +31163,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://cmpl.aidbox.app/documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -31202,75 +31202,95 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 9, "number": "170.315 (a)(9)", @@ -31282,49 +31302,34 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 175, @@ -31332,29 +31337,29 @@ "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 166, @@ -31362,55 +31367,42 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.interopengine.com/2021/open-api-documentation.html" - }, { "criterion": { "id": 181, @@ -31419,6 +31411,14 @@ }, "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.interopengine.com/2021/open-api-documentation.html" + }, { "criterion": { "id": 56, @@ -31465,14 +31465,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -31480,24 +31480,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -31505,29 +31495,9 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -31535,14 +31505,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -31550,24 +31525,34 @@ "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 10, @@ -31575,19 +31560,39 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 5, @@ -31595,34 +31600,44 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -31630,9 +31645,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -31640,24 +31655,14 @@ "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -31665,57 +31670,60 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -31731,14 +31739,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } ], "acb": "SLI Compliance" @@ -31778,24 +31778,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 179, @@ -31803,44 +31803,39 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 29, @@ -31848,9 +31843,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -31858,34 +31858,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 166, @@ -31893,54 +31883,59 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -31948,24 +31943,34 @@ "title": "Electronic Prescribing" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 54, @@ -31973,34 +31978,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32066,24 +32066,29 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 15, @@ -32091,19 +32096,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -32111,49 +32106,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -32161,119 +32141,139 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32338,60 +32338,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 166, @@ -32399,9 +32394,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -32409,39 +32404,54 @@ "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -32449,29 +32459,24 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 177, @@ -32479,14 +32484,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -32494,14 +32494,14 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -32512,9 +32512,9 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, @@ -32528,9 +32528,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } @@ -32572,39 +32572,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 171, @@ -32612,14 +32602,14 @@ "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -32627,44 +32617,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -32672,14 +32652,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -32687,9 +32667,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 181, @@ -32697,30 +32682,37 @@ "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://onc.chntechsolutions.com/home/" - }, { "criterion": { "id": 181, @@ -32736,6 +32728,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://onc.chntechsolutions.com/home/" } ], "acb": "SLI Compliance" @@ -32775,59 +32775,29 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -32835,47 +32805,77 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -32889,9 +32889,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" } @@ -32927,15 +32927,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -32943,14 +32953,9 @@ "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -32958,9 +32963,19 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -32968,9 +32983,9 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -32982,30 +32997,15 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -33013,22 +33013,22 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -33042,9 +33042,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" } @@ -33086,39 +33086,34 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -33126,24 +33121,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -33151,14 +33151,14 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -33166,34 +33166,39 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -33201,54 +33206,49 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -33262,17 +33262,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } @@ -33314,24 +33314,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 5, @@ -33339,39 +33339,14 @@ "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -33379,24 +33354,29 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -33404,49 +33384,49 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 54, @@ -33454,54 +33434,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -33509,19 +33489,39 @@ "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 169, @@ -33530,6 +33530,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.meditab.com/api/" + }, { "criterion": { "id": 182, @@ -33545,14 +33553,6 @@ "title": "Application Access - All Data Request" }, "value": "https://meditab.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.meditab.com/api/" } ], "acb": "Drummond Group" @@ -33592,9 +33592,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -33602,9 +33602,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -33612,20 +33612,20 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -33679,24 +33679,9 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -33704,14 +33689,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -33719,39 +33709,54 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -33759,19 +33764,14 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -33779,40 +33779,40 @@ "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, @@ -33857,9 +33857,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 168, @@ -33867,24 +33872,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -33892,14 +33887,9 @@ "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -33907,34 +33897,34 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 180, @@ -33942,19 +33932,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -33962,47 +33952,65 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 181, @@ -34018,14 +34026,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -34065,29 +34065,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 32, @@ -34100,59 +34105,49 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 12, @@ -34160,19 +34155,24 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -34180,19 +34180,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -34200,24 +34200,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 172, @@ -34225,9 +34220,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -34277,24 +34277,29 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -34302,34 +34307,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -34342,9 +34337,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -34352,19 +34352,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -34372,20 +34362,30 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -34397,49 +34397,49 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -34489,14 +34489,9 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -34504,9 +34499,9 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -34514,45 +34509,50 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" } @@ -34594,59 +34594,49 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -34659,64 +34649,54 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -34724,34 +34704,34 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -34759,19 +34739,39 @@ "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -34832,49 +34832,49 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, @@ -34882,44 +34882,49 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -34927,19 +34932,9 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -34947,59 +34942,64 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -35075,49 +35075,49 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 14, @@ -35125,54 +35125,54 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 177, @@ -35180,14 +35180,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 34, @@ -35195,35 +35190,32 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" - }, { "criterion": { "id": 181, @@ -35239,6 +35231,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" } ], "acb": "SLI Compliance" @@ -35278,55 +35278,40 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -35338,14 +35323,24 @@ "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 53, @@ -35353,14 +35348,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 14, @@ -35368,34 +35358,19 @@ "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -35403,54 +35378,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -35458,29 +35433,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -35488,22 +35468,50 @@ "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.mdrhythm.com/onc-compliance.html" + }, { "criterion": { "id": 56, @@ -35519,14 +35527,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.mdrhythm.com/onc-compliance.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://www.mdrhythm.com/onc-compliance.html" } ], "acb": "Drummond Group" @@ -35566,34 +35566,39 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -35601,44 +35606,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -35646,14 +35671,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, @@ -35661,14 +35681,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, @@ -35676,24 +35691,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -35701,39 +35701,44 @@ "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -35741,30 +35746,17 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" - }, { "criterion": { "id": 182, @@ -35780,6 +35772,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } ], "acb": "Drummond Group" @@ -35819,9 +35819,19 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -35829,19 +35839,14 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -35849,14 +35854,9 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -35864,34 +35864,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -35899,39 +35899,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -35939,19 +35934,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -35959,19 +35949,29 @@ "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -35979,9 +35979,9 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 1, @@ -35989,40 +35989,32 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" - }, { "criterion": { "id": 56, @@ -36031,6 +36023,14 @@ }, "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + }, { "criterion": { "id": 182, @@ -36077,39 +36077,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -36117,9 +36117,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 170, @@ -36131,20 +36131,15 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -36152,109 +36147,109 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -36262,47 +36257,52 @@ "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" }, @@ -36316,9 +36316,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" } @@ -36354,70 +36354,55 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 179, @@ -36425,44 +36410,44 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -36470,125 +36455,140 @@ "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.medent.com/onc/" }, @@ -36638,84 +36638,79 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -36723,97 +36718,102 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.yourcareinteract.com/documentation" }, @@ -36827,9 +36827,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" } @@ -36865,135 +36865,85 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -37001,14 +36951,19 @@ "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -37016,24 +36971,69 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -37099,24 +37099,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 56, @@ -37124,39 +37124,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 3, @@ -37164,79 +37169,79 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -37244,50 +37249,45 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37332,24 +37332,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -37357,74 +37342,54 @@ "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -37432,29 +37397,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -37462,14 +37432,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -37477,34 +37452,59 @@ "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -37570,19 +37570,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -37590,19 +37580,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -37610,44 +37590,29 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, @@ -37655,9 +37620,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -37665,14 +37635,9 @@ "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -37680,24 +37645,19 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -37705,24 +37665,19 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, @@ -37730,17 +37685,62 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37754,9 +37754,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -37793,30 +37793,35 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 54, "number": "170.315 (g)(5)", @@ -37827,60 +37832,55 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -37888,39 +37888,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -37928,60 +37928,60 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38026,19 +38026,29 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -38046,44 +38056,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 174, @@ -38091,34 +38101,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -38126,49 +38136,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -38176,45 +38171,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38258,20 +38258,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 34, @@ -38279,14 +38274,34 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38294,14 +38309,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -38309,19 +38329,19 @@ "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -38329,49 +38349,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -38379,14 +38384,14 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 48, @@ -38394,52 +38399,47 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38453,9 +38453,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38491,65 +38491,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -38557,24 +38527,29 @@ "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 180, @@ -38582,9 +38557,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -38592,34 +38582,34 @@ "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -38627,19 +38617,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -38647,19 +38642,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -38670,17 +38670,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38725,14 +38725,24 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -38740,34 +38750,44 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 26, @@ -38775,19 +38795,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -38795,29 +38815,14 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, @@ -38825,14 +38830,14 @@ "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38840,35 +38845,20 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 51, "number": "170.315 (g)(2)", @@ -38880,32 +38870,42 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38919,9 +38919,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38958,34 +38958,29 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -38993,34 +38988,44 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -39028,29 +39033,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -39058,14 +39063,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -39073,14 +39073,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 52, @@ -39088,19 +39093,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 28, @@ -39108,35 +39113,22 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 181, @@ -39152,6 +39144,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39186,89 +39186,99 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -39276,24 +39286,14 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -39301,24 +39301,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -39326,50 +39326,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39414,19 +39414,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -39434,59 +39424,64 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, @@ -39494,9 +39489,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -39504,9 +39499,9 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -39514,34 +39509,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -39549,14 +39539,14 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -39564,9 +39554,9 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -39574,30 +39564,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, @@ -39613,6 +39605,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39652,14 +39652,9 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 2, @@ -39667,29 +39662,14 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -39697,24 +39677,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -39722,14 +39702,14 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -39737,14 +39717,9 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -39752,49 +39727,69 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -39802,22 +39797,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39831,9 +39831,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39870,24 +39870,19 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -39895,34 +39890,29 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -39930,34 +39920,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -39965,14 +39950,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 9, @@ -39980,9 +39980,9 @@ "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 173, @@ -39990,62 +39990,70 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40061,14 +40069,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40103,94 +40103,104 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -40198,24 +40208,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -40223,49 +40228,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -40273,9 +40273,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -40289,17 +40289,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -40336,9 +40336,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, @@ -40346,14 +40346,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 52, @@ -40361,29 +40371,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -40391,49 +40401,54 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -40441,14 +40456,14 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 51, @@ -40456,34 +40471,19 @@ "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 39, @@ -40491,40 +40491,40 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -40569,44 +40569,49 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -40614,14 +40619,19 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -40629,19 +40639,19 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -40649,9 +40659,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -40659,69 +40674,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 177, @@ -40734,17 +40719,40 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40760,14 +40768,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40802,9 +40802,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -40812,24 +40827,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40837,134 +40847,124 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -40980,17 +40980,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -41035,44 +41035,44 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -41080,9 +41080,24 @@ "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, @@ -41090,44 +41105,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -41135,69 +41145,59 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -41211,17 +41211,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41263,24 +41263,34 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -41288,54 +41298,69 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -41343,34 +41368,34 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 52, @@ -41378,19 +41403,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -41398,65 +41423,32 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 56, @@ -41472,6 +41464,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -41511,29 +41511,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -41541,9 +41521,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -41551,9 +41536,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -41561,69 +41546,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -41631,9 +41621,14 @@ "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 12, @@ -41641,62 +41636,67 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, @@ -41710,9 +41710,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } @@ -41753,50 +41753,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -41804,69 +41789,69 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 21, @@ -41879,9 +41864,9 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -41889,29 +41874,44 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -41919,19 +41919,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -41939,9 +41934,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -41949,9 +41949,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -42012,9 +42012,9 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -42022,9 +42022,14 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -42032,144 +42037,144 @@ "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -42177,22 +42182,17 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.first-insight.com/certifications/" }, @@ -42206,9 +42206,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.first-insight.com/certifications/" } @@ -42250,49 +42250,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 3, @@ -42300,24 +42305,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -42325,34 +42330,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -42360,29 +42345,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -42390,34 +42375,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -42425,19 +42410,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 166, @@ -42445,14 +42420,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -42466,17 +42466,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documents.maximus.care" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documents.maximus.care" } @@ -42518,24 +42518,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 174, @@ -42543,29 +42538,39 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, @@ -42573,89 +42578,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -42663,34 +42668,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -42747,35 +42747,45 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -42783,34 +42793,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -42818,14 +42833,24 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 44, @@ -42833,34 +42858,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 172, @@ -42868,24 +42893,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -42893,59 +42913,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -42959,17 +42959,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } @@ -43011,44 +43011,39 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -43056,59 +43051,69 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -43116,9 +43121,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 166, @@ -43126,44 +43136,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -43171,14 +43181,14 @@ "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -43186,34 +43196,24 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -43279,14 +43279,44 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -43294,14 +43324,9 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 44, @@ -43309,14 +43334,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -43324,9 +43354,19 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -43334,14 +43374,14 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -43354,44 +43394,29 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -43399,9 +43424,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -43409,29 +43439,29 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -43439,34 +43469,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -43474,25 +43479,12 @@ "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" - }, { "criterion": { "id": 182, @@ -43508,6 +43500,14 @@ "title": "Application Access - All Data Request" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } ], "acb": "Drummond Group" @@ -43547,34 +43547,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 5, @@ -43582,24 +43557,19 @@ "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -43607,59 +43577,54 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -43667,9 +43632,9 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -43677,64 +43642,79 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 165, @@ -43742,19 +43722,39 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://medi-ehr.com/public-fhir-api" }, { "criterion": { @@ -43766,11 +43766,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://medi-ehr.com/public-fhir-api" + "value": "http://medi-ehr.com/compliance" } ], "acb": "SLI Compliance" @@ -43810,79 +43810,89 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -43895,49 +43905,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -43950,14 +43955,19 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -43965,19 +43975,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 42, @@ -43985,44 +43995,34 @@ "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -44034,14 +44034,6 @@ }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.medifusion.com/" - }, { "criterion": { "id": 181, @@ -44049,6 +44041,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.medifusion.com/" } ], "acb": "SLI Compliance" @@ -44088,29 +44088,19 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -44118,14 +44108,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -44133,29 +44123,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -44163,59 +44148,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -44233,24 +44193,24 @@ "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 171, @@ -44258,34 +44218,39 @@ "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 179, @@ -44297,10 +44262,45 @@ "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -44366,29 +44366,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -44396,9 +44386,14 @@ "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -44406,19 +44401,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -44426,29 +44411,14 @@ "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 25, @@ -44456,34 +44426,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -44491,24 +44451,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 170, @@ -44516,34 +44481,59 @@ "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -44551,19 +44541,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -44571,17 +44561,35 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + }, { "criterion": { "id": 181, @@ -44597,14 +44605,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], "acb": "SLI Compliance" @@ -44644,24 +44644,14 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -44674,9 +44664,9 @@ "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 34, @@ -44684,39 +44674,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -44724,14 +44709,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 26, @@ -44739,112 +44724,127 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" }, @@ -44858,9 +44858,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } @@ -44906,11 +44906,36 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 171, "number": "170.315 (b)(10)", @@ -44925,31 +44950,6 @@ "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -44999,54 +44999,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -45054,19 +45044,14 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -45074,49 +45059,34 @@ "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -45124,19 +45094,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 26, @@ -45144,19 +45114,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -45164,39 +45144,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -45210,17 +45210,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45257,14 +45257,19 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -45272,29 +45277,34 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -45302,24 +45312,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -45327,19 +45347,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, @@ -45347,24 +45367,29 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -45372,34 +45397,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 4, @@ -45407,62 +45422,47 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -45476,9 +45476,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45519,15 +45519,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -45535,24 +45555,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -45560,64 +45570,64 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -45625,24 +45635,9 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -45650,19 +45645,14 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 1, @@ -45670,19 +45660,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -45696,17 +45696,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://code.cerner.com/apiaccess" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://code.cerner.com/apiaccess" } @@ -45748,49 +45748,24 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -45798,55 +45773,72 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.mphrx.com/api-guide_mphrx/" - }, { "criterion": { "id": 56, @@ -45862,6 +45854,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mphrx.com/api-guide_mphrx/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.mphrx.com/api-guide_mphrx/" } ], "acb": "Drummond Group" @@ -45901,29 +45901,19 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -45931,14 +45921,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -45946,9 +45936,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 5, @@ -45956,24 +45966,19 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -45981,19 +45986,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -46001,19 +45996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -46021,84 +46006,99 @@ "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -46106,9 +46106,9 @@ "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -46122,17 +46122,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.modulemd.com" } @@ -46173,100 +46173,95 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -46274,32 +46269,37 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, @@ -46313,9 +46313,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } @@ -46352,34 +46352,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -46387,29 +46397,24 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -46417,24 +46422,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -46442,37 +46442,45 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + }, { "criterion": { "id": 56, @@ -46488,14 +46496,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], "acb": "SLI Compliance" @@ -46535,59 +46535,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -46600,9 +46580,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -46610,35 +46605,32 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" - }, { "criterion": { "id": 56, @@ -46654,6 +46646,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.navigatingcancer.com/requirements-incentives/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" @@ -46693,9 +46693,9 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -46703,24 +46703,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 14, @@ -46728,24 +46718,14 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 177, @@ -46753,9 +46733,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -46763,29 +46743,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -46793,39 +46753,39 @@ "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -46833,14 +46793,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 9, @@ -46848,14 +46828,39 @@ "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -46863,40 +46868,35 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, @@ -46941,14 +46941,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 29, @@ -46956,44 +46951,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, @@ -47001,14 +46981,19 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -47016,14 +47001,29 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 41, @@ -47031,19 +47031,19 @@ "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -47051,14 +47051,14 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 52, @@ -47066,34 +47066,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 54, @@ -47101,72 +47101,80 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + }, { "criterion": { "id": 182, @@ -47182,14 +47190,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis-integration.nhsinc.com/index.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -47229,94 +47229,99 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -47324,24 +47329,19 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 175, @@ -47349,119 +47349,119 @@ "title": "Auditing Actions on Health Information" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -47522,49 +47522,49 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -47572,79 +47572,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -47652,69 +47652,64 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 175, @@ -47722,47 +47717,52 @@ "title": "Auditing Actions on Health Information" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, @@ -47776,9 +47776,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" } @@ -47815,44 +47815,49 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -47860,64 +47865,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 167, @@ -47925,24 +47920,9 @@ "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -47950,39 +47930,39 @@ "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 35, @@ -47990,80 +47970,100 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48113,99 +48113,89 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -48213,34 +48203,34 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -48248,39 +48238,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -48288,37 +48278,47 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48332,9 +48332,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" } @@ -48376,44 +48376,34 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -48421,84 +48411,79 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -48506,24 +48491,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -48531,27 +48511,47 @@ "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48565,9 +48565,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48604,34 +48604,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -48639,94 +48644,69 @@ "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 26, @@ -48734,14 +48714,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -48754,47 +48749,52 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48808,9 +48808,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48851,130 +48851,125 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -48982,39 +48977,29 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -49022,9 +49007,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -49032,22 +49022,40 @@ "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + }, { "criterion": { "id": 182, @@ -49063,14 +49071,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], "acb": "Drummond Group" @@ -49110,29 +49110,44 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 59, @@ -49140,24 +49155,29 @@ "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -49165,54 +49185,54 @@ "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -49220,9 +49240,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 3, @@ -49230,85 +49250,57 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.novomedici.com/meaningful-use/" - }, { "criterion": { "id": 181, @@ -49324,6 +49316,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.novomedici.com/api-documents/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.novomedici.com/meaningful-use/" } ], "acb": "SLI Compliance" @@ -49363,19 +49363,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, @@ -49383,24 +49373,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -49408,74 +49388,89 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -49483,14 +49478,29 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -49503,14 +49513,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -49518,19 +49528,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 49, @@ -49538,19 +49538,19 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ @@ -49611,19 +49611,14 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -49631,14 +49626,14 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -49646,14 +49641,9 @@ "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -49661,24 +49651,39 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 172, @@ -49686,9 +49691,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 171, @@ -49696,125 +49711,110 @@ "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49863,15 +49863,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -49879,19 +49889,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -49899,64 +49914,64 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -49964,9 +49979,14 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -49974,39 +49994,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" } ], "apiDocumentation": [ @@ -50056,89 +50056,84 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -50146,24 +50141,29 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -50171,77 +50171,85 @@ "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.isalushealthcare.com/" + }, { "criterion": { "id": 181, @@ -50257,14 +50265,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -50304,19 +50304,19 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 54, @@ -50324,24 +50324,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -50349,34 +50344,39 @@ "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, @@ -50384,14 +50384,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -50399,54 +50404,64 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -50458,35 +50473,25 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 172, @@ -50494,19 +50499,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -50514,30 +50509,27 @@ "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.omnimd.com/open-api/" - }, { "criterion": { "id": 181, @@ -50553,6 +50545,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirregistration.omnimd.com/#/specification" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -50587,54 +50587,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -50642,24 +50657,29 @@ "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 46, @@ -50667,44 +50687,39 @@ "title": "Transmission to Cancer Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 181, @@ -50712,14 +50727,14 @@ "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -50727,79 +50742,64 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -50807,20 +50807,12 @@ "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirregistration.omnimd.com/#/specification" - }, { "criterion": { "id": 56, @@ -50836,6 +50828,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.omnimd.com/open-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" } ], "acb": "SLI Compliance" @@ -50875,19 +50875,14 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -50895,64 +50890,54 @@ "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -50960,9 +50945,14 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -50970,14 +50960,9 @@ "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -50985,54 +50970,69 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -51040,29 +51040,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -51076,17 +51076,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://flatiron.force.com/FHIR/s/" } @@ -51128,9 +51128,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -51138,19 +51148,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -51163,9 +51168,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -51173,29 +51178,24 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -51208,44 +51208,39 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -51253,9 +51248,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -51320,65 +51320,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 37, @@ -51386,9 +51356,14 @@ "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -51401,44 +51376,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -51446,24 +51421,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -51471,54 +51451,74 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -51532,17 +51532,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51584,54 +51584,64 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -51639,19 +51649,14 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -51659,24 +51664,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -51684,9 +51689,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -51694,24 +51704,19 @@ "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 9, @@ -51719,29 +51724,24 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -51807,29 +51807,59 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -51837,54 +51867,14 @@ "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -51897,14 +51887,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -51912,59 +51912,64 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -51972,29 +51977,24 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -52060,44 +52060,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -52105,54 +52105,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -52165,39 +52165,29 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -52210,14 +52200,9 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -52225,50 +52210,57 @@ "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.qrshs.info/" - }, { "criterion": { "id": 181, @@ -52284,6 +52276,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.qrshs.info/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.qrshs.info/" } ], "acb": "Drummond Group" @@ -52323,29 +52323,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -52353,65 +52358,45 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 174, "number": "170.315 (d)(3)", @@ -52423,24 +52408,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -52448,102 +52443,107 @@ "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.pcesystems.com/g10APIInfo.html" }, @@ -52557,9 +52557,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.pcesystems.com/g10APIInfo.html" } @@ -52601,39 +52601,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 166, @@ -52641,24 +52636,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -52666,39 +52661,44 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -52706,64 +52706,64 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -52771,14 +52771,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -52786,25 +52791,12 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.pcisgold.com" - }, { "criterion": { "id": 181, @@ -52820,6 +52812,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://fhir.pcisgold.com" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pcisgold.com" } ], "acb": "Drummond Group" @@ -52859,34 +52859,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -52894,9 +52889,9 @@ "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -52904,24 +52899,29 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -52934,19 +52934,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 21, @@ -52954,69 +52954,64 @@ "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 180, @@ -53024,19 +53019,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -53044,9 +53049,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -53054,17 +53059,20 @@ "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.mdsuite.com/api/help/index" + }, { "criterion": { "id": 181, @@ -53080,14 +53088,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.mdsuite.com/api/help" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.mdsuite.com/api/help/index" } ], "acb": "Drummond Group" @@ -53127,14 +53127,14 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -53146,30 +53146,30 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -53221,25 +53221,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -53247,9 +53237,14 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -53257,9 +53252,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 29, @@ -53267,25 +53267,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" } @@ -53327,30 +53327,55 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 35, "number": "170.315 (d)(7)", @@ -53362,29 +53387,34 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, @@ -53392,50 +53422,20 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 29, "number": "170.315 (d)(1)", @@ -53447,25 +53447,17 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.thesnfist.com/cures-update" - }, { "criterion": { "id": 181, @@ -53481,6 +53473,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.thesnfist.com/cures-update" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.thesnfist.com/cures-update" } ], "acb": "Drummond Group" @@ -53519,60 +53519,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -53580,24 +53565,19 @@ "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -53605,59 +53585,59 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -53665,24 +53645,29 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -53690,9 +53675,9 @@ "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -53700,30 +53685,45 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53768,29 +53768,29 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -53802,25 +53802,25 @@ "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -53828,14 +53828,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -53843,14 +53843,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -53858,29 +53853,29 @@ "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -53888,29 +53883,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, @@ -53918,24 +53928,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -53943,27 +53948,22 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53977,9 +53977,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54015,6 +54015,11 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 52, "number": "170.315 (g)(3)", @@ -54026,54 +54031,54 @@ "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 39, @@ -54081,39 +54086,34 @@ "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 14, @@ -54121,9 +54121,19 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -54131,19 +54141,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -54151,24 +54156,24 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, @@ -54176,34 +54181,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -54264,19 +54264,9 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -54284,14 +54274,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 21, @@ -54304,39 +54289,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -54344,24 +54329,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -54369,14 +54354,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -54384,29 +54369,54 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -54414,9 +54424,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -54424,9 +54439,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -54434,37 +54449,22 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -54478,9 +54478,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54517,19 +54517,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -54537,39 +54542,44 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -54577,69 +54587,74 @@ "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -54647,80 +54662,57 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 181, @@ -54736,6 +54728,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -54770,74 +54770,74 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -54845,14 +54845,19 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -54860,19 +54865,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -54880,9 +54890,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -54890,24 +54900,14 @@ "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 59, @@ -54915,44 +54915,39 @@ "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -54960,25 +54955,22 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 182, @@ -54994,6 +54986,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -55028,79 +55028,84 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 179, @@ -55108,14 +55113,9 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -55123,9 +55123,9 @@ "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -55133,84 +55133,89 @@ "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -55218,50 +55223,37 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, @@ -55277,6 +55269,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55311,29 +55311,44 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -55341,9 +55356,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 25, @@ -55351,84 +55371,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -55436,14 +55421,19 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 51, @@ -55451,64 +55441,69 @@ "title": "Automated Measure Calculation" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 2, @@ -55516,32 +55511,37 @@ "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, @@ -55555,9 +55555,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" } @@ -55594,44 +55594,19 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 174, @@ -55639,24 +55614,24 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 15, @@ -55669,19 +55644,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -55689,44 +55664,49 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 25, @@ -55734,9 +55714,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -55744,64 +55724,74 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -55809,17 +55799,35 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" + }, { "criterion": { "id": 182, @@ -55835,14 +55843,6 @@ "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55877,29 +55877,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -55907,24 +55912,34 @@ "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -55932,14 +55947,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 51, @@ -55947,69 +55957,39 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 29, @@ -56017,14 +55997,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -56032,39 +56017,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 45, @@ -56072,29 +56052,49 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -56105,17 +56105,17 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56160,227 +56160,227 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56394,9 +56394,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -56433,29 +56433,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -56463,49 +56458,49 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -56513,24 +56508,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 171, @@ -56538,59 +56543,69 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -56598,54 +56613,39 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -56706,39 +56706,39 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 178, @@ -56746,49 +56746,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -56796,129 +56796,129 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -56932,17 +56932,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" } @@ -56979,24 +56979,14 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -57004,39 +56994,44 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 49, @@ -57044,59 +57039,44 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -57104,24 +57084,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -57129,69 +57109,89 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -57251,55 +57251,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, @@ -57307,9 +57297,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -57317,34 +57312,39 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -57401,35 +57401,20 @@ "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -57437,9 +57422,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -57447,9 +57437,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -57457,19 +57462,19 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -57477,30 +57482,25 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" } @@ -57537,24 +57537,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -57566,30 +57556,20 @@ "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 50, @@ -57597,9 +57577,9 @@ "title": "Automated Numerator Recording" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -57607,14 +57587,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -57627,25 +57607,45 @@ "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -57687,9 +57687,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -57697,24 +57697,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -57722,29 +57722,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -57752,59 +57752,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -57812,19 +57807,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -57832,14 +57832,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -57847,42 +57842,55 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" + }, { "criterion": { "id": 56, @@ -57898,14 +57906,6 @@ "title": "Application Access - All Data Request" }, "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -57950,9 +57950,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 59, @@ -57960,24 +57965,24 @@ "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 43, @@ -57985,24 +57990,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -58010,29 +58005,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 46, @@ -58040,34 +58030,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, @@ -58075,54 +58060,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 26, @@ -58130,27 +58120,45 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + }, { "criterion": { "id": 181, @@ -58166,14 +58174,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" } ], "acb": "SLI Compliance" @@ -58213,44 +58213,49 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -58258,19 +58263,9 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -58278,9 +58273,9 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -58288,24 +58283,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -58313,14 +58298,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -58328,40 +58318,50 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, @@ -58411,69 +58411,54 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -58481,30 +58466,37 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.willowgladetechnologies.com/requirements" - }, { "criterion": { "id": 182, @@ -58520,6 +58512,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.willowgladetechnologies.com/requirements" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.willowgladetechnologies.com/requirements" } ], "acb": "Leidos" @@ -58559,29 +58559,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -58589,49 +58594,49 @@ "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 36, @@ -58639,24 +58644,29 @@ "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -58664,19 +58674,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 49, @@ -58684,9 +58684,14 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 48, @@ -58694,24 +58699,14 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -58719,49 +58714,54 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -58775,17 +58775,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mraemr.com:47102/api/help_document.asp" } @@ -58827,14 +58827,39 @@ }, "criteriaMet": [ { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -58842,9 +58867,14 @@ "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 6, @@ -58852,54 +58882,39 @@ "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 180, @@ -58907,9 +58922,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 172, @@ -58917,9 +58942,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -58927,49 +58952,54 @@ "title": "Trusted Connection" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -58977,69 +59007,34 @@ "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 44, @@ -59047,24 +59042,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -59078,17 +59078,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://mraemr.com:47102/api/help_document.asp" } @@ -59130,34 +59130,44 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 25, @@ -59165,24 +59175,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -59190,14 +59210,14 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -59205,19 +59225,9 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 1, @@ -59230,29 +59240,29 @@ "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -59265,80 +59275,62 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, @@ -59354,6 +59346,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59388,19 +59388,24 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 25, @@ -59408,19 +59413,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -59428,14 +59448,19 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -59443,39 +59468,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -59483,14 +59503,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -59498,24 +59518,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -59523,24 +59553,19 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -59548,42 +59573,25 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59599,14 +59607,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59641,9 +59641,14 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 59, @@ -59651,44 +59656,29 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, @@ -59696,54 +59686,49 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -59756,29 +59741,49 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 37, @@ -59786,57 +59791,60 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59852,14 +59860,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59899,24 +59899,9 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 182, @@ -59924,24 +59909,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, @@ -59949,59 +59929,79 @@ "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 32, @@ -60014,19 +60014,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -60034,19 +60034,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -60054,27 +60054,35 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -60090,14 +60098,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } ], "acb": "Drummond Group" @@ -60137,69 +60137,69 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -60207,124 +60207,124 @@ "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -60336,14 +60336,6 @@ }, "value": "https://cal-med.com/onc.html" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://cal-med.com/onc.html" - }, { "criterion": { "id": 56, @@ -60351,6 +60343,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://cal-med.com/Calmed_API_Document.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cal-med.com/onc.html" } ], "acb": "Drummond Group" @@ -60390,19 +60390,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -60410,29 +60410,29 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 6, @@ -60440,39 +60440,34 @@ "title": "Problem List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -60480,34 +60475,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 44, @@ -60515,39 +60510,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -60555,9 +60550,9 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 172, @@ -60565,9 +60560,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 8, @@ -60575,29 +60580,29 @@ "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 35, @@ -60605,35 +60610,22 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" - }, { "criterion": { "id": 182, @@ -60642,6 +60634,14 @@ }, "value": "https://www.practicefusion.com/fhir/api-specifications/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.practicefusion.com/pds-api/developer-guide/" + }, { "criterion": { "id": 56, @@ -60688,104 +60688,99 @@ }, "criteriaMet": [ { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -60793,135 +60788,132 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" - }, { "criterion": { "id": 182, @@ -60937,6 +60929,14 @@ "title": "Application Access - All Data Request" }, "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" } ], "acb": "Drummond Group" @@ -60976,149 +60976,144 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -61126,47 +61121,52 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, @@ -61180,9 +61180,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" } @@ -61224,14 +61224,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -61239,44 +61244,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -61284,19 +61289,24 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -61304,50 +61314,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 177, "number": "170.315 (d)(13)", @@ -61359,39 +61344,54 @@ "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -61441,39 +61441,44 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -61481,9 +61486,14 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -61491,39 +61501,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -61531,110 +61541,92 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, { "criterion": { "id": 181, @@ -61650,6 +61642,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/pulse-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -61684,19 +61684,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -61704,9 +61724,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, @@ -61714,99 +61734,84 @@ "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 21, @@ -61814,29 +61819,34 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 39, @@ -61844,24 +61854,14 @@ "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -61926,35 +61926,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -61967,24 +61997,19 @@ "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -61992,19 +62017,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -62012,34 +62042,14 @@ "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62047,29 +62057,19 @@ "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -62140,14 +62140,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -62155,49 +62155,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 32, @@ -62205,14 +62200,9 @@ "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -62220,64 +62210,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -62285,24 +62270,29 @@ "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -62310,24 +62300,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -62341,17 +62341,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.qsmartcare.com/api-documentation.html" } @@ -62393,40 +62393,70 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 28, "number": "170.315 (c)(4)", @@ -62438,9 +62468,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 169, @@ -62448,69 +62478,44 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -62518,39 +62523,39 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -62558,9 +62563,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 36, @@ -62568,29 +62573,34 @@ "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, @@ -62598,9 +62608,14 @@ "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 14, @@ -62608,32 +62623,25 @@ "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.myqone.com" + }, { "criterion": { "id": 181, @@ -62649,14 +62657,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.myqone.com" } ], "acb": "SLI Compliance" @@ -62696,29 +62696,24 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -62726,14 +62721,34 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -62741,74 +62756,74 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62816,14 +62831,9 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, @@ -62831,64 +62841,54 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" }, { "criterion": { @@ -62900,11 +62900,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" } ], "acb": "Drummond Group" @@ -62944,9 +62944,24 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -62954,49 +62969,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -63004,109 +63019,89 @@ "title": "Clinical Decision Support" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -63114,24 +63109,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, @@ -63139,40 +63129,50 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, @@ -63222,59 +63222,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -63282,54 +63272,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -63337,9 +63342,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -63347,19 +63357,19 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -63367,62 +63377,52 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, @@ -63436,9 +63436,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } @@ -63480,39 +63480,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 26, @@ -63520,39 +63530,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -63560,39 +63550,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -63600,24 +63585,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 177, @@ -63625,44 +63605,54 @@ "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -63670,32 +63660,50 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + }, { "criterion": { "id": 56, @@ -63711,14 +63719,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.ihs.gov/cis/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" } ], "acb": "SLI Compliance" @@ -63758,119 +63758,119 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 165, @@ -63878,44 +63878,49 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -63926,11 +63931,6 @@ "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -63942,14 +63942,6 @@ }, "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -63957,6 +63949,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -63995,45 +63995,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -64041,34 +64011,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -64076,9 +64046,24 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 32, @@ -64086,9 +64071,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, @@ -64096,14 +64081,9 @@ "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 3, @@ -64111,29 +64091,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 42, @@ -64141,9 +64106,9 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -64151,9 +64116,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -64161,28 +64126,47 @@ "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - } - ], - "apiDocumentation": [ + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, @@ -64190,6 +64174,22 @@ "title": "Application Access - Patient Selection" }, "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -64229,124 +64229,124 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, @@ -64354,54 +64354,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -64412,6 +64407,11 @@ "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -64477,94 +64477,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 175, @@ -64572,64 +64572,69 @@ "title": "Auditing Actions on Health Information" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -64637,24 +64642,19 @@ "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 166, @@ -64662,24 +64662,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -64745,29 +64745,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 182, @@ -64775,14 +64770,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -64790,104 +64795,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 32, @@ -64895,44 +64895,44 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 180, @@ -64940,35 +64940,27 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" - }, { "criterion": { "id": 181, @@ -64977,6 +64969,14 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, { "criterion": { "id": 182, @@ -65018,135 +65018,125 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -65158,79 +65148,89 @@ "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -65242,14 +65242,6 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -65257,6 +65249,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -65296,9 +65296,19 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -65311,34 +65321,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -65391,39 +65391,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -65431,30 +65436,25 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" } @@ -65496,34 +65496,54 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, @@ -65531,34 +65551,44 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -65566,39 +65596,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 26, @@ -65606,9 +65641,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -65616,9 +65651,9 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 176, @@ -65631,39 +65666,14 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 44, @@ -65671,32 +65681,22 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.cerner.com/soarian/overview/" }, @@ -65710,9 +65710,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.cerner.com/soarian/overview/" } @@ -65754,34 +65754,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -65789,9 +65789,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -65799,34 +65804,39 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -65834,124 +65844,114 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 39, @@ -65962,17 +65962,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://solidpractice.com/cost-limitation.php" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://solidpractice.com/cost-limitation.php" }, @@ -66022,24 +66022,39 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -66047,9 +66062,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -66062,59 +66097,24 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -66128,17 +66128,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-docs.practicegateway.net" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-docs.practicegateway.net" } @@ -66180,49 +66180,54 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -66230,94 +66235,84 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -66325,37 +66320,42 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, @@ -66369,9 +66369,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" } @@ -66412,15 +66412,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 167, @@ -66428,9 +66448,9 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -66438,44 +66458,54 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -66483,24 +66513,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -66508,77 +66543,50 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" + }, { "criterion": { "id": 181, @@ -66594,14 +66602,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" } ], "acb": "SLI Compliance" @@ -66641,39 +66641,44 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -66681,14 +66686,9 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -66696,79 +66696,84 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -66776,75 +66781,62 @@ "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" - }, { "criterion": { "id": 56, @@ -66860,6 +66852,14 @@ "title": "Application Access - All Data Request" }, "value": "https://patientportal.streamlinemd.com/FHIRAPI" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patientportal.streamlinemd.com/FHIRAPI" } ], "acb": "Drummond Group" @@ -66899,59 +66899,64 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -66959,19 +66964,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 179, @@ -66979,19 +66984,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -66999,14 +67004,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, @@ -67014,14 +67019,9 @@ "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, @@ -67029,29 +67029,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -67059,14 +67059,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, @@ -67074,24 +67069,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 26, @@ -67099,25 +67084,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + } + ], + "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.systemedx.com/API/APIIntro.html" }, @@ -67128,6 +67120,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.systemedx.com/API/APIIntro.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.systemedx.com/API/APIIntro.html" } ], "acb": "Drummond Group" @@ -67167,34 +67167,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 4, @@ -67202,29 +67202,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -67232,19 +67222,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -67252,34 +67232,24 @@ "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -67287,29 +67257,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -67322,19 +67297,39 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -67342,12 +67337,25 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://wiki.traknetsolutions.com/traknet-open-api" + }, { "criterion": { "id": 181, @@ -67363,14 +67371,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://wiki.traknetsolutions.com/traknet-open-api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" } ], "acb": "Drummond Group" @@ -67410,64 +67410,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -67475,14 +67465,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 10, @@ -67490,105 +67485,102 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, { "criterion": { "id": 181, @@ -67604,6 +67596,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67643,24 +67643,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 167, @@ -67668,29 +67673,24 @@ "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 32, @@ -67698,74 +67698,74 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -67773,47 +67773,55 @@ "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.kareo.com/macra-mips" + }, { "criterion": { "id": 181, @@ -67829,14 +67837,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.kareo.com/macra-mips" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.kareo.com/macra-mips" } ], "acb": "Drummond Group" @@ -67876,34 +67876,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -67911,14 +67901,14 @@ "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -67926,29 +67916,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -67956,24 +67931,24 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 12, @@ -67981,14 +67956,19 @@ "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -67996,9 +67976,24 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -68006,40 +68001,45 @@ "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://devportal.techcareehr.com/Terms" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://devportal.techcareehr.com/Terms" }, @@ -68089,39 +68089,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -68129,19 +68124,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 36, @@ -68149,29 +68159,24 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 34, @@ -68179,34 +68184,49 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -68214,19 +68234,19 @@ "title": "Audit Report(s)" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 175, @@ -68234,102 +68254,82 @@ "title": "Auditing Actions on Health Information" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://tenzing.docs.apiary.io/#" }, @@ -68343,9 +68343,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://tenzing.docs.apiary.io/#" } @@ -68387,19 +68387,9 @@ }, "criteriaMet": [ { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 170, @@ -68407,24 +68397,19 @@ "title": "Care Plan" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -68432,24 +68417,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 168, @@ -68457,39 +68452,44 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 2, @@ -68497,64 +68497,59 @@ "title": "CPOE - Laboratory" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -68562,49 +68557,54 @@ "title": "Emergency Access" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -68612,65 +68612,57 @@ "title": "End-User Device Encryption" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 182, @@ -68679,6 +68671,14 @@ }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 181, @@ -68725,40 +68725,55 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 35, "number": "170.315 (d)(7)", @@ -68770,24 +68785,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -68795,9 +68795,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -68847,19 +68847,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -68867,84 +68867,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -68952,9 +68942,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -68962,45 +68952,47 @@ "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" - }, { "criterion": { "id": 182, @@ -69016,6 +69008,14 @@ "title": "Application Access - All Data Request" }, "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], "acb": "Drummond Group" @@ -69055,14 +69055,14 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -69070,89 +69070,84 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -69160,97 +69155,110 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.interopengine.com/2017/open-api-documentation.html" + }, { "criterion": { "id": 181, @@ -69266,14 +69274,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.interopengine.com/2017/open-api-documentation.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -69313,39 +69313,44 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 180, @@ -69353,24 +69358,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -69378,74 +69368,79 @@ "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 33, @@ -69453,29 +69448,29 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -69483,24 +69478,29 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -69566,29 +69566,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -69596,44 +69591,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 10, @@ -69641,14 +69631,14 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -69656,64 +69646,79 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 6, @@ -69721,55 +69726,50 @@ "title": "Problem List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, @@ -69819,64 +69819,79 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -69884,25 +69899,45 @@ "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -69914,29 +69949,24 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 42, @@ -69944,82 +69974,52 @@ "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - } - ], - "apiDocumentation": [ + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -70028,14 +70028,6 @@ }, "value": "https://allegiancemd.com/developer-guide-api-help/" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://allegiancemd.com/developer-guide-api-help/" - }, { "criterion": { "id": 182, @@ -70043,6 +70035,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://allegiancemd.com/fhir-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://allegiancemd.com/developer-guide-api-help/" } ], "acb": "SLI Compliance" @@ -70082,9 +70082,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 34, @@ -70092,9 +70092,19 @@ "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 44, @@ -70102,44 +70112,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -70147,34 +70152,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 4, @@ -70182,79 +70182,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 37, @@ -70262,14 +70267,19 @@ "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 167, @@ -70277,50 +70287,32 @@ "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 182, @@ -70336,6 +70328,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70370,49 +70370,29 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 174, @@ -70420,29 +70400,29 @@ "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -70450,24 +70430,34 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -70475,14 +70465,19 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 21, @@ -70490,19 +70485,19 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 25, @@ -70510,105 +70505,102 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 56, @@ -70624,6 +70616,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70658,19 +70658,24 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -70678,24 +70683,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -70703,24 +70708,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 14, @@ -70728,14 +70718,14 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 168, @@ -70743,49 +70733,29 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 37, @@ -70793,39 +70763,69 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -70833,59 +70833,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -70946,39 +70946,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -70986,24 +70981,9 @@ "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 179, @@ -71011,29 +70991,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 59, @@ -71041,69 +71016,64 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 182, @@ -71111,69 +71081,99 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -71239,9 +71239,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 174, @@ -71249,49 +71254,54 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -71299,14 +71309,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -71314,94 +71319,84 @@ "title": "Quality Management System" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 49, @@ -71409,75 +71404,72 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" - }, { "criterion": { "id": 182, @@ -71493,6 +71485,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -71532,49 +71532,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -71582,114 +71577,119 @@ "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -71755,99 +71755,104 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -71855,9 +71860,14 @@ "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -71865,19 +71875,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -71885,82 +71890,77 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -71974,9 +71974,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72013,14 +72013,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -72028,39 +72028,39 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, @@ -72068,24 +72068,39 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -72093,24 +72108,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -72118,24 +72128,19 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -72148,44 +72153,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -72193,27 +72198,22 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -72227,9 +72227,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72271,54 +72271,54 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -72326,34 +72326,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -72361,9 +72341,9 @@ "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 2, @@ -72371,69 +72351,69 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 5, @@ -72441,9 +72421,19 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -72456,19 +72446,19 @@ "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -72476,45 +72466,55 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, @@ -72563,80 +72563,70 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -72644,9 +72634,14 @@ "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -72654,19 +72649,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -72674,24 +72679,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 170, @@ -72699,69 +72704,49 @@ "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -72769,40 +72754,55 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, @@ -72852,49 +72852,49 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -72902,49 +72902,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, @@ -72952,19 +72952,14 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -72972,9 +72967,9 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -72982,25 +72977,30 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, @@ -73050,9 +73050,9 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -73060,59 +73060,59 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -73120,34 +73120,34 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -73155,14 +73155,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 176, @@ -73170,42 +73170,50 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://zoobooksystems.com/api-documentation/" + }, { "criterion": { "id": 56, @@ -73221,14 +73229,6 @@ "title": "Application Access - All Data Request" }, "value": "https://zoobooksystems.com/api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://zoobooksystems.com/api-documentation/" } ], "acb": "Drummond Group" @@ -73267,65 +73267,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -73333,64 +73308,59 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 51, @@ -73398,9 +73368,9 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 34, @@ -73408,14 +73378,19 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 179, @@ -73428,34 +73403,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 178, @@ -73463,9 +73428,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 56, @@ -73473,32 +73438,67 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -73512,9 +73512,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -73551,49 +73551,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -73601,54 +73601,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -73656,39 +73656,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -73696,44 +73686,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -73741,39 +73726,54 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -73834,24 +73834,19 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -73859,24 +73854,29 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -73889,9 +73889,44 @@ "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -73899,9 +73934,19 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 15, @@ -73909,39 +73954,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -73949,84 +73984,44 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, @@ -74034,12 +74029,25 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 181, @@ -74055,14 +74063,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74097,99 +74097,94 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -74197,9 +74192,14 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -74207,110 +74207,102 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 56, @@ -74326,6 +74318,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74365,19 +74365,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -74385,202 +74385,202 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74594,9 +74594,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" } @@ -74633,74 +74633,79 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -74708,24 +74713,34 @@ "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 179, @@ -74738,34 +74753,44 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -74773,95 +74798,70 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74906,44 +74906,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -74951,19 +74951,14 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -74971,9 +74966,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -74981,24 +74981,19 @@ "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -75006,54 +75001,64 @@ "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 166, @@ -75061,19 +75066,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, @@ -75081,14 +75076,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 165, @@ -75096,9 +75091,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -75106,22 +75106,30 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75137,14 +75145,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -75179,29 +75179,29 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 42, @@ -75209,24 +75209,39 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -75239,44 +75254,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 59, @@ -75284,54 +75294,54 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -75339,39 +75349,34 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 182, @@ -75379,27 +75384,22 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75413,9 +75413,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" } @@ -75457,139 +75457,129 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -75597,9 +75587,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -75607,54 +75602,59 @@ "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -75720,84 +75720,79 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -75805,64 +75800,69 @@ "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 6, @@ -75870,9 +75870,9 @@ "title": "Problem List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 43, @@ -75880,49 +75880,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 2, @@ -75930,25 +75925,22 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 181, @@ -75964,6 +75956,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" } ], "acb": "SLI Compliance" @@ -76002,25 +76002,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -76028,69 +76043,69 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 39, @@ -76098,19 +76113,9 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -76118,29 +76123,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -76148,84 +76143,89 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -76290,65 +76290,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -76356,14 +76336,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -76371,39 +76351,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 166, @@ -76411,64 +76401,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -76476,19 +76466,19 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -76496,25 +76486,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhir.eclinicalworks.com" - }, { "criterion": { "id": 56, @@ -76530,6 +76522,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" @@ -76564,54 +76564,74 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 37, @@ -76619,14 +76639,29 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 44, @@ -76634,54 +76669,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -76693,98 +76728,63 @@ "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com/" }, @@ -76798,9 +76798,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com/" } @@ -76837,24 +76837,24 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -76862,15 +76862,55 @@ "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 15, "number": "170.315 (a)(15)", @@ -76886,80 +76926,45 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 2, @@ -76967,9 +76972,9 @@ "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -76977,29 +76982,29 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, @@ -77007,14 +77012,9 @@ "title": "Accounting of Disclosures" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, @@ -77022,14 +77022,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 53, @@ -77037,35 +77042,30 @@ "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com" }, @@ -77114,65 +77114,75 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -77180,19 +77190,19 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -77200,14 +77210,9 @@ "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -77215,19 +77220,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -77235,32 +77240,35 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" + }, { "criterion": { "id": 181, @@ -77276,14 +77284,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.edermehr.com/ederm-onc-certified" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77323,54 +77323,64 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -77378,54 +77388,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -77433,34 +77443,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -77468,54 +77478,44 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77581,69 +77581,74 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -77651,19 +77656,29 @@ "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -77671,84 +77686,84 @@ "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -77756,39 +77771,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77854,19 +77854,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -77874,24 +77869,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -77899,9 +77894,14 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -77909,29 +77909,29 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -77944,29 +77944,29 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -77974,32 +77974,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, @@ -78013,9 +78013,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } @@ -78057,64 +78057,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -78122,34 +78117,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 14, @@ -78157,24 +78152,29 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 12, @@ -78182,9 +78182,19 @@ "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 44, @@ -78192,69 +78202,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -78266,14 +78266,6 @@ }, "value": "https://dexter-solutions.com/certification" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78281,6 +78273,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://interopengine.com/2017/open-api-documentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78315,14 +78315,9 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -78330,104 +78325,104 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 14, @@ -78435,34 +78430,34 @@ "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 5, @@ -78470,60 +78465,57 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78539,6 +78531,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dexter-solutions.com/certification" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78574,68 +78574,63 @@ "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, + "name": "Active" + }, + "criteriaMet": [ { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -78643,29 +78638,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -78731,69 +78731,54 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -78801,24 +78786,24 @@ "title": "Family Health History" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -78826,39 +78811,39 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -78866,44 +78851,49 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 11, @@ -78911,35 +78901,55 @@ "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 33, "number": "170.315 (d)(5)", @@ -78951,34 +78961,24 @@ "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" }, { "criterion": { @@ -78990,11 +78990,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" } ], "acb": "SLI Compliance" @@ -79034,59 +79034,74 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -79094,14 +79109,24 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 179, @@ -79109,29 +79134,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -79139,89 +79159,79 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -79229,29 +79239,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -79265,17 +79265,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -79317,19 +79317,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -79337,94 +79332,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -79432,14 +79437,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -79447,100 +79452,87 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, { "criterion": { "id": 181, @@ -79556,6 +79548,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.interopengine.com/open-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -79600,69 +79600,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -79670,59 +79670,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -79730,47 +79730,55 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.lillegroup.com/esh.html" + }, { "criterion": { "id": 182, @@ -79786,14 +79794,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.lillegroup.com/esh.html" } ], "acb": "SLI Compliance" @@ -79833,39 +79833,39 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 5, @@ -79873,39 +79873,34 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 26, @@ -79913,34 +79908,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 171, @@ -79948,9 +79933,14 @@ "title": "Electronic Health Information Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 56, @@ -79958,59 +79948,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 25, @@ -80018,24 +79998,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -80043,24 +80028,24 @@ "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 6, @@ -80068,22 +80053,45 @@ "title": "Problem List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-api.ethizo.com/" + }, { "criterion": { "id": 56, @@ -80099,14 +80107,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ethizo.com/pda-api/developer-guide/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir-api.ethizo.com/" } ], "acb": "SLI Compliance" @@ -80146,9 +80146,9 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -80156,34 +80156,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 14, @@ -80191,109 +80166,104 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 44, @@ -80301,29 +80271,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -80331,34 +80301,34 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -80366,20 +80336,42 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.ezemrx.com/fhir" - }, { "criterion": { "id": 56, @@ -80395,6 +80387,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ezemrx.com/oauth/fhir.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ezemrx.com/fhir" } ], "acb": "SLI Compliance" @@ -80434,54 +80434,44 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -80489,54 +80479,54 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -80544,60 +80534,62 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 56, @@ -80613,6 +80605,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://penn-clinical.com/api-documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://penn-clinical.com/api-documentation" } ], "acb": "Drummond Group" @@ -80647,54 +80647,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -80702,74 +80682,64 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -80777,14 +80747,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -80792,55 +80762,77 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 181, @@ -80849,6 +80841,14 @@ }, "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://penn-clinical.com/api-documentation" + }, { "criterion": { "id": 56, @@ -80895,29 +80895,19 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -80925,24 +80915,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 32, @@ -80950,54 +80945,54 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -81005,34 +81000,34 @@ "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -81040,55 +81035,52 @@ "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" - }, { "criterion": { "id": 181, @@ -81104,6 +81096,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.healogics.com/2015-certified-ehr-technology/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.healogics.com/2015-certified-ehr-technology/" } ], "acb": "Drummond Group" @@ -81143,14 +81143,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 171, @@ -81158,34 +81158,19 @@ "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 35, @@ -81193,34 +81178,19 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 165, @@ -81228,9 +81198,9 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -81238,24 +81208,34 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -81263,9 +81243,14 @@ "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 176, @@ -81273,50 +81258,65 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://appstudio.interopengine.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://appstudio.interopengine.com/" }, @@ -81360,15 +81360,30 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 53, @@ -81380,45 +81395,40 @@ "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -81426,19 +81436,19 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -81446,49 +81456,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -81496,32 +81506,30 @@ "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://appstudio.interopengine.com/" + }, { "criterion": { "id": 56, @@ -81537,14 +81545,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://appstudio.interopengine.com/" } ], "acb": "Drummond Group" @@ -81584,49 +81584,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -81634,39 +81624,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 1, @@ -81674,74 +81659,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -81749,55 +81739,65 @@ "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.icare.com/developers/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.icare.com/developers/" }, @@ -81847,19 +81847,14 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -81867,49 +81862,54 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -81917,24 +81917,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -81942,14 +81942,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -81957,9 +81952,14 @@ "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -81967,87 +81967,87 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" }, @@ -82061,9 +82061,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" } @@ -82105,19 +82105,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 13, @@ -82130,9 +82130,14 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 26, @@ -82140,29 +82145,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -82170,9 +82160,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -82180,14 +82175,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -82195,14 +82200,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -82210,39 +82230,39 @@ "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, @@ -82250,29 +82270,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -82280,27 +82290,25 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" + }, { "criterion": { "id": 181, @@ -82316,14 +82324,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" } ], "acb": "Drummond Group" @@ -82363,34 +82363,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -82398,9 +82398,14 @@ "title": "Automated Measure Calculation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 56, @@ -82408,99 +82413,94 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -82508,64 +82508,64 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -82574,6 +82574,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + }, { "criterion": { "id": 182, @@ -82589,14 +82597,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -82631,69 +82631,39 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -82701,59 +82671,59 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -82761,14 +82731,14 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -82776,29 +82746,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, @@ -82806,19 +82771,39 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -82826,17 +82811,32 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -82850,9 +82850,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -82889,29 +82889,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 12, @@ -82919,64 +82899,59 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 46, @@ -82984,24 +82959,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 170, @@ -83009,64 +82989,64 @@ "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, @@ -83074,24 +83054,24 @@ "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -83099,24 +83079,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -83130,17 +83130,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83182,64 +83182,69 @@ }, "criteriaMet": [ { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -83247,29 +83252,44 @@ "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 173, @@ -83277,49 +83297,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -83327,29 +83342,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -83357,60 +83367,50 @@ "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -83455,74 +83455,74 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -83530,24 +83530,24 @@ "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -83555,29 +83555,29 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 44, @@ -83585,44 +83585,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -83630,50 +83630,42 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -83689,6 +83681,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83728,54 +83728,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 7, @@ -83788,44 +83788,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 166, @@ -83833,29 +83823,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -83863,24 +83858,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -83888,14 +83878,9 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 49, @@ -83903,24 +83888,24 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -83928,24 +83913,39 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -84011,59 +84011,49 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 172, @@ -84071,54 +84061,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -84126,19 +84106,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, @@ -84146,49 +84126,74 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -84196,9 +84201,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -84206,27 +84211,30 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nablemd.com/api_fhir/index.html" + }, { "criterion": { "id": 181, @@ -84242,14 +84250,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nablemd.com/api_fhir/index.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" } ], "acb": "Drummond Group" diff --git a/resources/dev_resources/Modernizing_Medicine_EndpointSources.json b/resources/dev_resources/Modernizing_Medicine_EndpointSources.json index 2b0b351d0..9f57e35db 100644 --- a/resources/dev_resources/Modernizing_Medicine_EndpointSources.json +++ b/resources/dev_resources/Modernizing_Medicine_EndpointSources.json @@ -1,54 +1,64 @@ { "Endpoints": [ { - "URL": "https://fax2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test2", - "NPIID": "" + "URL": "https://pbd.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Palm Beach Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://uro.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Urology", - "NPIID": "" + "URL": "https://pbdtest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Pbdtest3 Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://laser.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Laser", - "NPIID": "" + "URL": "https://blueridge.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Blue Ridge Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://fax3.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test 3", - "NPIID": "" + "URL": "https://brderm.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Boca Raton Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zzy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zzy", - "NPIID": "" + "URL": "https://clearly.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Clearly Derm Center for Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zyy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ZYY", - "NPIID": "" + "URL": "https://carloscohen.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Carlos Cohen MD PA", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zopth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zophth", - "NPIID": "" + "URL": "https://awstest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "awstest", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://maverick.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Mavericks EMAzing", - "NPIID": "" + "URL": "https://goldman.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David A. Goldman MD LLC", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://m2qatest01.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ema 01 test", - "NPIID": "" + "URL": "https://eatest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Ea Test", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zyx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zyx", - "NPIID": "" + "URL": "https://drdrew.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "JBS Med PA", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/dev_resources/Office_Practicum_EndpointSources.json b/resources/dev_resources/Office_Practicum_EndpointSources.json new file mode 100644 index 000000000..885c315e9 --- /dev/null +++ b/resources/dev_resources/Office_Practicum_EndpointSources.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "https://applications.op.healthcare/2198/api/FHIR/R4", + "OrganizationName": "A Machin MD dba Fairhaven Pediatrics PC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/451/api/FHIR/R4", + "OrganizationName": "Aldo F Bejarano MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1618/api/FHIR/R4", + "OrganizationName": "All About Children PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/538/api/FHIR/R4", + "OrganizationName": "All Star Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1849/api/FHIR/R4", + "OrganizationName": "Amboy Pediatrics PA NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/827/api/FHIR/R4", + "OrganizationName": "Anantha R Bhandari MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/298/api/FHIR/R4", + "OrganizationName": "Angel Kids Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3104/api/FHIR/R4", + "OrganizationName": "Anniston Pediatrics Inc AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/849/api/FHIR/R4", + "OrganizationName": "Apache Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3118/api/FHIR/R4", + "OrganizationName": "Arbor Pediatrics PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json b/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json index 1895b1b8f..83324b8a8 100644 --- a/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json +++ b/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json @@ -1,61 +1,61 @@ { "Endpoints": [ { - "URL": "https://mu3test.welligent.com/fhir/dhit/practicezero/r4", + "URL": "https://fhir.qa.welligent.com/fhir/dhit/109/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/practiceone/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/109/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/totaleducationsolutions/259/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/watchmegrow/311/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/totaleducationsolutions/259/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hillviewmentalhealthcenter,inc./300/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json b/resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json new file mode 100644 index 000000000..b138050d5 --- /dev/null +++ b/resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json @@ -0,0 +1,16 @@ +{ + "Endpoints": [ + { + "URL": "https://ccdoc.phn.care/tenant/my-clinic/patient/smart-api", + "OrganizationName": "My Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://ccdoc.phn.care/tenant/NCS/patient/smart-api", + "OrganizationName": "NCS", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/AdvancedMD_EndpointSources.json b/resources/prod_resources/AdvancedMD_EndpointSources.json index 15c250df3..0e3bc63c8 100644 --- a/resources/prod_resources/AdvancedMD_EndpointSources.json +++ b/resources/prod_resources/AdvancedMD_EndpointSources.json @@ -1,10 +1,3 @@ { - "Endpoints": [ - { - "URL": "https://providerapi.advancedmd.com/v1/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - } - ] + "Endpoints": null } \ No newline at end of file diff --git a/resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json b/resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json new file mode 100644 index 000000000..eb5cafe8e --- /dev/null +++ b/resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://broadstreet.arsanahealth.com/api/fhir/", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/CHPLProductsInfo.json b/resources/prod_resources/CHPLProductsInfo.json index 7a122c57a..01cb3ef35 100644 --- a/resources/prod_resources/CHPLProductsInfo.json +++ b/resources/prod_resources/CHPLProductsInfo.json @@ -32,9 +32,19 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -42,89 +52,74 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -132,24 +127,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -157,19 +157,19 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.onemedical.io/fhir/overview/" + "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" }, { "criterion": { @@ -181,11 +181,11 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" + "value": "https://apidocs.onemedical.io/fhir/overview/" } ], "acb": "SLI Compliance" @@ -220,59 +220,59 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -280,44 +280,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -325,49 +320,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -375,19 +370,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -453,44 +453,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -498,59 +503,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -558,14 +558,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -573,24 +568,34 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -598,9 +603,9 @@ "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -608,9 +613,9 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, @@ -618,14 +623,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 59, @@ -633,35 +643,17 @@ "title": "Direct Project" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://app.smartemr.com/api/api_client.php" - }, { "criterion": { "id": 181, @@ -677,6 +669,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.smartemr.com/api/api_client.php" } ], "acb": "Drummond Group" @@ -716,59 +716,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -776,14 +771,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -796,24 +786,24 @@ "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -821,24 +811,34 @@ "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -846,55 +846,47 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -910,6 +902,14 @@ "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -944,9 +944,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -954,54 +954,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 178, @@ -1009,49 +999,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -1059,59 +1054,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -1177,39 +1177,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, @@ -1217,29 +1207,29 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -1247,34 +1237,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -1282,19 +1247,14 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 25, @@ -1302,19 +1262,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -1322,9 +1282,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 178, @@ -1337,27 +1302,70 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" + }, { "criterion": { "id": 56, @@ -1373,14 +1381,6 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirapi.asp.md:3000" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" } ], "acb": "SLI Compliance" @@ -1420,19 +1420,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -1440,59 +1435,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 4, @@ -1500,24 +1485,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -1525,90 +1510,97 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" - }, { "criterion": { "id": 181, @@ -1624,6 +1616,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1663,14 +1663,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 33, @@ -1678,84 +1683,84 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 175, @@ -1763,90 +1768,85 @@ "title": "Auditing Actions on Health Information" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://axeium.net/api/swagger/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://axeium.net/api/swagger/" }, @@ -1896,44 +1896,39 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 178, @@ -1946,44 +1941,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 167, @@ -1991,19 +1986,14 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -2011,105 +2001,115 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" }, @@ -2154,34 +2154,44 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -2189,14 +2199,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -2204,9 +2224,9 @@ "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -2214,24 +2234,14 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -2239,24 +2249,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -2264,94 +2264,94 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -2365,17 +2365,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" } @@ -2417,69 +2417,79 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -2487,109 +2497,99 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -2597,29 +2597,29 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -2685,34 +2685,19 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -2725,9 +2710,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, @@ -2735,17 +2725,35 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://smartbox.aidbox.app/documentation" + }, { "criterion": { "id": 181, @@ -2761,14 +2769,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://smartbox.aidbox.app/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://smartbox.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -2808,9 +2808,14 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 175, @@ -2823,14 +2828,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -2843,9 +2843,9 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -2894,16 +2894,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 2, "number": "170.315 (a)(2)", @@ -2915,79 +2905,79 @@ "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -2995,39 +2985,44 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 178, @@ -3035,9 +3030,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 15, @@ -3045,34 +3050,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -3080,17 +3080,17 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" }, @@ -3104,9 +3104,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3147,20 +3147,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -3173,44 +3193,49 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -3218,39 +3243,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -3258,39 +3278,19 @@ "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -3298,45 +3298,37 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" - }, { "criterion": { "id": 182, @@ -3352,6 +3344,14 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3385,20 +3385,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, @@ -3406,44 +3426,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -3451,14 +3466,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -3466,9 +3476,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -3476,9 +3496,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -3486,9 +3506,14 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 35, @@ -3496,24 +3521,24 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -3521,57 +3546,40 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 182, @@ -3587,14 +3595,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/ac-api-documentation/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3629,34 +3629,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -3664,39 +3639,39 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -3704,19 +3679,19 @@ "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -3724,19 +3699,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -3744,64 +3724,64 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -3812,6 +3792,26 @@ "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -3877,29 +3877,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -3907,14 +3917,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -3922,29 +3927,19 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -3952,14 +3947,19 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, @@ -3967,74 +3967,74 @@ "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -4100,9 +4100,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -4110,94 +4110,99 @@ "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -4205,39 +4210,24 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -4250,24 +4240,34 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -4281,17 +4281,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.pai.healthcare/documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" } @@ -4333,19 +4333,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 36, @@ -4353,29 +4343,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -4383,89 +4373,89 @@ "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -4473,34 +4463,44 @@ "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -4514,17 +4514,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" } @@ -4566,24 +4566,24 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -4591,29 +4591,39 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 174, @@ -4621,79 +4631,79 @@ "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 43, @@ -4701,59 +4711,59 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -4761,35 +4771,25 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dev.azaleahealth.com/" }, @@ -4839,44 +4839,44 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 171, @@ -4884,49 +4884,34 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -4939,49 +4924,54 @@ "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -4989,9 +4979,14 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 35, @@ -4999,79 +4994,84 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -5085,17 +5085,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" } @@ -5137,30 +5137,65 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -5171,45 +5206,30 @@ "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 14, @@ -5217,24 +5237,24 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -5242,9 +5262,9 @@ "title": "Electronic Health Information Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -5252,14 +5272,29 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 26, @@ -5267,34 +5302,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -5302,19 +5347,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 166, @@ -5322,19 +5372,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -5342,67 +5392,25 @@ "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, { "criterion": { "id": 56, @@ -5418,14 +5426,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" } ], "acb": "SLI Compliance" @@ -5465,34 +5465,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -5500,29 +5500,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -5530,29 +5525,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, @@ -5560,134 +5560,139 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 13, @@ -5695,9 +5700,14 @@ "title": "Patient-Specific Education Resources" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 8, @@ -5705,32 +5715,30 @@ "title": "Medication Allergy List" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -5746,14 +5754,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -5787,50 +5787,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -5838,64 +5853,64 @@ "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -5903,54 +5918,34 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -5958,52 +5953,65 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -6019,14 +6027,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -6061,74 +6061,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -6136,24 +6121,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -6161,49 +6151,49 @@ "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -6211,24 +6201,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -6236,52 +6236,52 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" }, @@ -6295,9 +6295,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" } @@ -6339,14 +6339,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 42, @@ -6354,24 +6349,29 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -6379,29 +6379,24 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -6409,39 +6404,39 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -6449,9 +6444,19 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -6459,24 +6464,29 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -6484,24 +6494,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -6567,19 +6567,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -6587,9 +6577,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, @@ -6602,9 +6597,9 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -6612,9 +6607,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 50, @@ -6622,30 +6622,30 @@ "title": "Automated Numerator Recording" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.sb.meldrx.com/swagger/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://app.sb.meldrx.com/swagger/index.html" } @@ -6686,6 +6686,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -6697,84 +6707,94 @@ "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 44, @@ -6782,24 +6802,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -6807,34 +6827,24 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 178, @@ -6842,35 +6852,17 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" - }, { "criterion": { "id": 182, @@ -6879,6 +6871,14 @@ }, "value": "https://blueehr.com/certifications-and-costs/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + }, { "criterion": { "id": 56, @@ -6925,24 +6925,24 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -6950,24 +6950,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -6980,34 +6980,34 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -7016,14 +7016,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" - }, { "criterion": { "id": 181, @@ -7039,6 +7031,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://bridgepatientportal.docs.apiary.io/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" } ], "acb": "SLI Compliance" @@ -7078,19 +7078,9 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -7098,14 +7088,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -7113,39 +7103,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -7153,19 +7123,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 51, @@ -7173,69 +7148,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -7243,32 +7228,47 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://broadstreetcare.com/docs" }, @@ -7282,9 +7282,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://broadstreetcare.com/docs" } @@ -7326,64 +7326,64 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -7391,34 +7391,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -7426,34 +7426,19 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -7461,69 +7446,64 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -7531,24 +7511,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -7556,9 +7546,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -7570,14 +7570,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 181, @@ -7585,6 +7577,14 @@ "title": "Application Access - All Data Request" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7619,39 +7619,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 171, @@ -7659,19 +7659,29 @@ "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -7679,29 +7689,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -7709,149 +7714,144 @@ "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -7863,14 +7863,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 56, @@ -7878,6 +7870,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7917,94 +7917,74 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -8012,24 +7992,19 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -8037,44 +8012,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -8082,39 +8057,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -8122,12 +8102,40 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, { "criterion": { "id": 56, @@ -8143,14 +8151,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.aprima.com/api_doc/api/v1/help.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" } ], "acb": "Drummond Group" @@ -8185,34 +8185,29 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -8220,9 +8215,14 @@ "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -8230,29 +8230,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -8260,19 +8255,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -8280,9 +8270,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, @@ -8290,19 +8280,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -8310,24 +8305,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -8335,34 +8320,49 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -8376,17 +8376,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://apitest.emds.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.emds.com/documentation" } @@ -8428,9 +8428,9 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 180, @@ -8438,34 +8438,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -8473,19 +8473,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -8493,17 +8493,25 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, { "criterion": { "id": 181, @@ -8519,14 +8527,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" } ], "acb": "Drummond Group" @@ -8566,54 +8566,54 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -8621,9 +8621,14 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -8631,99 +8636,99 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -8731,19 +8736,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 1, @@ -8751,9 +8751,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -8767,17 +8767,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.canvasmedical.com/api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.canvasmedical.com/api/" } @@ -8819,24 +8819,24 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -8844,34 +8844,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 4, @@ -8884,24 +8894,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -8909,49 +8909,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -8959,19 +8944,14 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -8979,14 +8959,9 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -8994,9 +8969,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -9004,40 +8999,37 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.acurussolutions.com/Certification.html" - }, { "criterion": { "id": 182, @@ -9046,6 +9038,14 @@ }, "value": "https://www.acurussolutions.com/Certification.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.acurussolutions.com/Certification.html" + }, { "criterion": { "id": 181, @@ -9092,69 +9092,94 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -9162,19 +9187,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 173, @@ -9182,109 +9202,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -9298,17 +9298,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" } @@ -9345,39 +9345,49 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -9385,49 +9395,49 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -9435,24 +9445,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -9460,19 +9475,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -9480,44 +9485,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -9525,22 +9530,17 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, @@ -9554,9 +9554,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" } @@ -9593,74 +9593,64 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -9668,49 +9658,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, @@ -9718,9 +9698,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -9728,125 +9713,140 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" }, @@ -9896,14 +9896,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -9911,29 +9906,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -9941,44 +9931,49 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -9986,34 +9981,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -10021,14 +10006,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -10036,29 +10021,39 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -10066,37 +10061,42 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://qualifacts.com/api-documentation/" }, @@ -10110,9 +10110,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://qualifacts.com/api-documentation/" } @@ -10153,20 +10153,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, @@ -10174,14 +10169,39 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -10189,130 +10209,110 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://carepaths.com/api_documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://carepaths.com/api_documentation/" }, @@ -10362,29 +10362,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 176, @@ -10392,19 +10372,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -10416,10 +10396,30 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -10433,17 +10433,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.carefluence.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.carefluence.com" } @@ -10485,54 +10485,59 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 42, @@ -10540,24 +10545,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 26, @@ -10565,29 +10575,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -10595,14 +10605,19 @@ "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -10610,69 +10625,44 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -10680,29 +10670,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -10710,25 +10700,35 @@ "title": "Transmission to Immunization Registries" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, @@ -10778,19 +10778,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 172, @@ -10798,14 +10788,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -10813,84 +10803,84 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 15, @@ -10898,64 +10888,59 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -10963,19 +10948,34 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -10983,25 +10983,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, @@ -11051,104 +11051,69 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -11156,9 +11121,9 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -11166,59 +11131,94 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -11237,17 +11237,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.charteasy.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.charteasy.com/" } @@ -11288,30 +11288,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -11319,134 +11314,134 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -11454,34 +11449,29 @@ "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 171, @@ -11489,9 +11479,14 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -11502,17 +11497,14 @@ "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" - }, { "criterion": { "id": 56, @@ -11528,6 +11520,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" } ], "acb": "Drummond Group" @@ -11567,44 +11567,54 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 8, "number": "170.315 (a)(8)", "title": "Medication Allergy List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 182, @@ -11612,34 +11622,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -11647,24 +11632,29 @@ "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -11672,19 +11662,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 181, @@ -11692,29 +11692,49 @@ "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 19, "number": "170.315 (b)(4)", "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -11722,19 +11742,14 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -11742,9 +11757,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -11755,24 +11770,17 @@ "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" - }, + } + ], + "apiDocumentation": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://beta.afoundria.com/api" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ { "criterion": { "id": 182, @@ -11788,14 +11796,6 @@ "title": "Application Access - All Data Request" }, "value": "https://beta.afoundria.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://beta.afoundria.com/api" } ], "acb": "Drummond Group" @@ -11835,29 +11835,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 28, @@ -11865,44 +11865,34 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, @@ -11910,34 +11900,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -11945,49 +11930,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, @@ -11995,19 +11985,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -12015,19 +12010,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -12041,17 +12041,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" } @@ -12093,84 +12093,99 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -12178,64 +12193,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 179, @@ -12243,24 +12263,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -12268,32 +12283,25 @@ "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sabiamed.com/api-documentation" + }, { "criterion": { "id": 182, @@ -12309,14 +12317,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.sabiamed.com:8081/MPIServices/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sabiamed.com/api-documentation" } ], "acb": "Drummond Group" @@ -12356,44 +12356,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -12401,14 +12391,9 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 172, @@ -12416,9 +12401,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -12426,39 +12421,49 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -12466,14 +12471,9 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -12481,39 +12481,39 @@ "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -12521,9 +12521,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -12531,14 +12536,19 @@ "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -12546,24 +12556,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -12571,9 +12571,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -12582,14 +12582,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" - }, { "criterion": { "id": 181, @@ -12605,6 +12597,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" } ], "acb": "SLI Compliance" @@ -12644,109 +12644,104 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 33, @@ -12754,39 +12749,39 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 44, @@ -12794,19 +12789,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 10, @@ -12814,14 +12814,9 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -12829,9 +12824,14 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -12839,44 +12839,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -12942,64 +12942,49 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -13007,19 +12992,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -13027,49 +13012,29 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -13077,29 +13042,29 @@ "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 174, @@ -13107,9 +13072,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -13117,19 +13087,19 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -13137,9 +13107,39 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -13204,25 +13204,40 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, @@ -13230,14 +13245,9 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -13245,14 +13255,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -13260,29 +13265,19 @@ "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -13290,9 +13285,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -13300,9 +13295,9 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -13310,25 +13305,30 @@ "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" } @@ -13370,30 +13370,50 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", @@ -13405,49 +13425,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -13455,14 +13460,14 @@ "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 51, @@ -13470,54 +13475,54 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, @@ -13525,14 +13530,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -13540,29 +13545,24 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" }, { "criterion": { @@ -13574,11 +13574,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" } ], "acb": "Drummond Group" @@ -13618,24 +13618,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -13643,14 +13628,9 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -13658,19 +13638,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 13, @@ -13678,29 +13663,34 @@ "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -13708,19 +13698,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -13728,9 +13718,9 @@ "title": "Application Access - All Data Request" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -13738,19 +13728,19 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -13758,19 +13748,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -13836,64 +13836,69 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -13901,54 +13906,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -13956,39 +13946,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -14000,14 +14000,6 @@ }, "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -14015,6 +14007,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" } ], "acb": "UL LLC" @@ -14053,6 +14053,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", @@ -14063,40 +14073,15 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -14104,24 +14089,39 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -14135,17 +14135,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.developers.cozeva.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.developers.cozeva.com/" } @@ -14187,29 +14187,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -14217,74 +14212,54 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 176, @@ -14292,24 +14267,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -14317,59 +14292,59 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -14377,19 +14352,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, @@ -14397,9 +14377,29 @@ "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -14465,19 +14465,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -14485,24 +14490,19 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -14510,69 +14510,64 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, @@ -14580,24 +14575,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, @@ -14605,67 +14605,75 @@ "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://criterions.com/documentation/" + }, { "criterion": { "id": 182, @@ -14681,14 +14689,6 @@ "title": "Application Access - All Data Request" }, "value": "https://criterions.com/fhir-api-documentation/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://criterions.com/documentation/" } ], "acb": "Drummond Group" @@ -14733,19 +14733,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -14753,34 +14743,34 @@ "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -14788,84 +14778,89 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -14873,29 +14868,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -14903,25 +14903,17 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" - }, { "criterion": { "id": 182, @@ -14937,6 +14929,14 @@ "title": "Application Access - All Data Request" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" } ], "acb": "Drummond Group" @@ -14976,49 +14976,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -15026,29 +15026,34 @@ "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 46, @@ -15056,49 +15061,44 @@ "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -15106,14 +15106,9 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 49, @@ -15121,82 +15116,87 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" }, @@ -15210,9 +15210,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" } @@ -15254,9 +15254,9 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 11, @@ -15264,34 +15264,39 @@ "title": "Smoking Status" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 182, @@ -15299,24 +15304,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -15324,49 +15339,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -15374,29 +15379,24 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 37, @@ -15409,99 +15409,99 @@ "title": "Emergency Access" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -15567,44 +15567,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -15612,34 +15587,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -15647,19 +15622,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -15667,9 +15642,34 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -15677,24 +15677,29 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -15702,54 +15707,49 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -15763,17 +15763,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,34 +15815,44 @@ }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -15850,104 +15860,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -15955,49 +15950,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 46, @@ -16005,39 +15995,34 @@ "title": "Transmission to Cancer Registries" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -16045,14 +16030,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -16064,14 +16064,6 @@ }, "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, { "criterion": { "id": 56, @@ -16079,6 +16071,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" } ], "acb": "Drummond Group" @@ -16117,60 +16117,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -16183,34 +16143,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 172, @@ -16218,34 +16198,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, @@ -16253,24 +16228,19 @@ "title": "Care Plan" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -16278,22 +16248,52 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" }, @@ -16307,9 +16307,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" } @@ -16351,24 +16351,24 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -16376,24 +16376,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -16401,69 +16406,49 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 28, @@ -16471,9 +16456,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 170, @@ -16481,34 +16466,54 @@ "title": "Care Plan" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -16516,19 +16521,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 51, @@ -16536,57 +16536,65 @@ "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, { "criterion": { "id": 56, @@ -16602,14 +16610,6 @@ "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -16644,74 +16644,44 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 33, @@ -16719,39 +16689,54 @@ "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -16759,24 +16744,24 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -16784,29 +16769,29 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -16814,72 +16799,87 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16893,9 +16893,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -16932,24 +16932,19 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -16957,44 +16952,59 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -17002,9 +17012,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -17012,24 +17022,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -17037,9 +17062,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 46, @@ -17047,135 +17077,97 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, { "criterion": { "id": 56, @@ -17191,6 +17183,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -17229,25 +17229,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 43, @@ -17255,29 +17245,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 34, @@ -17285,29 +17290,34 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -17315,14 +17325,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -17330,89 +17350,64 @@ "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -17420,24 +17415,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -17503,89 +17503,84 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, @@ -17593,24 +17588,29 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -17618,19 +17618,19 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -17638,24 +17638,29 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 173, @@ -17663,35 +17668,30 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://drsdoc.com/FHIRapi" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://drsdoc.com/FHIRapi" }, @@ -17741,49 +17741,54 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -17791,39 +17796,24 @@ "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -17831,24 +17821,29 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, @@ -17856,92 +17851,97 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, @@ -17955,9 +17955,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" } @@ -17999,104 +17999,79 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18104,29 +18079,34 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 39, @@ -18134,34 +18114,29 @@ "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 174, @@ -18169,17 +18144,42 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.ehnote.com/" }, @@ -18193,9 +18193,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.ehnote.com/" } @@ -18237,9 +18237,9 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 174, @@ -18247,29 +18247,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -18277,59 +18262,44 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -18337,19 +18307,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 178, @@ -18357,70 +18327,92 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -18436,6 +18428,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -18470,54 +18470,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -18525,24 +18505,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18550,115 +18530,135 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18708,79 +18708,79 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -18788,64 +18788,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -18853,85 +18863,67 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ehryourway.com/api" - }, { "criterion": { "id": 56, @@ -18947,6 +18939,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ehryourway.com/api" } ], "acb": "SLI Compliance" @@ -18986,34 +18986,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -19021,9 +18996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -19031,24 +19006,24 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -19056,39 +19031,49 @@ "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -19096,19 +19081,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -19116,39 +19096,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -19156,30 +19131,55 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19224,14 +19224,9 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -19239,49 +19234,64 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -19289,34 +19299,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -19324,94 +19334,84 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -19425,17 +19425,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" } @@ -19472,39 +19472,44 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -19517,99 +19522,109 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -19617,50 +19632,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.modmed.com/public-api-v2/" - }, { "criterion": { "id": 182, @@ -19676,6 +19668,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -19710,44 +19710,39 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -19755,69 +19750,74 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -19825,14 +19825,9 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, @@ -19840,29 +19835,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -19870,55 +19865,60 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19968,14 +19968,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 15, @@ -19983,19 +19983,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -20003,9 +19998,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -20013,34 +20008,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 32, @@ -20048,44 +20038,44 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -20093,30 +20083,40 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, @@ -20166,29 +20166,29 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, @@ -20196,94 +20196,84 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -20291,54 +20281,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -20346,35 +20341,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.elationhealth.com/reference/introduction" - }, { "criterion": { "id": 56, @@ -20390,6 +20382,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.elationhealth.com/reference/introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.elationhealth.com/reference/introduction" } ], "acb": "Drummond Group" @@ -20429,144 +20429,154 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -20574,19 +20584,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -20594,29 +20594,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -20630,17 +20630,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://apitest.enablemyhealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.enablemyhealth.com/" } @@ -20682,19 +20682,24 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -20702,14 +20707,14 @@ "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -20717,14 +20722,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 174, @@ -20732,44 +20747,39 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 172, @@ -20782,49 +20792,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -20832,24 +20837,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -20857,9 +20857,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -20867,24 +20872,14 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, @@ -20892,60 +20887,57 @@ "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.endosoft.com/fhir" - }, { "criterion": { "id": 181, @@ -20954,6 +20946,14 @@ }, "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.endosoft.com/fhir" + }, { "criterion": { "id": 56, @@ -21000,59 +21000,59 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -21060,29 +21060,14 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -21090,9 +21075,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -21100,94 +21085,109 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -21201,17 +21201,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21248,39 +21248,34 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -21293,49 +21288,39 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -21343,54 +21328,59 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -21398,14 +21388,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -21413,29 +21408,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -21449,17 +21449,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21496,19 +21496,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -21521,24 +21521,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 167, @@ -21546,59 +21551,39 @@ "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -21606,39 +21591,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -21646,34 +21631,49 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -21681,9 +21681,9 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -21744,19 +21744,19 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -21764,24 +21764,9 @@ "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -21789,49 +21774,54 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -21839,29 +21829,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -21869,49 +21854,49 @@ "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 12, @@ -21919,35 +21904,50 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -21992,34 +21992,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22027,34 +22032,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, @@ -22062,104 +22062,104 @@ "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -22167,29 +22167,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -22203,17 +22203,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -22250,9 +22250,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 176, @@ -22260,24 +22275,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 14, @@ -22285,14 +22295,29 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -22300,14 +22325,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, @@ -22315,19 +22340,14 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22335,14 +22355,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, @@ -22350,9 +22375,9 @@ "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -22365,39 +22390,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 5, @@ -22405,24 +22400,24 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -22430,30 +22425,35 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22498,24 +22498,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -22523,19 +22508,9 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -22548,84 +22523,84 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -22633,19 +22608,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -22653,19 +22628,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -22673,35 +22653,55 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22746,14 +22746,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -22761,19 +22766,9 @@ "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -22781,19 +22776,24 @@ "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -22801,19 +22801,29 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 3, @@ -22821,64 +22831,69 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -22886,24 +22901,24 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 2, @@ -22911,45 +22926,30 @@ "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22993,55 +22993,75 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -23049,39 +23069,44 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 42, @@ -23089,64 +23114,64 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -23157,47 +23182,22 @@ "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23242,19 +23242,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 36, @@ -23262,74 +23267,69 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -23337,19 +23337,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -23357,14 +23357,14 @@ "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -23372,54 +23372,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -23427,12 +23422,25 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 56, @@ -23448,14 +23456,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -23490,14 +23490,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -23505,39 +23500,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23550,29 +23545,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -23580,79 +23570,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 42, @@ -23660,32 +23650,42 @@ "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23699,9 +23699,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -23738,9 +23738,14 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -23748,64 +23753,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -23813,24 +23813,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 1, @@ -23838,74 +23843,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -23913,19 +23923,9 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -23986,24 +23986,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -24011,19 +23996,24 @@ "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, @@ -24031,29 +24021,29 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -24061,14 +24051,14 @@ "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, @@ -24076,79 +24066,74 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -24156,19 +24141,34 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -24179,17 +24179,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -24233,15 +24233,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, @@ -24254,9 +24294,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -24264,44 +24304,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -24309,9 +24339,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -24319,14 +24354,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -24334,39 +24369,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -24374,64 +24404,34 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -24445,17 +24445,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -24497,54 +24497,59 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -24552,29 +24557,29 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -24582,24 +24587,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -24607,34 +24617,9 @@ "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -24642,24 +24627,39 @@ "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24725,49 +24725,29 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 181, @@ -24775,49 +24755,54 @@ "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -24825,24 +24810,29 @@ "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -24850,14 +24840,29 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -24870,29 +24875,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24958,19 +24958,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, @@ -24978,19 +24978,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, @@ -24998,9 +24993,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -25049,105 +25049,100 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -25160,69 +25155,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, @@ -25230,29 +25230,29 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -25266,17 +25266,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" } @@ -25313,29 +25313,14 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -25343,39 +25328,34 @@ "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -25387,45 +25367,45 @@ "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -25433,34 +25413,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 14, @@ -25468,9 +25458,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -25478,9 +25473,14 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -25488,19 +25488,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -25508,25 +25513,12 @@ "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" - }, { "criterion": { "id": 181, @@ -25542,6 +25534,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" } ], "acb": "SLI Compliance" @@ -25581,24 +25581,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -25606,29 +25601,29 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -25641,115 +25636,120 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -25794,139 +25794,129 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -25934,9 +25924,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -25944,50 +25934,60 @@ "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -26052,49 +26052,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -26102,19 +26082,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -26127,69 +26102,89 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -26197,45 +26192,42 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -26251,6 +26243,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26285,49 +26285,79 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 179, @@ -26335,29 +26365,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -26365,34 +26390,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -26400,79 +26410,69 @@ "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" } ], "apiDocumentation": [ @@ -26538,9 +26538,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 182, @@ -26548,24 +26553,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -26573,69 +26593,74 @@ "title": "End-User Device Encryption" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -26643,34 +26668,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -26678,34 +26693,29 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -26713,32 +26723,30 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 182, @@ -26754,14 +26762,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" @@ -26795,60 +26795,50 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -26856,129 +26846,139 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -26990,14 +26990,6 @@ }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, { "criterion": { "id": 182, @@ -27005,6 +26997,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -27039,59 +27039,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 37, @@ -27099,29 +27084,29 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -27129,39 +27114,39 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -27169,75 +27154,90 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, @@ -27287,34 +27287,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 4, @@ -27322,9 +27312,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -27332,39 +27322,54 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, @@ -27372,9 +27377,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 44, @@ -27382,44 +27392,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -27427,37 +27427,45 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.geesemed.com/api.html" + }, { "criterion": { "id": 182, @@ -27473,14 +27481,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.geesemed.com/api.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.geesemed.com/api.html" } ], "acb": "Drummond Group" @@ -27520,79 +27520,79 @@ }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -27600,59 +27600,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -27660,64 +27655,59 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 28, @@ -27725,39 +27715,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://geniusdoc.com/API.php" }, { "criterion": { @@ -27769,11 +27769,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://geniusdoc.com/API.php" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" } ], "acb": "SLI Compliance" @@ -27813,24 +27813,24 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 165, @@ -27838,29 +27838,39 @@ "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -27868,34 +27878,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -27903,44 +27913,34 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -27948,70 +27948,62 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28027,6 +28019,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28061,9 +28061,9 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -28071,74 +28071,79 @@ "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, @@ -28146,39 +28151,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -28186,34 +28191,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -28221,19 +28211,24 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 44, @@ -28241,14 +28236,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -28309,9 +28309,44 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -28319,14 +28354,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 33, @@ -28334,24 +28364,19 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -28359,24 +28384,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -28384,9 +28409,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -28394,9 +28424,14 @@ "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 9, @@ -28409,39 +28444,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -28449,24 +28459,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -28474,37 +28484,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, @@ -28518,9 +28518,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } @@ -28557,69 +28557,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -28627,24 +28652,14 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -28652,89 +28667,74 @@ "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -28742,9 +28742,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -28756,14 +28756,6 @@ }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28771,6 +28763,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28809,60 +28809,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 168, @@ -28870,14 +28855,24 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -28885,14 +28880,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -28900,39 +28910,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 26, @@ -28940,14 +28945,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -28960,64 +28960,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -29025,32 +29020,45 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.glaceemr.com/documentation" + }, { "criterion": { "id": 56, @@ -29066,14 +29074,6 @@ "title": "Application Access - All Data Request" }, "value": "https://api.glaceemr.com/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.glaceemr.com/documentation" } ], "acb": "Drummond Group" @@ -29113,9 +29113,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -29123,34 +29133,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -29158,9 +29163,19 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -29168,29 +29183,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -29198,29 +29213,34 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 39, @@ -29228,34 +29248,14 @@ "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -29263,34 +29263,34 @@ "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -29350,6 +29350,16 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -29361,14 +29371,19 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -29376,19 +29391,24 @@ "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -29396,54 +29416,54 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -29456,24 +29476,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -29486,54 +29511,29 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -29594,14 +29594,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -29609,9 +29629,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -29619,64 +29644,79 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -29684,19 +29724,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 33, @@ -29704,24 +29734,19 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 3, @@ -29729,64 +29754,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { @@ -29798,11 +29798,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29837,74 +29837,79 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -29912,29 +29917,19 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -29942,79 +29937,84 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -30028,17 +30028,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developers.greenwayhealth.com/developer-platform" } @@ -30080,64 +30080,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -30145,44 +30130,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 46, @@ -30190,74 +30160,84 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 15, @@ -30265,44 +30245,49 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -30310,9 +30295,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 169, @@ -30320,22 +30305,37 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, @@ -30349,9 +30349,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } @@ -30388,34 +30388,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 59, @@ -30423,49 +30433,59 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 180, @@ -30473,14 +30493,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 169, @@ -30488,54 +30513,34 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -30543,84 +30548,79 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -30628,14 +30628,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -30701,24 +30701,34 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -30726,14 +30736,14 @@ "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -30741,44 +30751,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -30786,24 +30781,9 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 178, @@ -30811,44 +30791,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -30856,19 +30836,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 44, @@ -30876,19 +30871,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -30896,20 +30896,12 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" - }, { "criterion": { "id": 182, @@ -30925,6 +30917,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/caretracker-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -30964,29 +30964,29 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -30994,39 +30994,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, @@ -31034,24 +31024,29 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -31059,14 +31054,14 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -31074,72 +31069,85 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://cmpl.aidbox.app/documentation" + }, { "criterion": { "id": 182, @@ -31155,14 +31163,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://cmpl.aidbox.app/documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -31202,75 +31202,95 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 9, "number": "170.315 (a)(9)", @@ -31282,49 +31302,34 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 175, @@ -31332,29 +31337,29 @@ "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 166, @@ -31362,55 +31367,42 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.interopengine.com/2021/open-api-documentation.html" - }, { "criterion": { "id": 181, @@ -31419,6 +31411,14 @@ }, "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.interopengine.com/2021/open-api-documentation.html" + }, { "criterion": { "id": 56, @@ -31465,14 +31465,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -31480,24 +31480,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -31505,29 +31495,9 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -31535,14 +31505,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -31550,24 +31525,34 @@ "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 10, @@ -31575,19 +31560,39 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 5, @@ -31595,34 +31600,44 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -31630,9 +31645,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -31640,24 +31655,14 @@ "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -31665,57 +31670,60 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -31731,14 +31739,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } ], "acb": "SLI Compliance" @@ -31778,24 +31778,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 179, @@ -31803,44 +31803,39 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 29, @@ -31848,9 +31843,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -31858,34 +31858,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 166, @@ -31893,54 +31883,59 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -31948,24 +31943,34 @@ "title": "Electronic Prescribing" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 54, @@ -31973,34 +31978,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32066,24 +32066,29 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 15, @@ -32091,19 +32096,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -32111,49 +32106,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -32161,119 +32141,139 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32338,60 +32338,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 166, @@ -32399,9 +32394,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -32409,39 +32404,54 @@ "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -32449,29 +32459,24 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 177, @@ -32479,14 +32484,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -32494,14 +32494,14 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -32512,9 +32512,9 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, @@ -32528,9 +32528,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } @@ -32572,39 +32572,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 171, @@ -32612,14 +32602,14 @@ "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -32627,44 +32617,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -32672,14 +32652,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -32687,9 +32667,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 181, @@ -32697,30 +32682,37 @@ "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://onc.chntechsolutions.com/home/" - }, { "criterion": { "id": 181, @@ -32736,6 +32728,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://onc.chntechsolutions.com/home/" } ], "acb": "SLI Compliance" @@ -32775,59 +32775,29 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -32835,47 +32805,77 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -32889,9 +32889,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" } @@ -32927,15 +32927,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -32943,14 +32953,9 @@ "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -32958,9 +32963,19 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -32968,9 +32983,9 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -32982,30 +32997,15 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -33013,22 +33013,22 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -33042,9 +33042,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" } @@ -33086,39 +33086,34 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -33126,24 +33121,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -33151,14 +33151,14 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -33166,34 +33166,39 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -33201,54 +33206,49 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -33262,17 +33262,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } @@ -33314,24 +33314,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 5, @@ -33339,39 +33339,14 @@ "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -33379,24 +33354,29 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -33404,49 +33384,49 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 54, @@ -33454,54 +33434,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -33509,19 +33489,39 @@ "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 169, @@ -33530,6 +33530,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.meditab.com/api/" + }, { "criterion": { "id": 182, @@ -33545,14 +33553,6 @@ "title": "Application Access - All Data Request" }, "value": "https://meditab.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.meditab.com/api/" } ], "acb": "Drummond Group" @@ -33592,9 +33592,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -33602,9 +33602,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -33612,20 +33612,20 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -33679,24 +33679,9 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -33704,14 +33689,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -33719,39 +33709,54 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -33759,19 +33764,14 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -33779,40 +33779,40 @@ "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, @@ -33857,9 +33857,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 168, @@ -33867,24 +33872,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -33892,14 +33887,9 @@ "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -33907,34 +33897,34 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 180, @@ -33942,19 +33932,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -33962,47 +33952,65 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 181, @@ -34018,14 +34026,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -34065,29 +34065,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 32, @@ -34100,59 +34105,49 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 12, @@ -34160,19 +34155,24 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -34180,19 +34180,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -34200,24 +34200,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 172, @@ -34225,9 +34220,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -34277,24 +34277,29 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -34302,34 +34307,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -34342,9 +34337,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -34352,19 +34352,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -34372,20 +34362,30 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -34397,49 +34397,49 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -34489,14 +34489,9 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -34504,9 +34499,9 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -34514,45 +34509,50 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" } @@ -34594,59 +34594,49 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -34659,64 +34649,54 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -34724,34 +34704,34 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -34759,19 +34739,39 @@ "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -34832,49 +34832,49 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, @@ -34882,44 +34882,49 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -34927,19 +34932,9 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -34947,59 +34942,64 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -35075,49 +35075,49 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 14, @@ -35125,54 +35125,54 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 177, @@ -35180,14 +35180,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 34, @@ -35195,35 +35190,32 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" - }, { "criterion": { "id": 181, @@ -35239,6 +35231,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" } ], "acb": "SLI Compliance" @@ -35278,55 +35278,40 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -35338,14 +35323,24 @@ "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 53, @@ -35353,14 +35348,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 14, @@ -35368,34 +35358,19 @@ "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -35403,54 +35378,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -35458,29 +35433,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -35488,22 +35468,50 @@ "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.mdrhythm.com/onc-compliance.html" + }, { "criterion": { "id": 56, @@ -35519,14 +35527,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.mdrhythm.com/onc-compliance.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://www.mdrhythm.com/onc-compliance.html" } ], "acb": "Drummond Group" @@ -35566,34 +35566,39 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -35601,44 +35606,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -35646,14 +35671,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, @@ -35661,14 +35681,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, @@ -35676,24 +35691,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -35701,39 +35701,44 @@ "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -35741,30 +35746,17 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" - }, { "criterion": { "id": 182, @@ -35780,6 +35772,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } ], "acb": "Drummond Group" @@ -35819,9 +35819,19 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -35829,19 +35839,14 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -35849,14 +35854,9 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -35864,34 +35864,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -35899,39 +35899,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -35939,19 +35934,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -35959,19 +35949,29 @@ "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -35979,9 +35979,9 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 1, @@ -35989,40 +35989,32 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" - }, { "criterion": { "id": 56, @@ -36031,6 +36023,14 @@ }, "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + }, { "criterion": { "id": 182, @@ -36077,39 +36077,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -36117,9 +36117,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 170, @@ -36131,20 +36131,15 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -36152,109 +36147,109 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -36262,47 +36257,52 @@ "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" }, @@ -36316,9 +36316,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" } @@ -36354,70 +36354,55 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 179, @@ -36425,44 +36410,44 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -36470,125 +36455,140 @@ "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.medent.com/onc/" }, @@ -36638,84 +36638,79 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -36723,97 +36718,102 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.yourcareinteract.com/documentation" }, @@ -36827,9 +36827,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" } @@ -36865,135 +36865,85 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -37001,14 +36951,19 @@ "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -37016,24 +36971,69 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -37099,24 +37099,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 56, @@ -37124,39 +37124,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 3, @@ -37164,79 +37169,79 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -37244,50 +37249,45 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37332,24 +37332,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -37357,74 +37342,54 @@ "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -37432,29 +37397,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -37462,14 +37432,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -37477,34 +37452,59 @@ "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -37570,19 +37570,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -37590,19 +37580,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -37610,44 +37590,29 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, @@ -37655,9 +37620,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -37665,14 +37635,9 @@ "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -37680,24 +37645,19 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -37705,24 +37665,19 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, @@ -37730,17 +37685,62 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37754,9 +37754,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -37793,30 +37793,35 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 54, "number": "170.315 (g)(5)", @@ -37827,60 +37832,55 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -37888,39 +37888,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -37928,60 +37928,60 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38026,19 +38026,29 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -38046,44 +38056,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 174, @@ -38091,34 +38101,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -38126,49 +38136,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -38176,45 +38171,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38258,20 +38258,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 34, @@ -38279,14 +38274,34 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38294,14 +38309,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -38309,19 +38329,19 @@ "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -38329,49 +38349,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -38379,14 +38384,14 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 48, @@ -38394,52 +38399,47 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38453,9 +38453,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38491,65 +38491,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -38557,24 +38527,29 @@ "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 180, @@ -38582,9 +38557,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -38592,34 +38582,34 @@ "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -38627,19 +38617,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -38647,19 +38642,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -38670,17 +38670,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38725,14 +38725,24 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -38740,34 +38750,44 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 26, @@ -38775,19 +38795,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -38795,29 +38815,14 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, @@ -38825,14 +38830,14 @@ "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38840,35 +38845,20 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 51, "number": "170.315 (g)(2)", @@ -38880,32 +38870,42 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38919,9 +38919,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38958,34 +38958,29 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -38993,34 +38988,44 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -39028,29 +39033,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -39058,14 +39063,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -39073,14 +39073,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 52, @@ -39088,19 +39093,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 28, @@ -39108,35 +39113,22 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 181, @@ -39152,6 +39144,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39186,89 +39186,99 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -39276,24 +39286,14 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -39301,24 +39301,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -39326,50 +39326,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39414,19 +39414,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -39434,59 +39424,64 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, @@ -39494,9 +39489,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -39504,9 +39499,9 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -39514,34 +39509,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -39549,14 +39539,14 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -39564,9 +39554,9 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -39574,30 +39564,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, @@ -39613,6 +39605,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39652,14 +39652,9 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 2, @@ -39667,29 +39662,14 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -39697,24 +39677,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -39722,14 +39702,14 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -39737,14 +39717,9 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -39752,49 +39727,69 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -39802,22 +39797,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39831,9 +39831,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39870,24 +39870,19 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -39895,34 +39890,29 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -39930,34 +39920,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -39965,14 +39950,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 9, @@ -39980,9 +39980,9 @@ "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 173, @@ -39990,62 +39990,70 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40061,14 +40069,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40103,94 +40103,104 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -40198,24 +40208,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -40223,49 +40228,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -40273,9 +40273,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -40289,17 +40289,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -40336,9 +40336,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, @@ -40346,14 +40346,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 52, @@ -40361,29 +40371,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -40391,49 +40401,54 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -40441,14 +40456,14 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 51, @@ -40456,34 +40471,19 @@ "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 39, @@ -40491,40 +40491,40 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -40569,44 +40569,49 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -40614,14 +40619,19 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -40629,19 +40639,19 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -40649,9 +40659,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -40659,69 +40674,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 177, @@ -40734,17 +40719,40 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40760,14 +40768,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40802,9 +40802,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -40812,24 +40827,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40837,134 +40847,124 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -40980,17 +40980,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -41035,44 +41035,44 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -41080,9 +41080,24 @@ "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, @@ -41090,44 +41105,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -41135,69 +41145,59 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -41211,17 +41211,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41263,24 +41263,34 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -41288,54 +41298,69 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -41343,34 +41368,34 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 52, @@ -41378,19 +41403,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -41398,65 +41423,32 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 56, @@ -41472,6 +41464,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -41511,29 +41511,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -41541,9 +41521,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -41551,9 +41536,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -41561,69 +41546,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -41631,9 +41621,14 @@ "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 12, @@ -41641,62 +41636,67 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, @@ -41710,9 +41710,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } @@ -41753,50 +41753,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -41804,69 +41789,69 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 21, @@ -41879,9 +41864,9 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -41889,29 +41874,44 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -41919,19 +41919,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -41939,9 +41934,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -41949,9 +41949,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -42012,9 +42012,9 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -42022,9 +42022,14 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -42032,144 +42037,144 @@ "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -42177,22 +42182,17 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.first-insight.com/certifications/" }, @@ -42206,9 +42206,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.first-insight.com/certifications/" } @@ -42250,49 +42250,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 3, @@ -42300,24 +42305,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -42325,34 +42330,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -42360,29 +42345,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -42390,34 +42375,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -42425,19 +42410,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 166, @@ -42445,14 +42420,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -42466,17 +42466,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documents.maximus.care" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documents.maximus.care" } @@ -42518,24 +42518,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 174, @@ -42543,29 +42538,39 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, @@ -42573,89 +42578,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -42663,34 +42668,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -42747,35 +42747,45 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -42783,34 +42793,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -42818,14 +42833,24 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 44, @@ -42833,34 +42858,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 172, @@ -42868,24 +42893,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -42893,59 +42913,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -42959,17 +42959,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } @@ -43011,44 +43011,39 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -43056,59 +43051,69 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -43116,9 +43121,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 166, @@ -43126,44 +43136,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -43171,14 +43181,14 @@ "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -43186,34 +43196,24 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -43279,14 +43279,44 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -43294,14 +43324,9 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 44, @@ -43309,14 +43334,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -43324,9 +43354,19 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -43334,14 +43374,14 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -43354,44 +43394,29 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -43399,9 +43424,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -43409,29 +43439,29 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -43439,34 +43469,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -43474,25 +43479,12 @@ "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" - }, { "criterion": { "id": 182, @@ -43508,6 +43500,14 @@ "title": "Application Access - All Data Request" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } ], "acb": "Drummond Group" @@ -43547,34 +43547,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 5, @@ -43582,24 +43557,19 @@ "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -43607,59 +43577,54 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -43667,9 +43632,9 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -43677,64 +43642,79 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 165, @@ -43742,19 +43722,39 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://medi-ehr.com/public-fhir-api" }, { "criterion": { @@ -43766,11 +43766,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://medi-ehr.com/public-fhir-api" + "value": "http://medi-ehr.com/compliance" } ], "acb": "SLI Compliance" @@ -43810,79 +43810,89 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -43895,49 +43905,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -43950,14 +43955,19 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -43965,19 +43975,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 42, @@ -43985,44 +43995,34 @@ "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -44034,14 +44034,6 @@ }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.medifusion.com/" - }, { "criterion": { "id": 181, @@ -44049,6 +44041,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.medifusion.com/" } ], "acb": "SLI Compliance" @@ -44088,29 +44088,19 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -44118,14 +44108,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -44133,29 +44123,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -44163,59 +44148,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -44233,24 +44193,24 @@ "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 171, @@ -44258,34 +44218,39 @@ "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 179, @@ -44297,10 +44262,45 @@ "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -44366,29 +44366,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -44396,9 +44386,14 @@ "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -44406,19 +44401,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -44426,29 +44411,14 @@ "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 25, @@ -44456,34 +44426,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -44491,24 +44451,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 170, @@ -44516,34 +44481,59 @@ "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -44551,19 +44541,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -44571,17 +44561,35 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + }, { "criterion": { "id": 181, @@ -44597,14 +44605,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], "acb": "SLI Compliance" @@ -44644,24 +44644,14 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -44674,9 +44664,9 @@ "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 34, @@ -44684,39 +44674,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -44724,14 +44709,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 26, @@ -44739,112 +44724,127 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" }, @@ -44858,9 +44858,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } @@ -44906,11 +44906,36 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 171, "number": "170.315 (b)(10)", @@ -44925,31 +44950,6 @@ "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -44999,54 +44999,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -45054,19 +45044,14 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -45074,49 +45059,34 @@ "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -45124,19 +45094,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 26, @@ -45144,19 +45114,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -45164,39 +45144,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -45210,17 +45210,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45257,14 +45257,19 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -45272,29 +45277,34 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -45302,24 +45312,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -45327,19 +45347,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, @@ -45347,24 +45367,29 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -45372,34 +45397,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 4, @@ -45407,62 +45422,47 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -45476,9 +45476,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45519,15 +45519,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -45535,24 +45555,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -45560,64 +45570,64 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -45625,24 +45635,9 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -45650,19 +45645,14 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 1, @@ -45670,19 +45660,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -45696,17 +45696,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://code.cerner.com/apiaccess" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://code.cerner.com/apiaccess" } @@ -45748,49 +45748,24 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -45798,55 +45773,72 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.mphrx.com/api-guide_mphrx/" - }, { "criterion": { "id": 56, @@ -45862,6 +45854,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mphrx.com/api-guide_mphrx/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.mphrx.com/api-guide_mphrx/" } ], "acb": "Drummond Group" @@ -45901,29 +45901,19 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -45931,14 +45921,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -45946,9 +45936,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 5, @@ -45956,24 +45966,19 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -45981,19 +45986,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -46001,19 +45996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -46021,84 +46006,99 @@ "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -46106,9 +46106,9 @@ "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -46122,17 +46122,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.modulemd.com" } @@ -46173,100 +46173,95 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -46274,32 +46269,37 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, @@ -46313,9 +46313,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } @@ -46352,34 +46352,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -46387,29 +46397,24 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -46417,24 +46422,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -46442,37 +46442,45 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + }, { "criterion": { "id": 56, @@ -46488,14 +46496,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], "acb": "SLI Compliance" @@ -46535,59 +46535,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -46600,9 +46580,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -46610,35 +46605,32 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" - }, { "criterion": { "id": 56, @@ -46654,6 +46646,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.navigatingcancer.com/requirements-incentives/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" @@ -46693,9 +46693,9 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -46703,24 +46703,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 14, @@ -46728,24 +46718,14 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 177, @@ -46753,9 +46733,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -46763,29 +46743,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -46793,39 +46753,39 @@ "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -46833,14 +46793,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 9, @@ -46848,14 +46828,39 @@ "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -46863,40 +46868,35 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, @@ -46941,14 +46941,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 29, @@ -46956,44 +46951,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, @@ -47001,14 +46981,19 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -47016,14 +47001,29 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 41, @@ -47031,19 +47031,19 @@ "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -47051,14 +47051,14 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 52, @@ -47066,34 +47066,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 54, @@ -47101,72 +47101,80 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + }, { "criterion": { "id": 182, @@ -47182,14 +47190,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis-integration.nhsinc.com/index.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -47229,94 +47229,99 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -47324,24 +47329,19 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 175, @@ -47349,119 +47349,119 @@ "title": "Auditing Actions on Health Information" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -47522,49 +47522,49 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -47572,79 +47572,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -47652,69 +47652,64 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 175, @@ -47722,47 +47717,52 @@ "title": "Auditing Actions on Health Information" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, @@ -47776,9 +47776,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" } @@ -47815,44 +47815,49 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -47860,64 +47865,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 167, @@ -47925,24 +47920,9 @@ "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -47950,39 +47930,39 @@ "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 35, @@ -47990,80 +47970,100 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48113,99 +48113,89 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -48213,34 +48203,34 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -48248,39 +48238,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -48288,37 +48278,47 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48332,9 +48332,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" } @@ -48376,44 +48376,34 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -48421,84 +48411,79 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -48506,24 +48491,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -48531,27 +48511,47 @@ "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48565,9 +48565,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48604,34 +48604,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -48639,94 +48644,69 @@ "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 26, @@ -48734,14 +48714,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -48754,47 +48749,52 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48808,9 +48808,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48851,130 +48851,125 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -48982,39 +48977,29 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -49022,9 +49007,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -49032,22 +49022,40 @@ "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + }, { "criterion": { "id": 182, @@ -49063,14 +49071,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], "acb": "Drummond Group" @@ -49110,29 +49110,44 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 59, @@ -49140,24 +49155,29 @@ "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -49165,54 +49185,54 @@ "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -49220,9 +49240,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 3, @@ -49230,85 +49250,57 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.novomedici.com/meaningful-use/" - }, { "criterion": { "id": 181, @@ -49324,6 +49316,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.novomedici.com/api-documents/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.novomedici.com/meaningful-use/" } ], "acb": "SLI Compliance" @@ -49363,19 +49363,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, @@ -49383,24 +49373,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -49408,74 +49388,89 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -49483,14 +49478,29 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -49503,14 +49513,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -49518,19 +49528,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 49, @@ -49538,19 +49538,19 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ @@ -49611,19 +49611,14 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -49631,14 +49626,14 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -49646,14 +49641,9 @@ "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -49661,24 +49651,39 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 172, @@ -49686,9 +49691,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 171, @@ -49696,125 +49711,110 @@ "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49863,15 +49863,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -49879,19 +49889,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -49899,64 +49914,64 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -49964,9 +49979,14 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -49974,39 +49994,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" } ], "apiDocumentation": [ @@ -50056,89 +50056,84 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -50146,24 +50141,29 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -50171,77 +50171,85 @@ "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.isalushealthcare.com/" + }, { "criterion": { "id": 181, @@ -50257,14 +50265,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -50304,19 +50304,19 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 54, @@ -50324,24 +50324,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -50349,34 +50344,39 @@ "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, @@ -50384,14 +50384,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -50399,54 +50404,64 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -50458,35 +50473,25 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 172, @@ -50494,19 +50499,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -50514,30 +50509,27 @@ "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.omnimd.com/open-api/" - }, { "criterion": { "id": 181, @@ -50553,6 +50545,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirregistration.omnimd.com/#/specification" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -50587,54 +50587,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -50642,24 +50657,29 @@ "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 46, @@ -50667,44 +50687,39 @@ "title": "Transmission to Cancer Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 181, @@ -50712,14 +50727,14 @@ "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -50727,79 +50742,64 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -50807,20 +50807,12 @@ "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirregistration.omnimd.com/#/specification" - }, { "criterion": { "id": 56, @@ -50836,6 +50828,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.omnimd.com/open-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" } ], "acb": "SLI Compliance" @@ -50875,19 +50875,14 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -50895,64 +50890,54 @@ "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -50960,9 +50945,14 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -50970,14 +50960,9 @@ "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -50985,54 +50970,69 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -51040,29 +51040,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -51076,17 +51076,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://flatiron.force.com/FHIR/s/" } @@ -51128,9 +51128,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -51138,19 +51148,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -51163,9 +51168,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -51173,29 +51178,24 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -51208,44 +51208,39 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -51253,9 +51248,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -51320,65 +51320,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 37, @@ -51386,9 +51356,14 @@ "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -51401,44 +51376,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -51446,24 +51421,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -51471,54 +51451,74 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -51532,17 +51532,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51584,54 +51584,64 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -51639,19 +51649,14 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -51659,24 +51664,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -51684,9 +51689,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -51694,24 +51704,19 @@ "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 9, @@ -51719,29 +51724,24 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -51807,29 +51807,59 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -51837,54 +51867,14 @@ "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -51897,14 +51887,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -51912,59 +51912,64 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -51972,29 +51977,24 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -52060,44 +52060,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -52105,54 +52105,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -52165,39 +52165,29 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -52210,14 +52200,9 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -52225,50 +52210,57 @@ "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.qrshs.info/" - }, { "criterion": { "id": 181, @@ -52284,6 +52276,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.qrshs.info/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.qrshs.info/" } ], "acb": "Drummond Group" @@ -52323,29 +52323,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -52353,65 +52358,45 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 174, "number": "170.315 (d)(3)", @@ -52423,24 +52408,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -52448,102 +52443,107 @@ "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.pcesystems.com/g10APIInfo.html" }, @@ -52557,9 +52557,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.pcesystems.com/g10APIInfo.html" } @@ -52601,39 +52601,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 166, @@ -52641,24 +52636,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -52666,39 +52661,44 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -52706,64 +52706,64 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -52771,14 +52771,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -52786,25 +52791,12 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.pcisgold.com" - }, { "criterion": { "id": 181, @@ -52820,6 +52812,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://fhir.pcisgold.com" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pcisgold.com" } ], "acb": "Drummond Group" @@ -52859,34 +52859,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -52894,9 +52889,9 @@ "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -52904,24 +52899,29 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -52934,19 +52934,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 21, @@ -52954,69 +52954,64 @@ "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 180, @@ -53024,19 +53019,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -53044,9 +53049,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -53054,17 +53059,20 @@ "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.mdsuite.com/api/help/index" + }, { "criterion": { "id": 181, @@ -53080,14 +53088,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.mdsuite.com/api/help" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.mdsuite.com/api/help/index" } ], "acb": "Drummond Group" @@ -53127,14 +53127,14 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -53146,30 +53146,30 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -53221,25 +53221,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -53247,9 +53237,14 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -53257,9 +53252,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 29, @@ -53267,25 +53267,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" } @@ -53327,30 +53327,55 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 35, "number": "170.315 (d)(7)", @@ -53362,29 +53387,34 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, @@ -53392,50 +53422,20 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 29, "number": "170.315 (d)(1)", @@ -53447,25 +53447,17 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.thesnfist.com/cures-update" - }, { "criterion": { "id": 181, @@ -53481,6 +53473,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.thesnfist.com/cures-update" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.thesnfist.com/cures-update" } ], "acb": "Drummond Group" @@ -53519,60 +53519,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -53580,24 +53565,19 @@ "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -53605,59 +53585,59 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -53665,24 +53645,29 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -53690,9 +53675,9 @@ "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -53700,30 +53685,45 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53768,29 +53768,29 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -53802,25 +53802,25 @@ "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -53828,14 +53828,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -53843,14 +53843,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -53858,29 +53853,29 @@ "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -53888,29 +53883,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, @@ -53918,24 +53928,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -53943,27 +53948,22 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53977,9 +53977,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54015,6 +54015,11 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 52, "number": "170.315 (g)(3)", @@ -54026,54 +54031,54 @@ "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 39, @@ -54081,39 +54086,34 @@ "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 14, @@ -54121,9 +54121,19 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -54131,19 +54141,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -54151,24 +54156,24 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, @@ -54176,34 +54181,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -54264,19 +54264,9 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -54284,14 +54274,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 21, @@ -54304,39 +54289,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -54344,24 +54329,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -54369,14 +54354,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -54384,29 +54369,54 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -54414,9 +54424,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -54424,9 +54439,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -54434,37 +54449,22 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -54478,9 +54478,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54517,19 +54517,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -54537,39 +54542,44 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -54577,69 +54587,74 @@ "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -54647,80 +54662,57 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 181, @@ -54736,6 +54728,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -54770,74 +54770,74 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -54845,14 +54845,19 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -54860,19 +54865,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -54880,9 +54890,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -54890,24 +54900,14 @@ "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 59, @@ -54915,44 +54915,39 @@ "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -54960,25 +54955,22 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 182, @@ -54994,6 +54986,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -55028,79 +55028,84 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 179, @@ -55108,14 +55113,9 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -55123,9 +55123,9 @@ "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -55133,84 +55133,89 @@ "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -55218,50 +55223,37 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, @@ -55277,6 +55269,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55311,29 +55311,44 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -55341,9 +55356,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 25, @@ -55351,84 +55371,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -55436,14 +55421,19 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 51, @@ -55451,64 +55441,69 @@ "title": "Automated Measure Calculation" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 2, @@ -55516,32 +55511,37 @@ "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, @@ -55555,9 +55555,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" } @@ -55594,44 +55594,19 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 174, @@ -55639,24 +55614,24 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 15, @@ -55669,19 +55644,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -55689,44 +55664,49 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 25, @@ -55734,9 +55714,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -55744,64 +55724,74 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -55809,17 +55799,35 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" + }, { "criterion": { "id": 182, @@ -55835,14 +55843,6 @@ "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55877,29 +55877,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -55907,24 +55912,34 @@ "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -55932,14 +55947,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 51, @@ -55947,69 +55957,39 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 29, @@ -56017,14 +55997,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -56032,39 +56017,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 45, @@ -56072,29 +56052,49 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -56105,17 +56105,17 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56160,227 +56160,227 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56394,9 +56394,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -56433,29 +56433,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -56463,49 +56458,49 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -56513,24 +56508,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 171, @@ -56538,59 +56543,69 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -56598,54 +56613,39 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -56706,39 +56706,39 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 178, @@ -56746,49 +56746,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -56796,129 +56796,129 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -56932,17 +56932,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" } @@ -56979,24 +56979,14 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -57004,39 +56994,44 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 49, @@ -57044,59 +57039,44 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -57104,24 +57084,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -57129,69 +57109,89 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -57251,55 +57251,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, @@ -57307,9 +57297,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -57317,34 +57312,39 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -57401,35 +57401,20 @@ "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -57437,9 +57422,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -57447,9 +57437,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -57457,19 +57462,19 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -57477,30 +57482,25 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" } @@ -57537,24 +57537,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -57566,30 +57556,20 @@ "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 50, @@ -57597,9 +57577,9 @@ "title": "Automated Numerator Recording" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -57607,14 +57587,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -57627,25 +57607,45 @@ "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -57687,9 +57687,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -57697,24 +57697,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -57722,29 +57722,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -57752,59 +57752,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -57812,19 +57807,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -57832,14 +57832,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -57847,42 +57842,55 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" + }, { "criterion": { "id": 56, @@ -57898,14 +57906,6 @@ "title": "Application Access - All Data Request" }, "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -57950,9 +57950,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 59, @@ -57960,24 +57965,24 @@ "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 43, @@ -57985,24 +57990,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -58010,29 +58005,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 46, @@ -58040,34 +58030,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, @@ -58075,54 +58060,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 26, @@ -58130,27 +58120,45 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + }, { "criterion": { "id": 181, @@ -58166,14 +58174,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" } ], "acb": "SLI Compliance" @@ -58213,44 +58213,49 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -58258,19 +58263,9 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -58278,9 +58273,9 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -58288,24 +58283,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -58313,14 +58298,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -58328,40 +58318,50 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, @@ -58411,69 +58411,54 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -58481,30 +58466,37 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.willowgladetechnologies.com/requirements" - }, { "criterion": { "id": 182, @@ -58520,6 +58512,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.willowgladetechnologies.com/requirements" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.willowgladetechnologies.com/requirements" } ], "acb": "Leidos" @@ -58559,29 +58559,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -58589,49 +58594,49 @@ "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 36, @@ -58639,24 +58644,29 @@ "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -58664,19 +58674,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 49, @@ -58684,9 +58684,14 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 48, @@ -58694,24 +58699,14 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -58719,49 +58714,54 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -58775,17 +58775,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mraemr.com:47102/api/help_document.asp" } @@ -58827,14 +58827,39 @@ }, "criteriaMet": [ { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -58842,9 +58867,14 @@ "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 6, @@ -58852,54 +58882,39 @@ "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 180, @@ -58907,9 +58922,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 172, @@ -58917,9 +58942,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -58927,49 +58952,54 @@ "title": "Trusted Connection" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -58977,69 +59007,34 @@ "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 44, @@ -59047,24 +59042,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -59078,17 +59078,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://mraemr.com:47102/api/help_document.asp" } @@ -59130,34 +59130,44 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 25, @@ -59165,24 +59175,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -59190,14 +59210,14 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -59205,19 +59225,9 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 1, @@ -59230,29 +59240,29 @@ "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -59265,80 +59275,62 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, @@ -59354,6 +59346,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59388,19 +59388,24 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 25, @@ -59408,19 +59413,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -59428,14 +59448,19 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -59443,39 +59468,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -59483,14 +59503,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -59498,24 +59518,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -59523,24 +59553,19 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -59548,42 +59573,25 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59599,14 +59607,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59641,9 +59641,14 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 59, @@ -59651,44 +59656,29 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, @@ -59696,54 +59686,49 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -59756,29 +59741,49 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 37, @@ -59786,57 +59791,60 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59852,14 +59860,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59899,24 +59899,9 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 182, @@ -59924,24 +59909,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, @@ -59949,59 +59929,79 @@ "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 32, @@ -60014,19 +60014,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -60034,19 +60034,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -60054,27 +60054,35 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -60090,14 +60098,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } ], "acb": "Drummond Group" @@ -60137,69 +60137,69 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -60207,124 +60207,124 @@ "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -60336,14 +60336,6 @@ }, "value": "https://cal-med.com/onc.html" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://cal-med.com/onc.html" - }, { "criterion": { "id": 56, @@ -60351,6 +60343,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://cal-med.com/Calmed_API_Document.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cal-med.com/onc.html" } ], "acb": "Drummond Group" @@ -60390,19 +60390,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -60410,29 +60410,29 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 6, @@ -60440,39 +60440,34 @@ "title": "Problem List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -60480,34 +60475,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 44, @@ -60515,39 +60510,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -60555,9 +60550,9 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 172, @@ -60565,9 +60560,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 8, @@ -60575,29 +60580,29 @@ "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 35, @@ -60605,35 +60610,22 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" - }, { "criterion": { "id": 182, @@ -60642,6 +60634,14 @@ }, "value": "https://www.practicefusion.com/fhir/api-specifications/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.practicefusion.com/pds-api/developer-guide/" + }, { "criterion": { "id": 56, @@ -60688,104 +60688,99 @@ }, "criteriaMet": [ { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -60793,135 +60788,132 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" - }, { "criterion": { "id": 182, @@ -60937,6 +60929,14 @@ "title": "Application Access - All Data Request" }, "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" } ], "acb": "Drummond Group" @@ -60976,149 +60976,144 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -61126,47 +61121,52 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, @@ -61180,9 +61180,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" } @@ -61224,14 +61224,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -61239,44 +61244,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -61284,19 +61289,24 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -61304,50 +61314,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 177, "number": "170.315 (d)(13)", @@ -61359,39 +61344,54 @@ "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -61441,39 +61441,44 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -61481,9 +61486,14 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -61491,39 +61501,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -61531,110 +61541,92 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, { "criterion": { "id": 181, @@ -61650,6 +61642,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/pulse-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -61684,19 +61684,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -61704,9 +61724,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, @@ -61714,99 +61734,84 @@ "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 21, @@ -61814,29 +61819,34 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 39, @@ -61844,24 +61854,14 @@ "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -61926,35 +61926,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -61967,24 +61997,19 @@ "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -61992,19 +62017,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -62012,34 +62042,14 @@ "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62047,29 +62057,19 @@ "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -62140,14 +62140,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -62155,49 +62155,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 32, @@ -62205,14 +62200,9 @@ "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -62220,64 +62210,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -62285,24 +62270,29 @@ "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -62310,24 +62300,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -62341,17 +62341,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.qsmartcare.com/api-documentation.html" } @@ -62393,40 +62393,70 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 28, "number": "170.315 (c)(4)", @@ -62438,9 +62468,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 169, @@ -62448,69 +62478,44 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -62518,39 +62523,39 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -62558,9 +62563,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 36, @@ -62568,29 +62573,34 @@ "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, @@ -62598,9 +62608,14 @@ "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 14, @@ -62608,32 +62623,25 @@ "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.myqone.com" + }, { "criterion": { "id": 181, @@ -62649,14 +62657,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.myqone.com" } ], "acb": "SLI Compliance" @@ -62696,29 +62696,24 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -62726,14 +62721,34 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -62741,74 +62756,74 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62816,14 +62831,9 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, @@ -62831,64 +62841,54 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" }, { "criterion": { @@ -62900,11 +62900,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" } ], "acb": "Drummond Group" @@ -62944,9 +62944,24 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -62954,49 +62969,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -63004,109 +63019,89 @@ "title": "Clinical Decision Support" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -63114,24 +63109,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, @@ -63139,40 +63129,50 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, @@ -63222,59 +63222,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -63282,54 +63272,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -63337,9 +63342,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -63347,19 +63357,19 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -63367,62 +63377,52 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, @@ -63436,9 +63436,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } @@ -63480,39 +63480,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 26, @@ -63520,39 +63530,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -63560,39 +63550,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -63600,24 +63585,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 177, @@ -63625,44 +63605,54 @@ "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -63670,32 +63660,50 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + }, { "criterion": { "id": 56, @@ -63711,14 +63719,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.ihs.gov/cis/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" } ], "acb": "SLI Compliance" @@ -63758,119 +63758,119 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 165, @@ -63878,44 +63878,49 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -63926,11 +63931,6 @@ "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -63942,14 +63942,6 @@ }, "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -63957,6 +63949,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -63995,45 +63995,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -64041,34 +64011,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -64076,9 +64046,24 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 32, @@ -64086,9 +64071,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, @@ -64096,14 +64081,9 @@ "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 3, @@ -64111,29 +64091,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 42, @@ -64141,9 +64106,9 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -64151,9 +64116,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -64161,28 +64126,47 @@ "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - } - ], - "apiDocumentation": [ + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, @@ -64190,6 +64174,22 @@ "title": "Application Access - Patient Selection" }, "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -64229,124 +64229,124 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, @@ -64354,54 +64354,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -64412,6 +64407,11 @@ "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -64477,94 +64477,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 175, @@ -64572,64 +64572,69 @@ "title": "Auditing Actions on Health Information" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -64637,24 +64642,19 @@ "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 166, @@ -64662,24 +64662,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -64745,29 +64745,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 182, @@ -64775,14 +64770,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -64790,104 +64795,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 32, @@ -64895,44 +64895,44 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 180, @@ -64940,35 +64940,27 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" - }, { "criterion": { "id": 181, @@ -64977,6 +64969,14 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, { "criterion": { "id": 182, @@ -65018,135 +65018,125 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -65158,79 +65148,89 @@ "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -65242,14 +65242,6 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -65257,6 +65249,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -65296,9 +65296,19 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -65311,34 +65321,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -65391,39 +65391,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -65431,30 +65436,25 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" } @@ -65496,34 +65496,54 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, @@ -65531,34 +65551,44 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -65566,39 +65596,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 26, @@ -65606,9 +65641,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -65616,9 +65651,9 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 176, @@ -65631,39 +65666,14 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 44, @@ -65671,32 +65681,22 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.cerner.com/soarian/overview/" }, @@ -65710,9 +65710,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.cerner.com/soarian/overview/" } @@ -65754,34 +65754,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -65789,9 +65789,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -65799,34 +65804,39 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -65834,124 +65844,114 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 39, @@ -65962,17 +65962,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://solidpractice.com/cost-limitation.php" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://solidpractice.com/cost-limitation.php" }, @@ -66022,24 +66022,39 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -66047,9 +66062,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -66062,59 +66097,24 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -66128,17 +66128,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-docs.practicegateway.net" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-docs.practicegateway.net" } @@ -66180,49 +66180,54 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -66230,94 +66235,84 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -66325,37 +66320,42 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, @@ -66369,9 +66369,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" } @@ -66412,15 +66412,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 167, @@ -66428,9 +66448,9 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -66438,44 +66458,54 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -66483,24 +66513,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -66508,77 +66543,50 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" + }, { "criterion": { "id": 181, @@ -66594,14 +66602,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" } ], "acb": "SLI Compliance" @@ -66641,39 +66641,44 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -66681,14 +66686,9 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -66696,79 +66696,84 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -66776,75 +66781,62 @@ "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" - }, { "criterion": { "id": 56, @@ -66860,6 +66852,14 @@ "title": "Application Access - All Data Request" }, "value": "https://patientportal.streamlinemd.com/FHIRAPI" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patientportal.streamlinemd.com/FHIRAPI" } ], "acb": "Drummond Group" @@ -66899,59 +66899,64 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -66959,19 +66964,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 179, @@ -66979,19 +66984,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -66999,14 +67004,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, @@ -67014,14 +67019,9 @@ "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, @@ -67029,29 +67029,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -67059,14 +67059,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, @@ -67074,24 +67069,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 26, @@ -67099,25 +67084,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + } + ], + "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.systemedx.com/API/APIIntro.html" }, @@ -67128,6 +67120,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.systemedx.com/API/APIIntro.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.systemedx.com/API/APIIntro.html" } ], "acb": "Drummond Group" @@ -67167,34 +67167,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 4, @@ -67202,29 +67202,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -67232,19 +67222,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -67252,34 +67232,24 @@ "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -67287,29 +67257,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -67322,19 +67297,39 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -67342,12 +67337,25 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://wiki.traknetsolutions.com/traknet-open-api" + }, { "criterion": { "id": 181, @@ -67363,14 +67371,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://wiki.traknetsolutions.com/traknet-open-api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" } ], "acb": "Drummond Group" @@ -67410,64 +67410,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -67475,14 +67465,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 10, @@ -67490,105 +67485,102 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, { "criterion": { "id": 181, @@ -67604,6 +67596,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67643,24 +67643,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 167, @@ -67668,29 +67673,24 @@ "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 32, @@ -67698,74 +67698,74 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -67773,47 +67773,55 @@ "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.kareo.com/macra-mips" + }, { "criterion": { "id": 181, @@ -67829,14 +67837,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.kareo.com/macra-mips" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.kareo.com/macra-mips" } ], "acb": "Drummond Group" @@ -67876,34 +67876,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -67911,14 +67901,14 @@ "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -67926,29 +67916,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -67956,24 +67931,24 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 12, @@ -67981,14 +67956,19 @@ "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -67996,9 +67976,24 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -68006,40 +68001,45 @@ "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://devportal.techcareehr.com/Terms" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://devportal.techcareehr.com/Terms" }, @@ -68089,39 +68089,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -68129,19 +68124,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 36, @@ -68149,29 +68159,24 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 34, @@ -68179,34 +68184,49 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -68214,19 +68234,19 @@ "title": "Audit Report(s)" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 175, @@ -68234,102 +68254,82 @@ "title": "Auditing Actions on Health Information" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://tenzing.docs.apiary.io/#" }, @@ -68343,9 +68343,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://tenzing.docs.apiary.io/#" } @@ -68387,19 +68387,9 @@ }, "criteriaMet": [ { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 170, @@ -68407,24 +68397,19 @@ "title": "Care Plan" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -68432,24 +68417,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 168, @@ -68457,39 +68452,44 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 2, @@ -68497,64 +68497,59 @@ "title": "CPOE - Laboratory" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -68562,49 +68557,54 @@ "title": "Emergency Access" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -68612,65 +68612,57 @@ "title": "End-User Device Encryption" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 182, @@ -68679,6 +68671,14 @@ }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 181, @@ -68725,40 +68725,55 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 35, "number": "170.315 (d)(7)", @@ -68770,24 +68785,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -68795,9 +68795,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -68847,19 +68847,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -68867,84 +68867,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -68952,9 +68942,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -68962,45 +68952,47 @@ "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" - }, { "criterion": { "id": 182, @@ -69016,6 +69008,14 @@ "title": "Application Access - All Data Request" }, "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], "acb": "Drummond Group" @@ -69055,14 +69055,14 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -69070,89 +69070,84 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -69160,97 +69155,110 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.interopengine.com/2017/open-api-documentation.html" + }, { "criterion": { "id": 181, @@ -69266,14 +69274,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.interopengine.com/2017/open-api-documentation.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -69313,39 +69313,44 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 180, @@ -69353,24 +69358,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -69378,74 +69368,79 @@ "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 33, @@ -69453,29 +69448,29 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -69483,24 +69478,29 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -69566,29 +69566,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -69596,44 +69591,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 10, @@ -69641,14 +69631,14 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -69656,64 +69646,79 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 6, @@ -69721,55 +69726,50 @@ "title": "Problem List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, @@ -69819,64 +69819,79 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -69884,25 +69899,45 @@ "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -69914,29 +69949,24 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 42, @@ -69944,82 +69974,52 @@ "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - } - ], - "apiDocumentation": [ + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -70028,14 +70028,6 @@ }, "value": "https://allegiancemd.com/developer-guide-api-help/" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://allegiancemd.com/developer-guide-api-help/" - }, { "criterion": { "id": 182, @@ -70043,6 +70035,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://allegiancemd.com/fhir-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://allegiancemd.com/developer-guide-api-help/" } ], "acb": "SLI Compliance" @@ -70082,9 +70082,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 34, @@ -70092,9 +70092,19 @@ "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 44, @@ -70102,44 +70112,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -70147,34 +70152,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 4, @@ -70182,79 +70182,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 37, @@ -70262,14 +70267,19 @@ "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 167, @@ -70277,50 +70287,32 @@ "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 182, @@ -70336,6 +70328,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70370,49 +70370,29 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 174, @@ -70420,29 +70400,29 @@ "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -70450,24 +70430,34 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -70475,14 +70465,19 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 21, @@ -70490,19 +70485,19 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 25, @@ -70510,105 +70505,102 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 56, @@ -70624,6 +70616,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70658,19 +70658,24 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -70678,24 +70683,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -70703,24 +70708,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 14, @@ -70728,14 +70718,14 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 168, @@ -70743,49 +70733,29 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 37, @@ -70793,39 +70763,69 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -70833,59 +70833,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -70946,39 +70946,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -70986,24 +70981,9 @@ "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 179, @@ -71011,29 +70991,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 59, @@ -71041,69 +71016,64 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 182, @@ -71111,69 +71081,99 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -71239,9 +71239,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 174, @@ -71249,49 +71254,54 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -71299,14 +71309,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -71314,94 +71319,84 @@ "title": "Quality Management System" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 49, @@ -71409,75 +71404,72 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" - }, { "criterion": { "id": 182, @@ -71493,6 +71485,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -71532,49 +71532,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -71582,114 +71577,119 @@ "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -71755,99 +71755,104 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -71855,9 +71860,14 @@ "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -71865,19 +71875,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -71885,82 +71890,77 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -71974,9 +71974,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72013,14 +72013,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -72028,39 +72028,39 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, @@ -72068,24 +72068,39 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -72093,24 +72108,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -72118,24 +72128,19 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -72148,44 +72153,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -72193,27 +72198,22 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -72227,9 +72227,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72271,54 +72271,54 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -72326,34 +72326,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -72361,9 +72341,9 @@ "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 2, @@ -72371,69 +72351,69 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 5, @@ -72441,9 +72421,19 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -72456,19 +72446,19 @@ "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -72476,45 +72466,55 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, @@ -72563,80 +72563,70 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -72644,9 +72634,14 @@ "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -72654,19 +72649,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -72674,24 +72679,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 170, @@ -72699,69 +72704,49 @@ "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -72769,40 +72754,55 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, @@ -72852,49 +72852,49 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -72902,49 +72902,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, @@ -72952,19 +72952,14 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -72972,9 +72967,9 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -72982,25 +72977,30 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, @@ -73050,9 +73050,9 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -73060,59 +73060,59 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -73120,34 +73120,34 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -73155,14 +73155,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 176, @@ -73170,42 +73170,50 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://zoobooksystems.com/api-documentation/" + }, { "criterion": { "id": 56, @@ -73221,14 +73229,6 @@ "title": "Application Access - All Data Request" }, "value": "https://zoobooksystems.com/api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://zoobooksystems.com/api-documentation/" } ], "acb": "Drummond Group" @@ -73267,65 +73267,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -73333,64 +73308,59 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 51, @@ -73398,9 +73368,9 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 34, @@ -73408,14 +73378,19 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 179, @@ -73428,34 +73403,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 178, @@ -73463,9 +73428,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 56, @@ -73473,32 +73438,67 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -73512,9 +73512,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -73551,49 +73551,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -73601,54 +73601,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -73656,39 +73656,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -73696,44 +73686,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -73741,39 +73726,54 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -73834,24 +73834,19 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -73859,24 +73854,29 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -73889,9 +73889,44 @@ "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -73899,9 +73934,19 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 15, @@ -73909,39 +73954,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -73949,84 +73984,44 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, @@ -74034,12 +74029,25 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 181, @@ -74055,14 +74063,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74097,99 +74097,94 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -74197,9 +74192,14 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -74207,110 +74207,102 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 56, @@ -74326,6 +74318,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74365,19 +74365,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -74385,202 +74385,202 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74594,9 +74594,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" } @@ -74633,74 +74633,79 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -74708,24 +74713,34 @@ "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 179, @@ -74738,34 +74753,44 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -74773,95 +74798,70 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74906,44 +74906,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -74951,19 +74951,14 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -74971,9 +74966,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -74981,24 +74981,19 @@ "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -75006,54 +75001,64 @@ "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 166, @@ -75061,19 +75066,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, @@ -75081,14 +75076,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 165, @@ -75096,9 +75091,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -75106,22 +75106,30 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75137,14 +75145,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -75179,29 +75179,29 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 42, @@ -75209,24 +75209,39 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -75239,44 +75254,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 59, @@ -75284,54 +75294,54 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -75339,39 +75349,34 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 182, @@ -75379,27 +75384,22 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75413,9 +75413,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" } @@ -75457,139 +75457,129 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -75597,9 +75587,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -75607,54 +75602,59 @@ "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -75720,84 +75720,79 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -75805,64 +75800,69 @@ "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 6, @@ -75870,9 +75870,9 @@ "title": "Problem List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 43, @@ -75880,49 +75880,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 2, @@ -75930,25 +75925,22 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 181, @@ -75964,6 +75956,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" } ], "acb": "SLI Compliance" @@ -76002,25 +76002,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -76028,69 +76043,69 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 39, @@ -76098,19 +76113,9 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -76118,29 +76123,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -76148,84 +76143,89 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -76290,65 +76290,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -76356,14 +76336,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -76371,39 +76351,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 166, @@ -76411,64 +76401,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -76476,19 +76466,19 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -76496,25 +76486,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhir.eclinicalworks.com" - }, { "criterion": { "id": 56, @@ -76530,6 +76522,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" @@ -76564,54 +76564,74 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 37, @@ -76619,14 +76639,29 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 44, @@ -76634,54 +76669,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -76693,98 +76728,63 @@ "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com/" }, @@ -76798,9 +76798,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com/" } @@ -76837,24 +76837,24 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -76862,15 +76862,55 @@ "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 15, "number": "170.315 (a)(15)", @@ -76886,80 +76926,45 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 2, @@ -76967,9 +76972,9 @@ "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -76977,29 +76982,29 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, @@ -77007,14 +77012,9 @@ "title": "Accounting of Disclosures" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, @@ -77022,14 +77022,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 53, @@ -77037,35 +77042,30 @@ "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com" }, @@ -77114,65 +77114,75 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -77180,19 +77190,19 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -77200,14 +77210,9 @@ "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -77215,19 +77220,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -77235,32 +77240,35 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" + }, { "criterion": { "id": 181, @@ -77276,14 +77284,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.edermehr.com/ederm-onc-certified" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77323,54 +77323,64 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -77378,54 +77388,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -77433,34 +77443,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -77468,54 +77478,44 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77581,69 +77581,74 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -77651,19 +77656,29 @@ "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -77671,84 +77686,84 @@ "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -77756,39 +77771,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77854,19 +77854,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -77874,24 +77869,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -77899,9 +77894,14 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -77909,29 +77909,29 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -77944,29 +77944,29 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -77974,32 +77974,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, @@ -78013,9 +78013,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } @@ -78057,64 +78057,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -78122,34 +78117,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 14, @@ -78157,24 +78152,29 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 12, @@ -78182,9 +78182,19 @@ "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 44, @@ -78192,69 +78202,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -78266,14 +78266,6 @@ }, "value": "https://dexter-solutions.com/certification" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78281,6 +78273,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://interopengine.com/2017/open-api-documentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78315,14 +78315,9 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -78330,104 +78325,104 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 14, @@ -78435,34 +78430,34 @@ "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 5, @@ -78470,60 +78465,57 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78539,6 +78531,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dexter-solutions.com/certification" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78574,68 +78574,63 @@ "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, + "name": "Active" + }, + "criteriaMet": [ { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -78643,29 +78638,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -78731,69 +78731,54 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -78801,24 +78786,24 @@ "title": "Family Health History" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -78826,39 +78811,39 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -78866,44 +78851,49 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 11, @@ -78911,35 +78901,55 @@ "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 33, "number": "170.315 (d)(5)", @@ -78951,34 +78961,24 @@ "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" }, { "criterion": { @@ -78990,11 +78990,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" } ], "acb": "SLI Compliance" @@ -79034,59 +79034,74 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -79094,14 +79109,24 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 179, @@ -79109,29 +79134,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -79139,89 +79159,79 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -79229,29 +79239,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -79265,17 +79265,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -79317,19 +79317,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -79337,94 +79332,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -79432,14 +79437,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -79447,100 +79452,87 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, { "criterion": { "id": 181, @@ -79556,6 +79548,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.interopengine.com/open-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -79600,69 +79600,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -79670,59 +79670,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -79730,47 +79730,55 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.lillegroup.com/esh.html" + }, { "criterion": { "id": 182, @@ -79786,14 +79794,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.lillegroup.com/esh.html" } ], "acb": "SLI Compliance" @@ -79833,39 +79833,39 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 5, @@ -79873,39 +79873,34 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 26, @@ -79913,34 +79908,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 171, @@ -79948,9 +79933,14 @@ "title": "Electronic Health Information Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 56, @@ -79958,59 +79948,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 25, @@ -80018,24 +79998,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -80043,24 +80028,24 @@ "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 6, @@ -80068,22 +80053,45 @@ "title": "Problem List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-api.ethizo.com/" + }, { "criterion": { "id": 56, @@ -80099,14 +80107,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ethizo.com/pda-api/developer-guide/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir-api.ethizo.com/" } ], "acb": "SLI Compliance" @@ -80146,9 +80146,9 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -80156,34 +80156,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 14, @@ -80191,109 +80166,104 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 44, @@ -80301,29 +80271,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -80331,34 +80301,34 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -80366,20 +80336,42 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.ezemrx.com/fhir" - }, { "criterion": { "id": 56, @@ -80395,6 +80387,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ezemrx.com/oauth/fhir.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ezemrx.com/fhir" } ], "acb": "SLI Compliance" @@ -80434,54 +80434,44 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -80489,54 +80479,54 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -80544,60 +80534,62 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 56, @@ -80613,6 +80605,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://penn-clinical.com/api-documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://penn-clinical.com/api-documentation" } ], "acb": "Drummond Group" @@ -80647,54 +80647,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -80702,74 +80682,64 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -80777,14 +80747,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -80792,55 +80762,77 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 181, @@ -80849,6 +80841,14 @@ }, "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://penn-clinical.com/api-documentation" + }, { "criterion": { "id": 56, @@ -80895,29 +80895,19 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -80925,24 +80915,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 32, @@ -80950,54 +80945,54 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -81005,34 +81000,34 @@ "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -81040,55 +81035,52 @@ "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" - }, { "criterion": { "id": 181, @@ -81104,6 +81096,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.healogics.com/2015-certified-ehr-technology/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.healogics.com/2015-certified-ehr-technology/" } ], "acb": "Drummond Group" @@ -81143,14 +81143,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 171, @@ -81158,34 +81158,19 @@ "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 35, @@ -81193,34 +81178,19 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 165, @@ -81228,9 +81198,9 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -81238,24 +81208,34 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -81263,9 +81243,14 @@ "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 176, @@ -81273,50 +81258,65 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://appstudio.interopengine.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://appstudio.interopengine.com/" }, @@ -81360,15 +81360,30 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 53, @@ -81380,45 +81395,40 @@ "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -81426,19 +81436,19 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -81446,49 +81456,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -81496,32 +81506,30 @@ "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://appstudio.interopengine.com/" + }, { "criterion": { "id": 56, @@ -81537,14 +81545,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://appstudio.interopengine.com/" } ], "acb": "Drummond Group" @@ -81584,49 +81584,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -81634,39 +81624,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 1, @@ -81674,74 +81659,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -81749,55 +81739,65 @@ "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.icare.com/developers/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.icare.com/developers/" }, @@ -81847,19 +81847,14 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -81867,49 +81862,54 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -81917,24 +81917,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -81942,14 +81942,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -81957,9 +81952,14 @@ "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -81967,87 +81967,87 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" }, @@ -82061,9 +82061,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" } @@ -82105,19 +82105,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 13, @@ -82130,9 +82130,14 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 26, @@ -82140,29 +82145,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -82170,9 +82160,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -82180,14 +82175,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -82195,14 +82200,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -82210,39 +82230,39 @@ "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, @@ -82250,29 +82270,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -82280,27 +82290,25 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" + }, { "criterion": { "id": 181, @@ -82316,14 +82324,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" } ], "acb": "Drummond Group" @@ -82363,34 +82363,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -82398,9 +82398,14 @@ "title": "Automated Measure Calculation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 56, @@ -82408,99 +82413,94 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -82508,64 +82508,64 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -82574,6 +82574,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + }, { "criterion": { "id": 182, @@ -82589,14 +82597,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -82631,69 +82631,39 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -82701,59 +82671,59 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -82761,14 +82731,14 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -82776,29 +82746,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, @@ -82806,19 +82771,39 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -82826,17 +82811,32 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -82850,9 +82850,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -82889,29 +82889,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 12, @@ -82919,64 +82899,59 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 46, @@ -82984,24 +82959,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 170, @@ -83009,64 +82989,64 @@ "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, @@ -83074,24 +83054,24 @@ "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -83099,24 +83079,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -83130,17 +83130,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83182,64 +83182,69 @@ }, "criteriaMet": [ { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -83247,29 +83252,44 @@ "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 173, @@ -83277,49 +83297,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -83327,29 +83342,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -83357,60 +83367,50 @@ "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -83455,74 +83455,74 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -83530,24 +83530,24 @@ "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -83555,29 +83555,29 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 44, @@ -83585,44 +83585,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -83630,50 +83630,42 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -83689,6 +83681,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83728,54 +83728,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 7, @@ -83788,44 +83788,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 166, @@ -83833,29 +83823,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -83863,24 +83858,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -83888,14 +83878,9 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 49, @@ -83903,24 +83888,24 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -83928,24 +83913,39 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -84011,59 +84011,49 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 172, @@ -84071,54 +84061,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -84126,19 +84106,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, @@ -84146,49 +84126,74 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -84196,9 +84201,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -84206,27 +84211,30 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nablemd.com/api_fhir/index.html" + }, { "criterion": { "id": 181, @@ -84242,14 +84250,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nablemd.com/api_fhir/index.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" } ], "acb": "Drummond Group" diff --git a/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json b/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json index 8a10648e0..3377a1e50 100644 --- a/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json +++ b/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json @@ -4951,7 +4951,7 @@ "OrganizationZipCode": "" }, { - "URL": "https://meritus-rev-prd.meritushealth.com/FHIRPRD/api/FHIR/R4/", + "URL": "https://epicproxy.et1062.epichosted.com/FHIRProxyPRD/api/FHIR/R4/", "OrganizationName": "Meritus", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Healthie_EndpointSources.json b/resources/prod_resources/Healthie_EndpointSources.json new file mode 100644 index 000000000..0e3bc63c8 --- /dev/null +++ b/resources/prod_resources/Healthie_EndpointSources.json @@ -0,0 +1,3 @@ +{ + "Endpoints": null +} \ No newline at end of file diff --git a/resources/prod_resources/MEDHOST_EndpointSources.json b/resources/prod_resources/MEDHOST_EndpointSources.json index 0057adcef..cbb912cdf 100644 --- a/resources/prod_resources/MEDHOST_EndpointSources.json +++ b/resources/prod_resources/MEDHOST_EndpointSources.json @@ -531,7 +531,7 @@ { "URL": "https://fhir.yourcareuniverse.net/tenant/75043803-bb7f-402e-836e-1af427dd8d38", "OrganizationName": "Monroe County Medical Center", - "NPIID": "", + "NPIID": "1053499350", "OrganizationZipCode": "" }, { diff --git a/resources/prod_resources/Modernizing_Medicine_EndpointSources.json b/resources/prod_resources/Modernizing_Medicine_EndpointSources.json index cb993376a..28dfd5a96 100644 --- a/resources/prod_resources/Modernizing_Medicine_EndpointSources.json +++ b/resources/prod_resources/Modernizing_Medicine_EndpointSources.json @@ -1,610 +1,1978 @@ { "Endpoints": [ { - "URL": "https://fax2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test2", + "URL": "https://pbd.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Palm Beach Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uro.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Urology", + "URL": "https://pbdtest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Pbdtest3 Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://laser.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Laser", + "URL": "https://blueridge.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Blue Ridge Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fax3.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test 3", + "URL": "https://brderm.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Boca Raton Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zzy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zzy", + "URL": "https://clearly.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Clearly Derm Center for Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zyy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ZYY", + "URL": "https://carloscohen.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Carlos Cohen MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zopth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zophth", + "URL": "https://awstest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "awstest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://maverick.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Mavericks EMAzing", + "URL": "https://goldman.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David A. Goldman MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2qatest01.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ema 01 test", + "URL": "https://eatest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Ea Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zyx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zyx", + "URL": "https://drdrew.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "JBS Med PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "amy", + "URL": "https://gi.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo GI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zxx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zxx", + "URL": "https://cosmetic.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Cosmetic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pbd.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Test Palm Beach Derm", + "URL": "https://ent.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo ENT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://admcorp.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ADMCorp Test Account", + "URL": "https://derm.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://olga.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "olga's test firm", + "URL": "https://ortho.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://eftest.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Eyefinity Test", + "URL": "https://plastics.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Plastics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reddy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "reddy", + "URL": "https://ophth.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Ophthalmology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://legal.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "EMA", + "URL": "https://demo.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "demo", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zxy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zxy", + "URL": "https://rwineingerod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Roger C Wineinger OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://emoryeye.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Emory Eye Test", + "URL": "https://ballardvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Ballard Vision Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zxz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zxz", + "URL": "https://automatedtesting.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "AutomatedTesting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://multi.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Multispecialty", + "URL": "https://frea.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Front Range Eye Associates PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://cosmetic.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Cosmetic", + "URL": "https://amirananiod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "AMI C RANANI OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ortho.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Orthopedics", + "URL": "https://optometricassocpc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optometric Associates PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Dermatology", + "URL": "https://masonfamilyvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FAMILY VISION CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://opto.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Optometry", + "URL": "https://northwestoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "NORTHWEST OPTOMETRY ASSOC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://demo.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "demo", + "URL": "https://kandersenod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "KATHLEEN M ANDERSEN OD INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://urology.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Urology", + "URL": "https://celebrationeyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CELEBRATION EYE CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ent.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo ENT", + "URL": "https://justusvisioncenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "JUSTUS VISION CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://rheum.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Rheumatology", + "URL": "https://drlesshipley.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "LES A SHIPLEY OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Ophthalmology", + "URL": "https://mykvc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "KENNEWICK VISION CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://gi.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo GI", + "URL": "https://universityvisioncentre.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "UNIVERSITY VISION CENTRE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://plastics.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Plastics", + "URL": "https://7eeye.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "SEVIGNY \u0026 ASSOCIATES EYE CARE PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm.test.com.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "derm", + "URL": "https://rochestereyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "ROCHESTER EYE CARE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sirisha.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "derm", + "URL": "https://visionaryoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "VISIONARY OPTOMETRY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ortho1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ortho1", + "URL": "https://efpod01test.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "efpod01 test firm", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm22.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Derm Letter Test", + "URL": "https://davidjdexterodpc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David J Dexter OD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth-olga.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ophth-olga", + "URL": "https://eyecarenetworkltd.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Eyecare Network LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://phoenix.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "pathology", + "URL": "https://milehighcornealspecialistspc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Mile HiCorneal Specialists P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test.sy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "testsy", + "URL": "https://optometrycare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EASTGATE OPTOMETRY CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm411.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "derm411", + "URL": "https://familyeyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FAMILY EYECARE SPECIALISTS PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zyz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zyz", + "URL": "https://eyesonmainvisioncenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "VILLAGE VISION CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zzzz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "a", + "URL": "https://eyetoeyewilsonville.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Innervision Optometric Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zent.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zent", + "URL": "https://buckeyevisioncare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Buck Eye Vision Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://dermplas.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "dermplas", + "URL": "https://bearrivereye.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Bear River Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2qatest02.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "m2qatest02", + "URL": "https://sandrahjeongod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Sandra Jeong OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2qatest03.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "m2qatest03", + "URL": "https://foxsoptical.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FOXS OPTICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression412.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression412", + "URL": "https://mtbetheleyecarepc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Mt Bethel Eye Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test", + "URL": "https://haddonfieldvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Haddonfield Vision PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zzx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test \"'\u003e", + "URL": "https://davidjscholten.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DAVID SCHOLTEN OD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://neil.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "neil", + "URL": "https://greenhavenoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Greenhaven Optometry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test8.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test8", + "URL": "https://todaysvisionrichmond.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "TODAYS VISION RICHMOND AT GRAND PKWY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test.com.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "testfirm", + "URL": "https://barryhuseod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "BARRY HUSE OD \u0026 ASSOCIATES PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test7.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test7", + "URL": "https://donaldturner.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DONALD R TURNER OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://nyu.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "NYU", + "URL": "https://totalvisioncenters.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "TOTAL VISION CENTERS INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://nyuderm.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "nyuderm", + "URL": "https://drsodomcoburnandrichardson.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Drs Odom Coburn and Richardson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://koontz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Koontz", + "URL": "https://davidjdexterodpcwatertown.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David Dexter, OD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression413.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression413", + "URL": "https://libertylakeeyecarecenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "LIBERTY LAKE EYE CARE CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression4132.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression4132", + "URL": "https://dryeager.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "M Dwayne Yeager OD FAAO", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://atlas.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test", + "URL": "https://completeeyecareassociates.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Complete Eyecare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://telehealth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Telehealth", + "URL": "https://optocenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optometric Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://thisisalargeprefixforthefirmwearetesting.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Thisisalargenameforthefirmthatwearetestingrightnow", + "URL": "https://icareopticalofkent.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "LEWIS S LIM AND ASSOCIATES OD PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://giorders.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "gi-orders-test", + "URL": "https://pineconevisioncenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "PINECONE VISION CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://dermorders.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "dermorders", + "URL": "https://ehrqatest.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "ehrqatest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth-orders.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ophth-orders", + "URL": "https://doctorbecky.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Rebecca Cabatbat, O.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression50.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression50", + "URL": "https://clarifeyeeyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CLARIFEYE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression50-1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression50-1", + "URL": "https://communityeyeassociates.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "COMMUNITY EYE ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newderm.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Derm", + "URL": "https://independenteyecareincdanvers.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Independent Eye Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reg50.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "reg50", + "URL": "https://clarineyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CLARIN EYE CARE AND OPTICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reg501.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "reg501", + "URL": "https://sandbox.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Sandbox - Training", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2a.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "testderm", + "URL": "https://sales.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EEHR Sales", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://bugtesting.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "BugTesting", + "URL": "https://eyecareoptometric.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DAVID L BROWNING OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://bugtesting1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "BugTesting1", + "URL": "https://royrubinfeldmd.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Roy Rubinfeld, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mult.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "mult", + "URL": "https://bvweyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Beaverton Vision World", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://bugtesting2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "BugTesting1", + "URL": "https://eyecarect.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Total Vision Eye Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://dermatest.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "dermo test", + "URL": "https://sfeyedocs.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Fong \u0026 Wong ODS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophthandres.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ophthandres", + "URL": "https://packandbianesvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "PACK \u0026 BIANES ODS INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirm1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Test Firm1", + "URL": "https://wernerod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Werner Optometry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pqrs.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "PQRS FIRM", + "URL": "https://2020sugarland.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Todays Vision Sugarland PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://optoandres.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "optoandres", + "URL": "https://lumoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "RANDALL T LUM OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirm2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Test Firm2", + "URL": "https://optometrybtb.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optometry By The Bay", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reg51.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Regression 5.1", + "URL": "https://opticalcenterfortgordon.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optical Center Fort Gordon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirm3.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Test Firm3", + "URL": "https://lancastereyedoc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Mark C Mewborne OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newderm51.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "newderm51", + "URL": "https://opticaoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "MICHAEL Y CHEW OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://gi-results-test.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "gi-results-test", + "URL": "https://antelopemalloptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "ANTELOPE MALL VISION CENTER OPTOMETRY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirmagain.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Firm Again", + "URL": "https://drjohnturley.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Dr John W Turley LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://knowledge.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Training Enviroment", + "URL": "https://visionquesteyeclinics.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "VISION QUEST EYE CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://learning.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Training Environment", + "URL": "https://docmarkham.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "John R Markham OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test915.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test915", + "URL": "https://priceeyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Price Eyecare \u0026 Optical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://urology.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Urology", + "URL": "https://familyeyecarecampbell.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FAMILY EYE CARE CENTER OPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://gi.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo GI", + "URL": "https://familyvisionctr.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Family Vision Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://opto.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Optometry", + "URL": "https://eyesitecrestview.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EYE SITE OF CRESTVIEW PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://demo.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "demo", + "URL": "https://bcvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Bear Creek Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ent.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo ENT", + "URL": "https://gloptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "GRAND LEDGE OPTOMETRY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Ophthalmology", + "URL": "https://djoelod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DAVID W JOEL OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://multi.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Multispecialty", + "URL": "https://eyecenteroptometric.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EYE CENTER OPTOMETRIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Dermatology", + "URL": "https://everythingeyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Alpert Vision Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://cosmetic.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Cosmetic", + "URL": "https://rothvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Roth Vision Care Doctor Of Optometry PLL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://rheum.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Rheumatology", + "URL": "https://myeyecareplus.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Eyecare Plus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ortho.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Orthopedics", + "URL": "https://2020eyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "OPTOMETRIC CARE ASSOC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://a8580225-25d6-4812-a463-58e49a80f214.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3bf2dd7c-9325-4617-b88b-7053e186ed5b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://f5f73dd6-507b-49fa-91fd-a2c1482eb946.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://4f01bcfb-fad8-459c-879d-6bacb8068fee.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d4e511bc-883e-4992-873f-b76ffb7ca8ba.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://9d56379c-d822-4f76-9dbb-68fc7af88687.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://45e2255e-6f18-4bcd-bd09-0def3adfca03.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://73a16b75-76ae-4370-af3f-78876c5948e6.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://bd7d7b87-d489-4771-87fb-49e48d1b4ce9.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://662acb6b-2e6a-4a18-a64c-d0df200218d5.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://51252f2e-8a78-46ff-b455-e688f2e6b977.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://37c37674-d98a-4dce-97c1-165a0520d41f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d4f6f003-937f-42bb-b631-506a99cb0260.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://854c360c-ccd0-490c-b032-f0f87442ff0a.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://73b89c1a-4ffd-4a8e-9f54-ab1d1a0f60ca.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5cde014c-0b57-454c-8e2c-9f9a348341f1.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3b23bfeb-f286-4d52-9343-6b732672e98b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Palmetto Gastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://878239f2-0551-4df2-86aa-cd3bd0cc7e4f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1e97bf46-5f98-4384-bf8d-cffaf9bb8f4c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://915c31a9-c72e-45b9-87e6-b62da9b7e18b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://97465a19-0dc7-4ef3-9aea-f72e472d3305.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fbcd2a0e-4110-4d68-b8cf-f166f9544cb4.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://a1c02ddf-9398-4db3-b17d-e4ed406c88f2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://177472a4-574c-4a73-8deb-a3663624cdb8.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://f15a24e2-8c5e-493b-b9d1-3fcaad4622d2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d425f144-77fd-4659-913d-b915be189a97.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5fed3212-5ef6-43be-956f-1d101a902fa9.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Bay Area Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3dcb1db9-ddbb-489e-9a0c-b7d4978268fc.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://4f81aa8f-46d9-489d-aca3-0319ef5c1a34.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://83cc95b3-c376-4f8f-84eb-5d8038551390.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e3cab0c3-16d5-4dd5-8801-a6f098d587f5.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://937b3ea5-7a6e-4d4e-b0ed-672ee9436d43.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1acbd3ba-ed1b-40f5-8d90-1cc35c556f96.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://48881cdb-e929-4657-9867-fdde5cedcbce.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1ee543a4-bf37-40b5-9945-9cd59a1c3b3b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5ea05e84-9956-4942-89c1-213eb31b46bb.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://f02c46cc-89f8-4f9a-8da8-99b073c55482.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://bea28457-8a35-4836-81fa-a55473bafe7a.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d39a1e77-6826-49c4-8e34-4a80ff96206e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3a980deb-3d8b-4d20-b65b-21241412d922.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://bf8f51b1-eeb5-4b4a-af50-07d7ccbfbd2e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5d205757-d7ad-4385-b85e-206fb2980872.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://587ae17e-9d61-401e-b518-24b3e317b561.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c3916c65-0790-41c5-8eec-1f6c89e87716.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e5acb156-d563-411c-adb4-9488d77feed2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1fbdfcda-3089-4e5e-8d47-212b75eaf22d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://9d1d65b5-fc44-4c0c-a5cf-f2427e889474.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Atlantic Gastro", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://4de7e156-71fe-471b-84a5-ba7f4a5b04e9.gastro.qa.fhir.ema-api.com/fhir/r4/", + "URL": "https://1a572fe8-4158-42a5-98e1-1080209f25f6.gastro.prod.fhir.ema-api.com/fhir/r4/", "OrganizationName": "gGastro", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://bfb0074d-717a-42a9-a17b-421abfd28efe.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fef9ae01-d276-4e26-aadf-c71f0d69daba.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://0621a941-5b32-48ea-8038-318fa4aa2198.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fa49470e-e549-442c-aaf1-d399d5b6d551.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8d78b571-de39-4d7a-8bfc-932db410c87d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://08e3beb7-0812-4e24-be3c-6ff3d7b8ca27.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://831cec68-9c02-4959-bb6a-13b70feb6f40.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3c8a5aee-3928-45be-8b16-a0f55c8eff58.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://86828155-b9fa-4a5a-a68c-d6e1115fa77f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://6807e6b6-6f20-4343-97f3-36cdd5aa9c0e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://87da10c8-4b9e-450a-a5e3-72c6451dfbee.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://293b4af0-46c8-4b3c-baa3-8c47c73a0bba.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c89bf89a-a26e-42bb-840d-b51df01b9034.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8264d6b8-81e2-424d-b9ba-b7935a661b0d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8b12fd4c-da15-4ead-a3a8-344ea9ac675d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dc7314ad-d828-4d89-aae8-9119deed9843.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://0e6dce4e-6535-4b4d-84e3-0acd509ac5c2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dd764dd4-6389-4423-a398-2684ed788823.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://672d9ab7-deca-4dbf-8e11-00c1195f8ef8.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://47eaa515-c6d5-4fd5-b421-2afde9bc43da.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://98ad01d2-aad3-4c7c-96a6-0c1ac7c39ff6.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://ddb5b0dd-fb88-4f1e-a5e1-a03b26022711.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://cbf736b1-b683-4ab3-841e-0ec7a6f468d8.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://6577f092-93ca-4b3b-86e1-30a8e966e9f2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://279b5dd1-69b9-49e5-82cf-2e3782636ef2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c35e610a-af8f-48b0-a946-d65fc24b4648.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://de022691-7de3-4508-805b-2d744784c0d0.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://b26ac60c-f318-4a4b-838f-585113152e5c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d9047a66-f373-4309-97ef-06e586bfffbf.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8f2a86ab-9fd4-44de-887a-d8cadbaf4e8b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://9ddedd42-f8fc-44f9-8c47-4cb9d382d26f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3f6a685c-8b9d-4b62-a562-ded5b5684af3.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://da386ebf-88cc-4105-8be4-dd773cd7fd45.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5dbec2b7-03bd-4959-ac35-0d82c4f247d3.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://07f309e6-cfdb-45a2-97e8-67dec017804c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8aa9a239-fa4b-4721-883c-52b005699bf9.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://47a5c710-995b-4a62-a38c-d544643f8d46.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c412c190-a97b-4397-86ca-b800976099d2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e26d6512-ff45-4162-b273-89a327ccce57.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://6d148171-7e2a-4a80-a8ec-988b6af3658d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://890ad47e-26dd-4d6b-adf3-be67983c52e6.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://973bcab0-a992-4d4e-a6d6-f3fde5886982.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://19d1b124-767e-4583-abd0-d84125b4b96c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e89ba4e6-f561-4886-828b-c94a27125ee3.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CA-098-C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://4d17465b-8973-44b0-bbfb-fedb844d00d5.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1474d240-69e1-4419-a4e2-9d5495e538ab.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5f834470-c60a-47d6-9b68-196670cd4601.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://359abad3-893e-4146-a73c-c64e3142f9b7.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d2b81742-c799-4353-a516-d4734331a008.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://499b466c-31e0-481e-946e-ba8e804453eb.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://a8051dea-05a3-46f4-a61b-6fefc9291f11.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://da0059a8-415b-4d81-a3bc-36a07967166e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/aosmi/r4", + "OrganizationName": "Advanced Orthopedic and Sports Medicine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/abjc/r4", + "OrganizationName": "Alabama Bone and Joint Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/aossma/r4", + "OrganizationName": "Alabama Orthopedic Spine and Sports Medicine Association", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/leo/r4", + "OrganizationName": "Andrew Joseph Leo, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/augustin/r4", + "OrganizationName": "Augustin Orthopedics (Augustin)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/badia/r4", + "OrganizationName": "Badia Hand and Shoulder Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bbortho/r4", + "OrganizationName": "Baylis \u0026 Brown Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bigrapids/r4", + "OrganizationName": "Big Rapids Orthopaedics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bhsu/r4", + "OrganizationName": "Bischoff Hand Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/boca/r4", + "OrganizationName": "Boca Raton Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bjs/r4", + "OrganizationName": "Bone and Joint Specialists of Winchester, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mbh/r4", + "OrganizationName": "Bowen Hefley Rhodes Stewart Orthopedics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bgo/r4", + "OrganizationName": "Bowling Green Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/coi/r4", + "OrganizationName": "California Orthopaedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cosmc/r4", + "OrganizationName": "Capital Orthopaedic and Sports Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cro/r4", + "OrganizationName": "Capital Region Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/capstone/r4", + "OrganizationName": "Capstone Orthopedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/lavernia/r4", + "OrganizationName": "Carlos Lavernia, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/carlsbad/r4", + "OrganizationName": "Carlsbad Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/chc/r4", + "OrganizationName": "Carolina Hand and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cosmfl/r4", + "OrganizationName": "Center for Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cossm/r4", + "OrganizationName": "Center for Orthopedic Surgery and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/chitown/r4", + "OrganizationName": "Chitown Orthopaedics \u0026 Sports Medicine S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ckmd/r4", + "OrganizationName": "Cohen \u0026 Kramer, M.D., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cfo/r4", + "OrganizationName": "Colorado Family Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/csog/r4", + "OrganizationName": "Colorado Springs Orthopaedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cog/r4", + "OrganizationName": "Columbia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/core/r4", + "OrganizationName": "CORE ORTHOPEDICS \u0026 SPORTS MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/dsms/r4", + "OrganizationName": "Denver Sports Medicine And Spine Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/dhalla/r4", + "OrganizationName": "Dhalla Orthopedic Center Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sheldon/r4", + "OrganizationName": "DR. DANIEL A SHELDON M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/nsmd/r4", + "OrganizationName": "DR. NEOFITOS STEFANIDES M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/eco/r4", + "OrganizationName": "East Coast Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/edison/r4", + "OrganizationName": "Edison-Metuchen Orthopaedic Group PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/englewood/r4", + "OrganizationName": "Englewood Spine Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/usability/r4", + "OrganizationName": "Exscribe, Inc Usability", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/fosm/r4", + "OrganizationName": "Fayetteville Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/floa/r4", + "OrganizationName": "Florida Orthopaedic Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/flortho/r4", + "OrganizationName": "FLORIDA ORTHOPEDIC AND REHAB LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/g2/r4", + "OrganizationName": "G2 Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/girard/r4", + "OrganizationName": "Girard Orthopaedic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/goo/r4", + "OrganizationName": "Greater Orlando Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hanortho/r4", + "OrganizationName": "Han Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hoa/r4", + "OrganizationName": "Homestead Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hommen/r4", + "OrganizationName": "Hommen Orthopedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/gelb/r4", + "OrganizationName": "HOWARD J. GELB MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hops/r4", + "OrganizationName": "Hudson Orthopedics Pain and Spine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/huntington/r4", + "OrganizationName": "Huntington Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ihc/r4", + "OrganizationName": "Idaho Hand Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ihi/r4", + "OrganizationName": "Idaho Hand Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rubinshteyn/r4", + "OrganizationName": "IGOR RUBINSHTEYN M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/international/r4", + "OrganizationName": "International Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mcclurg/r4", + "OrganizationName": "James McClurg MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/lbji/r4", + "OrganizationName": "Lakeshore Bone and Joint Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/laos/r4", + "OrganizationName": "Louisiana Orthopaedic Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/miahand/r4", + "OrganizationName": "MIAMI HAND PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mijr/r4", + "OrganizationName": "Miami Institute for Joint Reconstruction", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/moc/r4", + "OrganizationName": "Miami Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/msm/r4", + "OrganizationName": "Miami Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/miorthocenter/r4", + "OrganizationName": "Michigan Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mgo/r4", + "OrganizationName": "MIDDLE GA ORTHOPEADIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mocil/r4", + "OrganizationName": "Midwest Orthopaedic Consultants SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mah/r4", + "OrganizationName": "MIKI \u0026 ALFONSO HAND \u0026 UPPER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/msmoc/r4", + "OrganizationName": "MISSISSIPPI SPORTS MEDICINE \u0026 ORTHOPAEDIC CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/montana/r4", + "OrganizationName": "Montana Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/nsmi/r4", + "OrganizationName": "National Sports Medicine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ncsra/r4", + "OrganizationName": "NCSRA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/exscribe/r4", + "OrganizationName": "Neighborhood Physicians Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/njosm/r4", + "OrganizationName": "New Jersey Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/naspi/r4", + "OrganizationName": "North American Spine and Pain Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ooc/r4", + "OrganizationName": "Orlando Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/elpaso/r4", + "OrganizationName": "Ortho El Paso, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthoknox/r4", + "OrganizationName": "OrthoKnox", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthonowbis/r4", + "OrganizationName": "OrthoNOW Biscayne LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthonowcw/r4", + "OrganizationName": "OrthoNOW Coral Way", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthonow/r4", + "OrganizationName": "OrthoNOW Doral LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/miamilakes/r4", + "OrganizationName": "Orthopaedic Associates of Miami Lakes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oamkg/r4", + "OrganizationName": "Orthopaedic Associates of Muskegon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sosc/r4", + "OrganizationName": "Orthopaedic Associates, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ocsf/r4", + "OrganizationName": "Orthopaedic Center of South Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oicj/r4", + "OrganizationName": "Orthopaedic Institute of Central Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oinm/r4", + "OrganizationName": "Orthopaedic Institute of North Mississippi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orca/r4", + "OrganizationName": "Orthopaedic Research Clinic of Alaska", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/osmrc/r4", + "OrganizationName": "Orthopaedic Sports Medicine and Rehab Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/osmc/r4", + "OrganizationName": "Orthopedic and Sports Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oaph/r4", + "OrganizationName": "Orthopedic Associates of Port Huron PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oawj/r4", + "OrganizationName": "Orthopedic Associates of West Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/occ/r4", + "OrganizationName": "Orthopedic Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/osikc/r4", + "OrganizationName": "Orthopedic Surgeons, Inc. (OSI)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthori/r4", + "OrganizationName": "Orthopedics Rhode Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/phoenix/r4", + "OrganizationName": "Phoenix Orthopaedics Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/plano/r4", + "OrganizationName": "Plano Orthopedic Sports Medicine and Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/popb/r4", + "OrganizationName": "Preferred Orthopedics of the Palm Beaches", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/post/r4", + "OrganizationName": "PREMIER ORTHOPEDIC SPECIALISTS OF TULSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/nashed/r4", + "OrganizationName": "Rafat Nashed, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/armstrong/r4", + "OrganizationName": "Randall Armstrong, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/regional/r4", + "OrganizationName": "Regional Orthopaedic Sports Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rgvo/r4", + "OrganizationName": "Rio Grande Valley Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rmrm/r4", + "OrganizationName": "Rocky Mountain Restorative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rogozinski/r4", + "OrganizationName": "Rogozinski Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/stone/r4", + "OrganizationName": "Ross Stone, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/santarosa/r4", + "OrganizationName": "Santa Rosa Orthopaedic Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/shb/r4", + "OrganizationName": "Schofield, Hand, and Bright", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/saosm/r4", + "OrganizationName": "SOUTH ARKANSAS ORTHOPAEDICS AND SPORTS MEDICINE CENTER PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/scoa/r4", + "OrganizationName": "South Coast Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/shosa/r4", + "OrganizationName": "South Hills Orthopaedic Surgery Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/stb/r4", + "OrganizationName": "South Texas Back", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ssi/r4", + "OrganizationName": "Southeastern Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/southern/r4", + "OrganizationName": "SOUTHERN ORTHOPAEDIC SURGEONS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/spartan/r4", + "OrganizationName": "Spartan Orthopedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ssomi/r4", + "OrganizationName": "Spine Specialists of Michigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/spivey/r4", + "OrganizationName": "Spivey Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sossportsmed/r4", + "OrganizationName": "SPORTS \u0026 ORTHOPAEDIC SPECIALISTS OF ARIZONA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/spoc/r4", + "OrganizationName": "Sports and Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sportsmed/r4", + "OrganizationName": "Sports Medicine Oregon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sal/r4", + "OrganizationName": "Stephen Alex, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sugar/r4", + "OrganizationName": "SUGAR ORTHOPAEDICS PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/suncoast/r4", + "OrganizationName": "Suncoast Orthopaedic Surgery and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/susortho/r4", + "OrganizationName": "Susquehanna Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/swift/r4", + "OrganizationName": "Swift Urgent Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sparks/r4", + "OrganizationName": "The Center for Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/columbus/r4", + "OrganizationName": "THE COLUMBUS ORTHOPAEDIC CLINIC, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/tro/r4", + "OrganizationName": "Thornapple River Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/toji/r4", + "OrganizationName": "Tuscaloosa Orthopedic and Joint Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/uso/r4", + "OrganizationName": "Ultimate Sports and Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/uoct/r4", + "OrganizationName": "University Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/vbjc/r4", + "OrganizationName": "Valley Bone and Joint Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/weststate/r4", + "OrganizationName": "West State Orthopedics and Sports Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/wsortho/r4", + "OrganizationName": "Western Slope Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Office_Practicum_EndpointSources.json b/resources/prod_resources/Office_Practicum_EndpointSources.json new file mode 100644 index 000000000..a5507b11d --- /dev/null +++ b/resources/prod_resources/Office_Practicum_EndpointSources.json @@ -0,0 +1,1720 @@ +{ + "Endpoints": [ + { + "URL": "https://applications.op.healthcare/2198/api/FHIR/R4", + "OrganizationName": "A Machin MD dba Fairhaven Pediatrics PC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/451/api/FHIR/R4", + "OrganizationName": "Aldo F Bejarano MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1618/api/FHIR/R4", + "OrganizationName": "All About Children PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/538/api/FHIR/R4", + "OrganizationName": "All Star Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1849/api/FHIR/R4", + "OrganizationName": "Amboy Pediatrics PA NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/827/api/FHIR/R4", + "OrganizationName": "Anantha R Bhandari MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/298/api/FHIR/R4", + "OrganizationName": "Angel Kids Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3104/api/FHIR/R4", + "OrganizationName": "Anniston Pediatrics Inc AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/849/api/FHIR/R4", + "OrganizationName": "Apache Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3118/api/FHIR/R4", + "OrganizationName": "Arbor Pediatrics PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1144/api/FHIR/R4", + "OrganizationName": "Athens Pediatrics PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1608/api/FHIR/R4", + "OrganizationName": "August Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1984/api/FHIR/R4", + "OrganizationName": "Austex Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/523/api/FHIR/R4", + "OrganizationName": "Austintown Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2162/api/FHIR/R4", + "OrganizationName": "Avery Mae Pediatrics TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1563/api/FHIR/R4", + "OrganizationName": "Avilio E Munoz MD Pediatrics PC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1976/api/FHIR/R4", + "OrganizationName": "Bayer and Associates DO PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1002/api/FHIR/R4", + "OrganizationName": "Beverly Gaines MD \u0026 Associates PSC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1583/api/FHIR/R4", + "OrganizationName": "Bidabadi Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1885/api/FHIR/R4", + "OrganizationName": "Bloom And Grow Pediatrics LLC NM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1854/api/FHIR/R4", + "OrganizationName": "Brentwood Childrens Clinic PC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1823/api/FHIR/R4", + "OrganizationName": "Bright Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1264/api/FHIR/R4", + "OrganizationName": "Broken Arrow Pediatrics LLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/914/api/FHIR/R4", + "OrganizationName": "Burbank Pediatrics Medical Corp CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/561/api/FHIR/R4", + "OrganizationName": "Cactus Childrens Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1231/api/FHIR/R4", + "OrganizationName": "Camelback Pediatrics PC AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/603/api/FHIR/R4", + "OrganizationName": "Caring Hands Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/172/api/FHIR/R4", + "OrganizationName": "Carnegie Hill Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/894/api/FHIR/R4", + "OrganizationName": "Carolina Kids Pediatric Associates PLLC NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/329/api/FHIR/R4", + "OrganizationName": "Carolina Pediatric Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/495/api/FHIR/R4", + "OrganizationName": "Carolina Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1010/api/FHIR/R4", + "OrganizationName": "Carteret Clinic For Adolescents and Children NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1769/api/FHIR/R4", + "OrganizationName": "Cedar Pediatrics PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/860/api/FHIR/R4", + "OrganizationName": "Centennial Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/973/api/FHIR/R4", + "OrganizationName": "Center For Pediatric Medicine CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1839/api/FHIR/R4", + "OrganizationName": "Central Coast Pediatrics Inc CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1151/api/FHIR/R4", + "OrganizationName": "Central Pediatrics and Adolescent Medicine LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/552/api/FHIR/R4", + "OrganizationName": "Champions Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/306/api/FHIR/R4", + "OrganizationName": "Chattahoochee Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1011/api/FHIR/R4", + "OrganizationName": "Chester Pediatrics PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1059/api/FHIR/R4", + "OrganizationName": "Child \u0026 Adolescent Center PC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3117/api/FHIR/R4", + "OrganizationName": "Childhood Health Associates of Salem PC OR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/383/api/FHIR/R4", + "OrganizationName": "Children of Joy Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1850/api/FHIR/R4", + "OrganizationName": "Childrens Clinic of El Paso PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1986/api/FHIR/R4", + "OrganizationName": "Childrens Medical Group TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1745/api/FHIR/R4", + "OrganizationName": "Childrens Mercy-Pediatric Care North Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/375/api/FHIR/R4", + "OrganizationName": "Childrens Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1655/api/FHIR/R4", + "OrganizationName": "Christ Care Pediatrics KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/450/api/FHIR/R4", + "OrganizationName": "Clarksburg Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/949/api/FHIR/R4", + "OrganizationName": "Cobb Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1600/api/FHIR/R4", + "OrganizationName": "Cooper Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1218/api/FHIR/R4", + "OrganizationName": "Covenant Care Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1584/api/FHIR/R4", + "OrganizationName": "Covenant Multispecialty Group LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3101/api/FHIR/R4", + "OrganizationName": "Covenant Pediatrics LLC MO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1876/api/FHIR/R4", + "OrganizationName": "Crossroads Pediatrics PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1664/api/FHIR/R4", + "OrganizationName": "Cumberland Pediatric Associates PC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1576/api/FHIR/R4", + "OrganizationName": "Cumming Pediatric Group PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/897/api/FHIR/R4", + "OrganizationName": "Daniel J Levy MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/741/api/FHIR/R4", + "OrganizationName": "Dawson Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2038/api/FHIR/R4", + "OrganizationName": "Decatur Pediatric Group PA GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/117/api/FHIR/R4", + "OrganizationName": "Des Moines Pediatric and Adolescent Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1042/api/FHIR/R4", + "OrganizationName": "Desert Valley Pediatrics LLC NV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/390/api/FHIR/R4", + "OrganizationName": "Desert Willow Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/402/api/FHIR/R4", + "OrganizationName": "Dr Bs Childrens Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1658/api/FHIR/R4", + "OrganizationName": "Dunwoody Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/927/api/FHIR/R4", + "OrganizationName": "DV Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1588/api/FHIR/R4", + "OrganizationName": "Eastern Shore Childrens Clinic PC AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1923/api/FHIR/R4", + "OrganizationName": "Eastside Childrens Clinic PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1572/api/FHIR/R4", + "OrganizationName": "Einstein Pediatrics PLLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2153/api/FHIR/R4", + "OrganizationName": "Ekta Khurana MD PLLC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/806/api/FHIR/R4", + "OrganizationName": "Elizabeth D Avaricio MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1719/api/FHIR/R4", + "OrganizationName": "Empower Pediatrics LLC DBA Riverside Pediatrics OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/756/api/FHIR/R4", + "OrganizationName": "Etowah Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/825/api/FHIR/R4", + "OrganizationName": "FairHope Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1770/api/FHIR/R4", + "OrganizationName": "Forest Hill Pediatrics LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2016/api/FHIR/R4", + "OrganizationName": "Fox Pediatrics PLC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/540/api/FHIR/R4", + "OrganizationName": "Franklin Park Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1878/api/FHIR/R4", + "OrganizationName": "Fraser-Branche Medical PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1644/api/FHIR/R4", + "OrganizationName": "Frontera Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2003/api/FHIR/R4", + "OrganizationName": "Gallagher Pediatrics PLLC UT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/723/api/FHIR/R4", + "OrganizationName": "Gaurang Patel MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1651/api/FHIR/R4", + "OrganizationName": "GC Duluth Pediatrics GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1585/api/FHIR/R4", + "OrganizationName": "Gilbert Childrens Medical Group Inc AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1632/api/FHIR/R4", + "OrganizationName": "GoldStar Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1994/api/FHIR/R4", + "OrganizationName": "Gomez Yim and Rastogi MD PA MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/636/api/FHIR/R4", + "OrganizationName": "Grace Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1642/api/FHIR/R4", + "OrganizationName": "Graham Pediatrics of Woodstock LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1789/api/FHIR/R4", + "OrganizationName": "Grayson Pediatrics LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1971/api/FHIR/R4", + "OrganizationName": "Grow Pediatrics and Adolescent Medicine PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2164/api/FHIR/R4", + "OrganizationName": "Growing Kids Pediatrics LLC IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1075/api/FHIR/R4", + "OrganizationName": "Guilford Pediatrics Inc CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/153/api/FHIR/R4", + "OrganizationName": "Hampton Pediatrics NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1715/api/FHIR/R4", + "OrganizationName": "Hanover Pediatrics LLC NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/554/api/FHIR/R4", + "OrganizationName": "Happy and Healthy Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1768/api/FHIR/R4", + "OrganizationName": "Hatboro Pediatrics PC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1985/api/FHIR/R4", + "OrganizationName": "Hawthorne Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2195/api/FHIR/R4", + "OrganizationName": "HD Pediatrics PLLC MA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2229/api/FHIR/R4", + "OrganizationName": "Healthy Start Pediatrics LLC NM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/129/api/FHIR/R4", + "OrganizationName": "Heights Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1888/api/FHIR/R4", + "OrganizationName": "Hendersonville Pediatrics PA NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/870/api/FHIR/R4", + "OrganizationName": "Highland Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/650/api/FHIR/R4", + "OrganizationName": "Holly Springs Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1173/api/FHIR/R4", + "OrganizationName": "Hometown Pediatrics of Joplin LLC MO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2111/api/FHIR/R4", + "OrganizationName": "Hoos Pediatric and Adolescent Care PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2224/api/FHIR/R4", + "OrganizationName": "Horizon West Pediatric Center PLLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1187/api/FHIR/R4", + "OrganizationName": "Huma Y. Lodhi MD TX PA dba El Paso Kids Klinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1518/api/FHIR/R4", + "OrganizationName": "Huntington Plaza Pediatric Group CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3125/api/FHIR/R4", + "OrganizationName": "IncrediCare Pediatrics LLC NV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1612/api/FHIR/R4", + "OrganizationName": "Island Coast Pediatrics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/982/api/FHIR/R4", + "OrganizationName": "Jacqueline K. Hoang MD DBA Pediatric Associates of Springfield VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/923/api/FHIR/R4", + "OrganizationName": "Jeffrey Kaplan MD Inc CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2199/api/FHIR/R4", + "OrganizationName": "Jose L Berlioz MD PA DBA Safari Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2150/api/FHIR/R4", + "OrganizationName": "Joyful Healthcare LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1775/api/FHIR/R4", + "OrganizationName": "Julia Barriga MD PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2121/api/FHIR/R4", + "OrganizationName": "Just Us Kids Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1085/api/FHIR/R4", + "OrganizationName": "Kaplan Barron Pediatrics PLLC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1817/api/FHIR/R4", + "OrganizationName": "Karen Filler MD GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/368/api/FHIR/R4", + "OrganizationName": "Keysville Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3102/api/FHIR/R4", + "OrganizationName": "Kid Care Pediatric Urgent Care LLC SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1988/api/FHIR/R4", + "OrganizationName": "Kids Corner Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2034/api/FHIR/R4", + "OrganizationName": "Kids Doc on Wheels Inc GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/351/api/FHIR/R4", + "OrganizationName": "Kids First Pediatrics on 30", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/708/api/FHIR/R4", + "OrganizationName": "Kids First Pediatrics Raeford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1606/api/FHIR/R4", + "OrganizationName": "Kids Kare Pediatrics PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/406/api/FHIR/R4", + "OrganizationName": "KidsCorner Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1806/api/FHIR/R4", + "OrganizationName": "Kidz1st PLLC dba Kidz1st Pediatrics MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/972/api/FHIR/R4", + "OrganizationName": "KidzCare Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2089/api/FHIR/R4", + "OrganizationName": "Kinder Haus Pediatrics LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1992/api/FHIR/R4", + "OrganizationName": "KION Pediatrics PLLC AR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1733/api/FHIR/R4", + "OrganizationName": "Lake Ray Hubbard Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/788/api/FHIR/R4", + "OrganizationName": "Laura Lieberman MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/792/api/FHIR/R4", + "OrganizationName": "Lawrence Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/203/api/FHIR/R4", + "OrganizationName": "Lighthouse Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1082/api/FHIR/R4", + "OrganizationName": "Litchfield County Pediatrics LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1996/api/FHIR/R4", + "OrganizationName": "Little Big Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3109/api/FHIR/R4", + "OrganizationName": "Little Rock Pediatric Group PA AR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1209/api/FHIR/R4", + "OrganizationName": "M Popovic PC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/341/api/FHIR/R4", + "OrganizationName": "Maria Ona MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/472/api/FHIR/R4", + "OrganizationName": "Maruthi Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1897/api/FHIR/R4", + "OrganizationName": "Maryland Pediatric Care LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/537/api/FHIR/R4", + "OrganizationName": "Maryland Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/785/api/FHIR/R4", + "OrganizationName": "McKinney ABC Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3074/api/FHIR/R4", + "OrganizationName": "Mercy Pediatrics LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1529/api/FHIR/R4", + "OrganizationName": "Metro Pediatrics PC AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/460/api/FHIR/R4", + "OrganizationName": "Mia Bella Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/979/api/FHIR/R4", + "OrganizationName": "Michael C Tenby MD LTD dba Centennial Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/745/api/FHIR/R4", + "OrganizationName": "Midland Pediatrics Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1071/api/FHIR/R4", + "OrganizationName": "Mount Sterling Pediatrics PSC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1520/api/FHIR/R4", + "OrganizationName": "Mountain West Pediatrics PC UT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1792/api/FHIR/R4", + "OrganizationName": "My Kids Pediatric Partners PC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1051/api/FHIR/R4", + "OrganizationName": "Nashville Pediatric Providers LLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1921/api/FHIR/R4", + "OrganizationName": "New Heights Pediatrics LLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/580/api/FHIR/R4", + "OrganizationName": "Nicolas Rich JR MD FAAP PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2218/api/FHIR/R4", + "OrganizationName": "NiteOwl Pediatric Urgent Care LLC SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1239/api/FHIR/R4", + "OrganizationName": "North Fulton Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1691/api/FHIR/R4", + "OrganizationName": "North Pinellas Childrens Medical Center Inc FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1966/api/FHIR/R4", + "OrganizationName": "North Point Pediatrics LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/539/api/FHIR/R4", + "OrganizationName": "North Shore Childrens Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1532/api/FHIR/R4", + "OrganizationName": "North Willow Grove Pediatrics PC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1713/api/FHIR/R4", + "OrganizationName": "Northwest Pediatrics Inc NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1675/api/FHIR/R4", + "OrganizationName": "Northwest Spokane Pediatrics PLLC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2196/api/FHIR/R4", + "OrganizationName": "Norwood Pediatrics LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1791/api/FHIR/R4", + "OrganizationName": "NP Childrens Healthcare Clinic LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/381/api/FHIR/R4", + "OrganizationName": "Nuby Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/467/api/FHIR/R4", + "OrganizationName": "Nurture Pediatrics PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1237/api/FHIR/R4", + "OrganizationName": "NW Pediatric Center PSC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1260/api/FHIR/R4", + "OrganizationName": "OC Pediatrics Medical Group Inc. CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/551/api/FHIR/R4", + "OrganizationName": "Oceanside Pediatrics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1581/api/FHIR/R4", + "OrganizationName": "Ocoee Pediatrics PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1070/api/FHIR/R4", + "OrganizationName": "Olympia Pediatrics PLLC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1776/api/FHIR/R4", + "OrganizationName": "Optimal Care Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1277/api/FHIR/R4", + "OrganizationName": "Orange Grove Pediatrics AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1818/api/FHIR/R4", + "OrganizationName": "Palmetto Pediatrics of Low Country LLC SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1099/api/FHIR/R4", + "OrganizationName": "Parker Cohen Deconcini Schooler Zang And Wang MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1181/api/FHIR/R4", + "OrganizationName": "Pathway Pediatrics Inc AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/703/api/FHIR/R4", + "OrganizationName": "Pecan Tree Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1803/api/FHIR/R4", + "OrganizationName": "Pediatric and Adolescent Medicine PA GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/890/api/FHIR/R4", + "OrganizationName": "Pediatric Associates Montgomery County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3091/api/FHIR/R4", + "OrganizationName": "Pediatric Associates Of Alexander City PC AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1032/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Fairfield PC OH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2100/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Franklin PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/692/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Lancaster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1601/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Lawrenceville LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/680/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Topeka", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1060/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Western Connecticut LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1089/api/FHIR/R4", + "OrganizationName": "Pediatric Associates PC AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/645/api/FHIR/R4", + "OrganizationName": "Pediatric Care Corner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1265/api/FHIR/R4", + "OrganizationName": "Pediatric Care Specialist PA KS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1841/api/FHIR/R4", + "OrganizationName": "Pediatric Center for Wellness PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/899/api/FHIR/R4", + "OrganizationName": "Pediatric Center LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/787/api/FHIR/R4", + "OrganizationName": "Pediatric Center of Las Colinas PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1515/api/FHIR/R4", + "OrganizationName": "Pediatric Clinic PC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3080/api/FHIR/R4", + "OrganizationName": "Pediatric Consultants of Hampton Roads PLLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3112/api/FHIR/R4", + "OrganizationName": "Pediatric Dream Care PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1195/api/FHIR/R4", + "OrganizationName": "Pediatric Medicine of Wallingford LLP CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1718/api/FHIR/R4", + "OrganizationName": "Pediatric MultiCare West LLC AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/682/api/FHIR/R4", + "OrganizationName": "Pediatric Partners of Nashville and Smyrna", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/352/api/FHIR/R4", + "OrganizationName": "Pediatric Partners of the Southwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1150/api/FHIR/R4", + "OrganizationName": "Pediatric Partners of Zephyrhills Inc FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1595/api/FHIR/R4", + "OrganizationName": "Pediatric Partners PA KS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1531/api/FHIR/R4", + "OrganizationName": "Pediatric Services PA MN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/950/api/FHIR/R4", + "OrganizationName": "Pediatric Specialists of Tulsa PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1054/api/FHIR/R4", + "OrganizationName": "Pediatrics of Bullitt County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1798/api/FHIR/R4", + "OrganizationName": "PediPlace at Westover Hills LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/729/api/FHIR/R4", + "OrganizationName": "Peds Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1537/api/FHIR/R4", + "OrganizationName": "Pensacola Pediatrics PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1836/api/FHIR/R4", + "OrganizationName": "Phillips Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3133/api/FHIR/R4", + "OrganizationName": "Pleasant Valley Pediatric Medicine PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2127/api/FHIR/R4", + "OrganizationName": "Plum LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/514/api/FHIR/R4", + "OrganizationName": "PM Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1200/api/FHIR/R4", + "OrganizationName": "Premier Pediatric Associates PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/643/api/FHIR/R4", + "OrganizationName": "Premier Pediatrics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/778/api/FHIR/R4", + "OrganizationName": "Prime Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1970/api/FHIR/R4", + "OrganizationName": "Rachel Z Chatters MD Inc LA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1412/api/FHIR/R4", + "OrganizationName": "Rainbow Childrens Clinic PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1683/api/FHIR/R4", + "OrganizationName": "Raymond Kahn MD TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1582/api/FHIR/R4", + "OrganizationName": "RBK Pediatrics PC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2024/api/FHIR/R4", + "OrganizationName": "Rebecca DiMundo MD Inc CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2197/api/FHIR/R4", + "OrganizationName": "Red Maple Pediatrics LLC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/793/api/FHIR/R4", + "OrganizationName": "Redbud Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1063/api/FHIR/R4", + "OrganizationName": "Renaissance Pediatrics PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2222/api/FHIR/R4", + "OrganizationName": "Richmond Pediatrics PA NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1256/api/FHIR/R4", + "OrganizationName": "Right from the Start Pediatrics IL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/996/api/FHIR/R4", + "OrganizationName": "Rise \u0026 Shine Pediatrics PC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1614/api/FHIR/R4", + "OrganizationName": "Rivertown Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1890/api/FHIR/R4", + "OrganizationName": "Robert D Lehman MD PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/783/api/FHIR/R4", + "OrganizationName": "Robert S Barry MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2018/api/FHIR/R4", + "OrganizationName": "Ruth N Agwuna MD PC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1593/api/FHIR/R4", + "OrganizationName": "Sabeen Rani MD PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1029/api/FHIR/R4", + "OrganizationName": "Sacoto Pediatrics PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1928/api/FHIR/R4", + "OrganizationName": "Salisbury Pediatric Associates PA NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2051/api/FHIR/R4", + "OrganizationName": "Sam Kim Physician Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/818/api/FHIR/R4", + "OrganizationName": "San Diego Pediatric Primary Care Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1787/api/FHIR/R4", + "OrganizationName": "Sandhill Pediatrics PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/987/api/FHIR/R4", + "OrganizationName": "Segulah Pediatrics PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2191/api/FHIR/R4", + "OrganizationName": "Shahzaib Mirza MD Medical Partners PA dba Starz Pediatrics FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2160/api/FHIR/R4", + "OrganizationName": "Shawnee Mission Pediatrics KS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/744/api/FHIR/R4", + "OrganizationName": "Sound Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/775/api/FHIR/R4", + "OrganizationName": "South Philadelphia Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/661/api/FHIR/R4", + "OrganizationName": "South Tulsa Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1893/api/FHIR/R4", + "OrganizationName": "Southern Nevada Pediatric Center PLLC NV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/772/api/FHIR/R4", + "OrganizationName": "Southwest Childrens Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1918/api/FHIR/R4", + "OrganizationName": "Spring Hill Pediatric Care PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/797/api/FHIR/R4", + "OrganizationName": "Sudarsan Kamisetty MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3086/api/FHIR/R4", + "OrganizationName": "Sunrise Pediatric Neurology LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1852/api/FHIR/R4", + "OrganizationName": "Susan Bacsik DO PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1226/api/FHIR/R4", + "OrganizationName": "Sveta Medical PLLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/535/api/FHIR/R4", + "OrganizationName": "Sweet Water Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1167/api/FHIR/R4", + "OrganizationName": "Sweetwater Pediatrics PC WY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1898/api/FHIR/R4", + "OrganizationName": "Tanasbourne Pediatrics LLC OR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/720/api/FHIR/R4", + "OrganizationName": "Tanque Verde", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/516/api/FHIR/R4", + "OrganizationName": "Taos Clinic for Children and Youth PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1699/api/FHIR/R4", + "OrganizationName": "Tarpon Springs Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/907/api/FHIR/R4", + "OrganizationName": "TenderCare Pediatrics Inc GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1030/api/FHIR/R4", + "OrganizationName": "Texoma Pediatrics PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/858/api/FHIR/R4", + "OrganizationName": "The Childrens Clinic of Wyomissing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/520/api/FHIR/R4", + "OrganizationName": "The Garden Pediatric Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/901/api/FHIR/R4", + "OrganizationName": "The Kidz Care Klinic MS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1621/api/FHIR/R4", + "OrganizationName": "The Pediatric Center of Frederick LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/837/api/FHIR/R4", + "OrganizationName": "Tomahawk Farm Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3107/api/FHIR/R4", + "OrganizationName": "Torres Pediatrics Corp CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/641/api/FHIR/R4", + "OrganizationName": "Torresdale Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1143/api/FHIR/R4", + "OrganizationName": "Tots Tweens \u0026 Teens Childrens Clinic LLC LA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/746/api/FHIR/R4", + "OrganizationName": "Traverse Area Pediatrics and Adolescent Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1611/api/FHIR/R4", + "OrganizationName": "Tri County Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2227/api/FHIR/R4", + "OrganizationName": "Triangle Kids Care Pediatrics PLLC NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/508/api/FHIR/R4", + "OrganizationName": "Trinity Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2189/api/FHIR/R4", + "OrganizationName": "TruCare Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/557/api/FHIR/R4", + "OrganizationName": "Tulsa Pediatric Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/678/api/FHIR/R4", + "OrganizationName": "Urgent One Medical Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/903/api/FHIR/R4", + "OrganizationName": "Valeria Kozak Pediatrics CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2067/api/FHIR/R4", + "OrganizationName": "Valley Pediatric Group PLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/732/api/FHIR/R4", + "OrganizationName": "Ventnor Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2185/api/FHIR/R4", + "OrganizationName": "Vero Beach Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2156/api/FHIR/R4", + "OrganizationName": "VV Pedi Consults PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1580/api/FHIR/R4", + "OrganizationName": "Walter Leon MD TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/992/api/FHIR/R4", + "OrganizationName": "Weiss Pediatric Care LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/694/api/FHIR/R4", + "OrganizationName": "West Sayville Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/524/api/FHIR/R4", + "OrganizationName": "Westfield Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1558/api/FHIR/R4", + "OrganizationName": "Westview Pediatric Care LLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1917/api/FHIR/R4", + "OrganizationName": "Wildwood Pediatrics and Adolescent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1592/api/FHIR/R4", + "OrganizationName": "William Nisimblat MD PA TX dba Alice Pediatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1148/api/FHIR/R4", + "OrganizationName": "Wolff Center For Child \u0026 Adolescent Health PLLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2026/api/FHIR/R4", + "OrganizationName": "Wonder Kids Specialty Pediatrics PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/865/api/FHIR/R4", + "OrganizationName": "Woodhaven Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1991/api/FHIR/R4", + "OrganizationName": "Yazji Pediatric Care LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/Practice_Fusion_EndpointSources.json b/resources/prod_resources/Practice_Fusion_EndpointSources.json index d54010692..dc0ec8de1 100644 --- a/resources/prod_resources/Practice_Fusion_EndpointSources.json +++ b/resources/prod_resources/Practice_Fusion_EndpointSources.json @@ -2017,14 +2017,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", - "OrganizationName": "the fountain", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", + "OrganizationName": "Dr. Frank M Shanley PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", - "OrganizationName": "the fountain", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", + "OrganizationName": "Dr. Frank M Shanley PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -2040,18 +2040,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", - "OrganizationName": "Dr. Frank M Shanley PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", - "OrganizationName": "Dr. Frank M Shanley PA", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/771d5d38-3955-4c2e-84c3-d2393b45f409", "OrganizationName": "EvoCare MD", @@ -2088,6 +2076,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", + "OrganizationName": "Swenson Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", + "OrganizationName": "Swenson Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7b3236bf-df60-45f2-a070-6eddf505ffac", "OrganizationName": "Concord Recovery Center", @@ -2160,18 +2160,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", - "OrganizationName": "Swenson Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", - "OrganizationName": "Swenson Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/01edd596-cf1d-4ed1-a9af-80415cb455b5", "OrganizationName": "Gabrielle Cochran FNP", @@ -2196,6 +2184,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", + "OrganizationName": "GREATER HEALTH CENTER PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", + "OrganizationName": "GREATER HEALTH CENTER PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c8e98999-7b56-4466-a0a9-9e2a0f12a2f4", "OrganizationName": "Pediatric Wellness Center PA", @@ -2221,38 +2221,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", - "OrganizationName": "Infectious Disease Consultants (IDC)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", + "OrganizationName": "Centers for Whole Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", - "OrganizationName": "Infectious Disease Consultants (IDC)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", + "OrganizationName": "Centers for Whole Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", - "OrganizationName": "Lifestyle Neurology PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", + "OrganizationName": "Infectious Disease Consultants (IDC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", - "OrganizationName": "Lifestyle Neurology PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", + "OrganizationName": "Infectious Disease Consultants (IDC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", - "OrganizationName": "GREATER HEALTH CENTER PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", + "OrganizationName": "Lifestyle Neurology PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", - "OrganizationName": "GREATER HEALTH CENTER PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", + "OrganizationName": "Lifestyle Neurology PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -2280,18 +2280,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", - "OrganizationName": "Centers for Whole Health, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", - "OrganizationName": "Centers for Whole Health, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1d877af0-ed37-4c9c-8ed4-8f1afd543303", "OrganizationName": "Bristol Health", @@ -2389,38 +2377,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", - "OrganizationName": "Amar Mohan Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", + "OrganizationName": "Rizzi Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", - "OrganizationName": "Amar Mohan Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", + "OrganizationName": "Rizzi Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", - "OrganizationName": "Rizzi Psychiatric Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", + "OrganizationName": "Amar Mohan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", - "OrganizationName": "Rizzi Psychiatric Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", + "OrganizationName": "Amar Mohan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", - "OrganizationName": "Jose B Benigno Medical Clinic PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", + "OrganizationName": "Horizon Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", - "OrganizationName": "Jose B Benigno Medical Clinic PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", + "OrganizationName": "Horizon Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -2436,6 +2424,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", + "OrganizationName": "Egyptian Spine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", + "OrganizationName": "Egyptian Spine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", + "OrganizationName": "Jose B Benigno Medical Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", + "OrganizationName": "Jose B Benigno Medical Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/36431c28-3cb9-4262-8a04-56401b481f67", "OrganizationName": "AMINA MEDICAL CONSULTANTS", @@ -2449,26 +2461,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", - "OrganizationName": "Scenic City Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", + "OrganizationName": "J.F.K. Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", - "OrganizationName": "Scenic City Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", + "OrganizationName": "J.F.K. Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", - "OrganizationName": "Egyptian Spine Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", + "OrganizationName": "Scenic City Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", - "OrganizationName": "Egyptian Spine Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", + "OrganizationName": "Scenic City Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -2497,86 +2509,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", - "OrganizationName": "Horizon Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", + "OrganizationName": "FitScription M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", - "OrganizationName": "Horizon Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", + "OrganizationName": "FitScription M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", - "OrganizationName": "FitScription M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", + "OrganizationName": "Pimienta MD Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", - "OrganizationName": "FitScription M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", + "OrganizationName": "Pimienta MD Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", - "OrganizationName": "J.F.K. Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", + "OrganizationName": "Eastside Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", - "OrganizationName": "J.F.K. Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", + "OrganizationName": "Eastside Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", - "OrganizationName": "Pimienta MD Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", + "OrganizationName": "Arlia Rios LLuberas Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", - "OrganizationName": "Pimienta MD Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", + "OrganizationName": "Arlia Rios LLuberas Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", - "OrganizationName": "Integrative Headache Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", + "OrganizationName": "EdMed Mobile Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", - "OrganizationName": "Integrative Headache Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", + "OrganizationName": "EdMed Mobile Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", - "OrganizationName": "Dr. Richard Graulau Rosario", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", + "OrganizationName": "Integrative Headache Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", - "OrganizationName": "Dr. Richard Graulau Rosario", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", + "OrganizationName": "Integrative Headache Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", - "OrganizationName": "Eastside Nephrology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", + "OrganizationName": "Dr. Richard Graulau Rosario", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", - "OrganizationName": "Eastside Nephrology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", + "OrganizationName": "Dr. Richard Graulau Rosario", "NPIID": "", "OrganizationZipCode": "" }, @@ -2605,26 +2617,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", - "OrganizationName": "Arlia Rios LLuberas Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", - "OrganizationName": "Arlia Rios LLuberas Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", - "OrganizationName": "EdMed Mobile Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", + "OrganizationName": "Sierra Integrative Psychiatric Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", - "OrganizationName": "EdMed Mobile Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", + "OrganizationName": "Sierra Integrative Psychiatric Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -2640,18 +2640,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", - "OrganizationName": "Sierra Integrative Psychiatric Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", - "OrganizationName": "Sierra Integrative Psychiatric Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c90f4e27-2fca-4b5e-a032-03681b44c31c", "OrganizationName": "Alliance Rehabilitation", @@ -2725,38 +2713,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", - "OrganizationName": "Prime Cardiology of Nevada", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", + "OrganizationName": "Reliable Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", - "OrganizationName": "Prime Cardiology of Nevada", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", + "OrganizationName": "Reliable Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", - "OrganizationName": "Nancy Fong-Edwards Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", + "OrganizationName": "Prime Cardiology of Nevada", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", - "OrganizationName": "Nancy Fong-Edwards Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", - "OrganizationName": "Reliable Primary Care and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", - "OrganizationName": "Reliable Primary Care and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", + "OrganizationName": "Prime Cardiology of Nevada", "NPIID": "", "OrganizationZipCode": "" }, @@ -2773,14 +2749,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", - "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", + "OrganizationName": "Nancy Fong-Edwards Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", - "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", + "OrganizationName": "Nancy Fong-Edwards Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -2796,6 +2772,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", + "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", + "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d072e3d3-69cf-4fea-ac09-d3ef78cfdc07", "OrganizationName": "Diabetes and Lifestyle Management", @@ -2821,38 +2809,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", - "OrganizationName": "Stephanie Hendricks, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", + "OrganizationName": "Inpatient Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", - "OrganizationName": "Stephanie Hendricks, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", + "OrganizationName": "Inpatient Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", - "OrganizationName": "New Life Medical Associates, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", + "OrganizationName": "Stephanie Hendricks, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", - "OrganizationName": "New Life Medical Associates, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", + "OrganizationName": "Stephanie Hendricks, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", - "OrganizationName": "Inpatient Physician Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", + "OrganizationName": "New Life Medical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", - "OrganizationName": "Inpatient Physician Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", + "OrganizationName": "New Life Medical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -2917,26 +2905,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", - "OrganizationName": "Michigan Infectious Disease Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", + "OrganizationName": "Ashe Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", - "OrganizationName": "Michigan Infectious Disease Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", + "OrganizationName": "Ashe Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", - "OrganizationName": "Ashe Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", + "OrganizationName": "Michigan Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", - "OrganizationName": "Ashe Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", + "OrganizationName": "Michigan Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -2989,26 +2977,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", - "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", + "OrganizationName": "Melanie S. Haddox, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", - "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", + "OrganizationName": "Melanie S. Haddox, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", - "OrganizationName": "Melanie S. Haddox, MD, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", + "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", - "OrganizationName": "Melanie S. Haddox, MD, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", + "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, @@ -3084,6 +3072,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", + "OrganizationName": "Skender Murtezani, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", + "OrganizationName": "Skender Murtezani, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a37426c5-0079-4407-9b6b-271db6d6b0c6", "OrganizationName": "Wendy K. Y. Ng, MD Plastic Surgery and Hand Surgery", @@ -3121,26 +3121,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", - "OrganizationName": "Skender Murtezani, M.D., LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", + "OrganizationName": "Wild Rose Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", - "OrganizationName": "Skender Murtezani, M.D., LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", + "OrganizationName": "Wild Rose Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", - "OrganizationName": "Wild Rose Clinic, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", + "OrganizationName": "Primary Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", - "OrganizationName": "Wild Rose Clinic, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", + "OrganizationName": "Primary Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3157,14 +3157,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", - "OrganizationName": "Primary Medicine, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", + "OrganizationName": "premier care rehabilitation Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", - "OrganizationName": "Primary Medicine, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", + "OrganizationName": "premier care rehabilitation Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -3205,14 +3205,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", - "OrganizationName": "premier care rehabilitation Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", + "OrganizationName": "AG Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", - "OrganizationName": "premier care rehabilitation Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", + "OrganizationName": "AG Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3241,26 +3241,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", - "OrganizationName": "AG Family Medicine, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", + "OrganizationName": "Danny Benmoshe M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", - "OrganizationName": "AG Family Medicine, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", + "OrganizationName": "Danny Benmoshe M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", - "OrganizationName": "Danny Benmoshe M.D. Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", + "OrganizationName": "Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", - "OrganizationName": "Danny Benmoshe M.D. Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", + "OrganizationName": "Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -3289,26 +3289,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", - "OrganizationName": "Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", + "OrganizationName": "Ramon Sanchez MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", - "OrganizationName": "Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", + "OrganizationName": "Ramon Sanchez MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", - "OrganizationName": "Family Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", + "OrganizationName": "Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", - "OrganizationName": "Family Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", + "OrganizationName": "Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -3324,18 +3324,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", - "OrganizationName": "Ramon Sanchez MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", - "OrganizationName": "Ramon Sanchez MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/33e64165-3901-4d73-8490-5a17a77916be", "OrganizationName": "Centro de Salud Mental", @@ -3349,26 +3337,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", - "OrganizationName": "Dugan Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", - "OrganizationName": "Dugan Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", - "OrganizationName": "Clinica M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", + "OrganizationName": "Dugan Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", - "OrganizationName": "Clinica M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", + "OrganizationName": "Dugan Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -3469,26 +3457,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", - "OrganizationName": "Hunter Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", + "OrganizationName": "Hyde Park Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", - "OrganizationName": "Hunter Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", + "OrganizationName": "Hyde Park Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", - "OrganizationName": "Hyde Park Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", + "OrganizationName": "Hunter Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", - "OrganizationName": "Hyde Park Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", + "OrganizationName": "Hunter Neurology", "NPIID": "", "OrganizationZipCode": "" }, @@ -3577,38 +3565,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", - "OrganizationName": "Medicina Interna", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", + "OrganizationName": "Gables Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", - "OrganizationName": "Medicina Interna", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", + "OrganizationName": "Gables Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", - "OrganizationName": "Restoring Minds Center for Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", + "OrganizationName": "Medicina Interna", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", - "OrganizationName": "Restoring Minds Center for Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", + "OrganizationName": "Medicina Interna", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", - "OrganizationName": "Gables Medical LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", + "OrganizationName": "Restoring Minds Center for Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", - "OrganizationName": "Gables Medical LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", + "OrganizationName": "Restoring Minds Center for Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -3709,26 +3697,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", - "OrganizationName": "Ianua Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", + "OrganizationName": "Ravi Badlani MDSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", - "OrganizationName": "Ianua Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", + "OrganizationName": "Ravi Badlani MDSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", - "OrganizationName": "Ravi Badlani MDSC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", + "OrganizationName": "Ianua Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", - "OrganizationName": "Ravi Badlani MDSC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", + "OrganizationName": "Ianua Health LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3769,26 +3757,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", - "OrganizationName": "Diane Cuff-Carney Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", + "OrganizationName": "Therapeutic Solutions of Corbin LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", - "OrganizationName": "Diane Cuff-Carney Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", - "OrganizationName": "Therapeutic Solutions of Corbin LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", - "OrganizationName": "Therapeutic Solutions of Corbin LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", + "OrganizationName": "Therapeutic Solutions of Corbin LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3829,26 +3805,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", - "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", + "OrganizationName": "swaroop nyshadham", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", - "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", + "OrganizationName": "swaroop nyshadham", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", - "OrganizationName": "swaroop nyshadham", + "URL": "https://api.patientfusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", + "OrganizationName": "Diane Cuff-Carney Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", - "OrganizationName": "swaroop nyshadham", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", + "OrganizationName": "Diane Cuff-Carney Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", + "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", + "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", "NPIID": "", "OrganizationZipCode": "" }, @@ -3924,6 +3912,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", + "OrganizationName": "nesheiwat medical practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", + "OrganizationName": "nesheiwat medical practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/54ef6de9-2e00-4eaf-85c2-d6658e28cd36", "OrganizationName": "Instic Health LLC", @@ -3960,18 +3960,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", - "OrganizationName": "nesheiwat medical practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", - "OrganizationName": "nesheiwat medical practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4dae27b3-511a-4531-b473-8515a4009cbd", "OrganizationName": "Jimmy Liu MD, PA", @@ -4069,26 +4057,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", - "OrganizationName": "Mark Bornstein Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", + "OrganizationName": "Jeet Bhaidasna Medical Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", - "OrganizationName": "Mark Bornstein Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", + "OrganizationName": "Jeet Bhaidasna Medical Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", - "OrganizationName": "Jeet Bhaidasna Medical Care PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", - "OrganizationName": "Jeet Bhaidasna Medical Care PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -4116,6 +4104,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1941a4a5-50a1-45c9-b687-9a2e62b50487", "OrganizationName": "Myriam Allende Practice", @@ -4129,26 +4129,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", - "OrganizationName": "Primary Care For U Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", + "OrganizationName": "Nowata Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", - "OrganizationName": "Primary Care For U Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", + "OrganizationName": "Nowata Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", - "OrganizationName": "Kolibri", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", + "OrganizationName": "Primary Care For U Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", - "OrganizationName": "Kolibri", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", + "OrganizationName": "Primary Care For U Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -4165,50 +4165,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", - "OrganizationName": "Nowata Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", + "OrganizationName": "Radulovic family practice and weight loss center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", - "OrganizationName": "Nowata Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", + "OrganizationName": "Radulovic family practice and weight loss center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", - "OrganizationName": "Michigan Nutrigenetics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", + "OrganizationName": "Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", - "OrganizationName": "Michigan Nutrigenetics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", + "OrganizationName": "Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", - "OrganizationName": "Radulovic family practice and weight loss center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", + "OrganizationName": "Michigan Nutrigenetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", - "OrganizationName": "Radulovic family practice and weight loss center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", + "OrganizationName": "Michigan Nutrigenetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", - "OrganizationName": "Integrative Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", + "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", - "OrganizationName": "Integrative Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", + "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4225,14 +4225,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", - "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", + "OrganizationName": "Ferdinand Armas, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", - "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", + "OrganizationName": "Ferdinand Armas, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -4260,18 +4260,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", - "OrganizationName": "Ferdinand Armas, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", - "OrganizationName": "Ferdinand Armas, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/56b0b244-55fc-476b-be92-97d8089cbfa8", "OrganizationName": "Dr. Iván O. Pérez Rivera, MD", @@ -4464,6 +4452,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/41f03d00-c0b0-4c39-b068-9968bd31cc96", "OrganizationName": "PRIMARY CARE SOLUTIONS JACKSONVILLE LLC dba Jax Housecalls", @@ -4512,18 +4512,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", - "OrganizationName": "Coastal Podiatry Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", - "OrganizationName": "Coastal Podiatry Group", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3cbb4207-f011-42c4-9326-cf78d1484299", "OrganizationName": "Colorado ProHealth Rehab- Kids \u0026 Adults", @@ -4573,50 +4561,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", - "OrganizationName": "Katzal Consultants", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", + "OrganizationName": "PrimeCare Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", - "OrganizationName": "Katzal Consultants", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", + "OrganizationName": "PrimeCare Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", - "OrganizationName": "Liset Avalos Enriquez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", + "OrganizationName": "Katzal Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", - "OrganizationName": "Liset Avalos Enriquez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", + "OrganizationName": "Katzal Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", - "OrganizationName": "PrimeCare Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", + "OrganizationName": "Chad Brock- Shrink Savannah", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", - "OrganizationName": "PrimeCare Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", + "OrganizationName": "Chad Brock- Shrink Savannah", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", - "OrganizationName": "Chad Brock- Shrink Savannah", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", + "OrganizationName": "Liset Avalos Enriquez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", - "OrganizationName": "Chad Brock- Shrink Savannah", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", + "OrganizationName": "Liset Avalos Enriquez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -4657,26 +4645,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", - "OrganizationName": "Adriana Arcila", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", + "OrganizationName": "Comprehensive Care Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", - "OrganizationName": "Adriana Arcila", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", + "OrganizationName": "Comprehensive Care Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", - "OrganizationName": "Comprehensive Care Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", + "OrganizationName": "Adriana Arcila", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", - "OrganizationName": "Comprehensive Care Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", + "OrganizationName": "Adriana Arcila", "NPIID": "", "OrganizationZipCode": "" }, @@ -4752,6 +4740,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", + "OrganizationName": "Harmony Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", + "OrganizationName": "Harmony Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/eeff2186-45cc-4f75-a092-711b81ccbec1", "OrganizationName": "Essence Health Medical Group", @@ -4801,14 +4801,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", - "OrganizationName": "Harmony Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", + "OrganizationName": "Dariush Zandi MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", - "OrganizationName": "Harmony Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", + "OrganizationName": "Dariush Zandi MD Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -4825,20 +4825,8 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", - "OrganizationName": "Dariush Zandi MD Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", - "OrganizationName": "Dariush Zandi MD Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", - "OrganizationName": "MZF MEDICAL SERVICES, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", + "OrganizationName": "MZF MEDICAL SERVICES, P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -4861,74 +4849,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", - "OrganizationName": "Family Choice Medical Clinic, P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", + "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", - "OrganizationName": "Family Choice Medical Clinic, P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", + "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", - "OrganizationName": "North Jersey Interventional Pain Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", + "OrganizationName": "Mental Autonomy Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", - "OrganizationName": "North Jersey Interventional Pain Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", + "OrganizationName": "Mental Autonomy Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", - "OrganizationName": "AAMDInc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", + "OrganizationName": "Family Choice Medical Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", - "OrganizationName": "AAMDInc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", + "OrganizationName": "Family Choice Medical Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", - "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", + "OrganizationName": "North Jersey Interventional Pain Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", - "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", + "OrganizationName": "North Jersey Interventional Pain Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", - "OrganizationName": "Mental Autonomy Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", + "OrganizationName": "Buckeye Health and Research", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", - "OrganizationName": "Mental Autonomy Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", + "OrganizationName": "Buckeye Health and Research", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", - "OrganizationName": "Buckeye Health and Research", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", + "OrganizationName": "AAMDInc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", - "OrganizationName": "Buckeye Health and Research", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", + "OrganizationName": "AAMDInc", "NPIID": "", "OrganizationZipCode": "" }, @@ -4945,26 +4933,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", - "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", + "OrganizationName": "Transcend Company", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", - "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", + "OrganizationName": "Transcend Company", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", - "OrganizationName": "Transcend Company", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", + "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", - "OrganizationName": "Transcend Company", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", + "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", "NPIID": "", "OrganizationZipCode": "" }, @@ -4980,6 +4968,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", + "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", + "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c88ff882-e8d2-49bd-bded-c22aec3faafc", "OrganizationName": "ALBERT D CHAN MD INC", @@ -5029,26 +5029,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", - "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", + "OrganizationName": "HealthFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", - "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", + "OrganizationName": "HealthFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", - "OrganizationName": "HealthFirst", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", + "OrganizationName": "South Florida Internists Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", - "OrganizationName": "HealthFirst", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", + "OrganizationName": "South Florida Internists Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -5065,14 +5065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", - "OrganizationName": "South Florida Internists Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", + "OrganizationName": "Carlos Carrion Lorenzo Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", - "OrganizationName": "South Florida Internists Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", + "OrganizationName": "Carlos Carrion Lorenzo Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -5089,14 +5089,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", - "OrganizationName": "Carlos Carrion Lorenzo Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", + "OrganizationName": "Pulaski County Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", - "OrganizationName": "Carlos Carrion Lorenzo Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", + "OrganizationName": "Pulaski County Health Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -5124,18 +5124,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", - "OrganizationName": "Pulaski County Health Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", - "OrganizationName": "Pulaski County Health Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b880ac0b-a9a6-4444-8805-5ca0779dacba", "OrganizationName": "Wellbein Orthopedic Xpress", @@ -5196,6 +5184,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", + "OrganizationName": "Paradise Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", + "OrganizationName": "Paradise Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9137a705-8d05-406a-8391-76ee819b2a5d", "OrganizationName": "Nowobilska Medical Practice LTD", @@ -5244,18 +5244,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", - "OrganizationName": "Paradise Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", - "OrganizationName": "Paradise Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/937b801c-de5f-4bd9-9a7a-4a710ddb89bf", "OrganizationName": "Smart Health and Wellness, PLLC", @@ -5269,26 +5257,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", - "OrganizationName": "Rene Lee Medical Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", + "OrganizationName": "Francis Camillo MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", - "OrganizationName": "Rene Lee Medical Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", + "OrganizationName": "Francis Camillo MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", - "OrganizationName": "Francis Camillo MD PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", - "OrganizationName": "Francis Camillo MD PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -5340,6 +5328,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", + "OrganizationName": "BEST HEALTHCARE ACCESS Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", + "OrganizationName": "BEST HEALTHCARE ACCESS Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4be8dde3-2720-4255-a011-2f95569e2492", "OrganizationName": "Dr. Richard Stewart Chiropractor", @@ -5352,6 +5352,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", + "OrganizationName": "Brazos Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", + "OrganizationName": "Brazos Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7de0b9c3-0ba4-42e7-a278-2027387274fd", "OrganizationName": "Debdeep Nath PNP", @@ -5389,38 +5401,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", - "OrganizationName": "BEST HEALTHCARE ACCESS Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", - "OrganizationName": "BEST HEALTHCARE ACCESS Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", - "OrganizationName": "Brazos Primary Care Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", + "OrganizationName": "Symphony Healthcare Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", - "OrganizationName": "Brazos Primary Care Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", + "OrganizationName": "Symphony Healthcare Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", - "OrganizationName": "Symphony Healthcare Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", + "OrganizationName": "Hassan Alsabbak MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", - "OrganizationName": "Symphony Healthcare Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", + "OrganizationName": "Hassan Alsabbak MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -5449,14 +5449,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", - "OrganizationName": "Hassan Alsabbak MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", + "OrganizationName": "Visiting Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", - "OrganizationName": "Hassan Alsabbak MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", + "OrganizationName": "Visiting Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -5496,18 +5496,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", - "OrganizationName": "Visiting Medical Group LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", - "OrganizationName": "Visiting Medical Group LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/160cf964-e74c-4b95-b317-b20415321b5d", "OrganizationName": "GAOD Medical Services", @@ -5544,18 +5532,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", - "OrganizationName": "Integrity Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", - "OrganizationName": "Integrity Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5edad73f-6c22-4ee5-9280-a8033b7c6648", "OrganizationName": "Butzin, Matoshko and Assoc. Chiropractic Clinics P.L.L.C", @@ -5568,6 +5544,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", + "OrganizationName": "Integrity Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", + "OrganizationName": "Integrity Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ec1c3871-47ed-4475-847a-c5b3f31767a5", "OrganizationName": "Kenneth Henschel, MD LLC", @@ -5592,6 +5580,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", + "OrganizationName": "Bayfront Medical Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", + "OrganizationName": "Bayfront Medical Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7bfd4f39-dae9-4eba-baa8-91ec4c762f8d", "OrganizationName": "Simone Van-Horne, MD", @@ -5640,18 +5640,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", - "OrganizationName": "Bayfront Medical Associates LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", - "OrganizationName": "Bayfront Medical Associates LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/164bc67f-49b5-43ee-9834-f7a388fadcda", "OrganizationName": "DAVID T LE MD PA", @@ -5724,6 +5712,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", + "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", + "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ac148ea1-0516-4206-a3c8-42dd6fb04b9c", "OrganizationName": "The MeSCO Free Community Clinic", @@ -5760,18 +5760,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", - "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", - "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", "OrganizationName": "Calata Medical Group, INC", @@ -5796,6 +5784,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", + "OrganizationName": "Gerald Maguire Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", + "OrganizationName": "Gerald Maguire Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3a23a00f-7bcd-4074-b5ba-beeb5683b66f", "OrganizationName": "TREASURE HEALTH SYSTEMS, INC", @@ -5832,18 +5832,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", - "OrganizationName": "Gerald Maguire Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", - "OrganizationName": "Gerald Maguire Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/167ac2b8-6e36-470b-94a1-e0629d309ef0", "OrganizationName": "La Plata Medical Examiners", @@ -5904,6 +5892,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", + "OrganizationName": "Curify Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", + "OrganizationName": "Curify Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4f2eda-b19b-4fb7-a9a1-10f7e9cd07e1", "OrganizationName": "Dr. Morgenstern Medical PLLC", @@ -5917,14 +5917,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", - "OrganizationName": "Curify Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", + "OrganizationName": "Summers County Health Department", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", - "OrganizationName": "Curify Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", + "OrganizationName": "Summers County Health Department", "NPIID": "", "OrganizationZipCode": "" }, @@ -5965,26 +5965,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", - "OrganizationName": "Summers County Health Department", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", + "OrganizationName": "Si-hoi Lam MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", - "OrganizationName": "Summers County Health Department", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", + "OrganizationName": "Si-hoi Lam MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", - "OrganizationName": "Si-hoi Lam MD LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", + "OrganizationName": "Center for Colon and Digestive Diseases", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", - "OrganizationName": "Si-hoi Lam MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", + "OrganizationName": "Center for Colon and Digestive Diseases", "NPIID": "", "OrganizationZipCode": "" }, @@ -6001,14 +6001,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", - "OrganizationName": "Center for Colon and Digestive Diseases", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", + "OrganizationName": "Radiant", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", - "OrganizationName": "Center for Colon and Digestive Diseases", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", + "OrganizationName": "Radiant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", + "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", + "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, @@ -6048,30 +6060,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", - "OrganizationName": "Radiant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", - "OrganizationName": "Radiant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", - "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", - "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/679662f1-9b45-4400-b720-307cc75cb9c2", "OrganizationName": "PEDRO P CARBALLO MD PA", @@ -6109,26 +6097,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", - "OrganizationName": "Vital Life, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", + "OrganizationName": "Maspóns Pediatric Gastro", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", - "OrganizationName": "Vital Life, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", + "OrganizationName": "Maspóns Pediatric Gastro", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", - "OrganizationName": "Maspóns Pediatric Gastro", + "URL": "https://api.patientfusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", + "OrganizationName": "Vital Life, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", - "OrganizationName": "Maspóns Pediatric Gastro", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", + "OrganizationName": "Vital Life, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6156,18 +6144,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", - "OrganizationName": "Lisa Swansen FNP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", - "OrganizationName": "Lisa Swansen FNP", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1c1e37cb-bd98-4cdc-a6e6-17b238d663f0", "OrganizationName": "Dr John Robinson", @@ -6193,62 +6169,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", - "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", + "OrganizationName": "Lisa Swansen FNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", - "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", + "OrganizationName": "Lisa Swansen FNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", - "OrganizationName": "Annapolis Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", + "OrganizationName": "9-FIVE Clinics, inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", - "OrganizationName": "Annapolis Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", + "OrganizationName": "9-FIVE Clinics, inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", - "OrganizationName": "9-FIVE Clinics, inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", + "OrganizationName": "Meeting House Family Counsing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", - "OrganizationName": "9-FIVE Clinics, inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", + "OrganizationName": "Meeting House Family Counsing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", - "OrganizationName": "Vance Hale Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", + "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", - "OrganizationName": "Vance Hale Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", + "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", - "OrganizationName": "Meeting House Family Counsing", + "URL": "https://api.patientfusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", + "OrganizationName": "Annapolis Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", - "OrganizationName": "Meeting House Family Counsing", + "URL": "https://api.practicefusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", + "OrganizationName": "Annapolis Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", + "OrganizationName": "Vance Hale Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", + "OrganizationName": "Vance Hale Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -6348,18 +6336,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", - "OrganizationName": "Comprehensive Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", - "OrganizationName": "Comprehensive Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a1ffb535-2d70-4c91-b51e-83ac1c2ff70c", "OrganizationName": "Centro Medico Del Niño", @@ -6372,6 +6348,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", + "OrganizationName": "Comprehensive Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", + "OrganizationName": "Comprehensive Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1bceba12-dcc7-4973-9d1a-ee429e332f09", "OrganizationName": "Long Island Family NP, PC", @@ -6396,6 +6384,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", + "OrganizationName": "Brondon Foot and Ankle LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", + "OrganizationName": "Brondon Foot and Ankle LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4116b335-7fad-4bdc-b2c7-17b3c2dba70b", "OrganizationName": "Massachusetts Mind Center", @@ -6421,14 +6421,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", - "OrganizationName": "Brondon Foot and Ankle LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", + "OrganizationName": "Healing Touch C \u0026 C,Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", - "OrganizationName": "Brondon Foot and Ankle LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", + "OrganizationName": "Healing Touch C \u0026 C,Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -6481,14 +6481,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", - "OrganizationName": "Healing Touch C \u0026 C,Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", + "OrganizationName": "At Your Door Physician Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", - "OrganizationName": "Healing Touch C \u0026 C,Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", + "OrganizationName": "At Your Door Physician Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -6504,18 +6504,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", - "OrganizationName": "At Your Door Physician Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", - "OrganizationName": "At Your Door Physician Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c18ea4a4-31db-428b-84b8-6b6faf506e6d", "OrganizationName": "Bryan Internal Medicine", @@ -6553,62 +6541,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", - "OrganizationName": "Freeway Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", + "OrganizationName": "Faith Healthcare and Healing, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", - "OrganizationName": "Freeway Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", + "OrganizationName": "Faith Healthcare and Healing, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", - "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", + "OrganizationName": "Freeway Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", - "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", + "OrganizationName": "Freeway Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", - "OrganizationName": "Salsberry Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", + "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", - "OrganizationName": "Salsberry Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", + "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", - "OrganizationName": "Faith Healthcare and Healing, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", + "OrganizationName": "VQS Access Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", - "OrganizationName": "Faith Healthcare and Healing, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", + "OrganizationName": "VQS Access Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", - "OrganizationName": "VQS Access Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", + "OrganizationName": "Salsberry Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", - "OrganizationName": "VQS Access Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", + "OrganizationName": "Salsberry Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6672,6 +6660,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", + "OrganizationName": "Maria Rojas Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", + "OrganizationName": "Maria Rojas Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2d5dc4e4-4351-4775-82ba-d3afb61bc91d", "OrganizationName": "iHeal Health and Wellness Center", @@ -6721,26 +6721,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", - "OrganizationName": "Maria Rojas Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", + "OrganizationName": "Beacom Family Health Connection", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", - "OrganizationName": "Maria Rojas Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", + "OrganizationName": "Beacom Family Health Connection", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", - "OrganizationName": "Beacom Family Health Connection", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", + "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", - "OrganizationName": "Beacom Family Health Connection", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", + "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -6757,14 +6757,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", - "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", - "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -6793,62 +6793,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", - "OrganizationName": "Shahab Mokhtare Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", - "OrganizationName": "Shahab Mokhtare Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", - "OrganizationName": "Arca Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", + "OrganizationName": "West Boise Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", - "OrganizationName": "Arca Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", + "OrganizationName": "West Boise Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", - "OrganizationName": "Zullimary Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", + "OrganizationName": "Shahab Mokhtare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", - "OrganizationName": "Zullimary Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", + "OrganizationName": "Shahab Mokhtare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", - "OrganizationName": "West Boise Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", + "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", - "OrganizationName": "West Boise Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", + "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", - "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Zullimary Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", - "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Zullimary Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -6949,26 +6937,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", - "OrganizationName": "Lynx Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", + "OrganizationName": "Vitality Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", - "OrganizationName": "Lynx Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", + "OrganizationName": "Vitality Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", - "OrganizationName": "Vitality Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", + "OrganizationName": "Lynx Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", - "OrganizationName": "Vitality Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", + "OrganizationName": "Lynx Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -6996,18 +6984,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", - "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", - "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/54d0617c-caed-4f35-ae16-4a69ce111e6b", "OrganizationName": "Joslyn Gumbs MD OBGYN", @@ -7044,6 +7020,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", + "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", + "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fb202375-5be7-4456-9534-addb2b0c2054", "OrganizationName": "Carlos Delgado MD PA", @@ -7128,6 +7116,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", + "OrganizationName": "StatCare Urgent Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", + "OrganizationName": "StatCare Urgent Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0ace65d3-2ccc-4b20-905d-d1e95b5397e3", "OrganizationName": "Institute of Modern Pulmonary and Sleep Medicine", @@ -7164,18 +7164,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", - "OrganizationName": "StatCare Urgent Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", - "OrganizationName": "StatCare Urgent Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", "OrganizationName": "Reliance Medical Associates of Jax, LLC", @@ -7224,6 +7212,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", + "OrganizationName": "Dr. Jose M. Ortega Velez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", + "OrganizationName": "Dr. Jose M. Ortega Velez", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4fc11075-9fe1-4644-89b9-f810d06c118d", "OrganizationName": "Abundant Health Family Care", @@ -7249,38 +7249,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", - "OrganizationName": "Dr. Jose M. Ortega Velez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", + "OrganizationName": "The Family Practice of Madison", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", - "OrganizationName": "Dr. Jose M. Ortega Velez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", + "OrganizationName": "The Family Practice of Madison", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", - "OrganizationName": "The Family Practice of Madison", + "URL": "https://api.patientfusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", + "OrganizationName": "Shalem Healing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", - "OrganizationName": "The Family Practice of Madison", + "URL": "https://api.practicefusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", + "OrganizationName": "Shalem Healing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", - "OrganizationName": "Shalem Healing", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", + "OrganizationName": "Nova Medica PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", - "OrganizationName": "Shalem Healing", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", + "OrganizationName": "Nova Medica PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7320,18 +7320,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", - "OrganizationName": "Nova Medica PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", - "OrganizationName": "Nova Medica PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75935c5e-9e6d-4f69-86f3-f64e5dc99b44", "OrganizationName": "Cindy Drew ARNP", @@ -7381,26 +7369,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", - "OrganizationName": "Boston Psychiatric Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", + "OrganizationName": "Juli A.Weitzen DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", - "OrganizationName": "Boston Psychiatric Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", + "OrganizationName": "Juli A.Weitzen DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", - "OrganizationName": "Juli A.Weitzen DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", + "OrganizationName": "Boston Psychiatric Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", - "OrganizationName": "Juli A.Weitzen DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", + "OrganizationName": "Boston Psychiatric Care LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7429,26 +7417,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", - "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", + "OrganizationName": "HENRY E PAEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", - "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", + "OrganizationName": "HENRY E PAEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", - "OrganizationName": "HENRY E PAEZ", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", + "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", - "OrganizationName": "HENRY E PAEZ", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", + "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -7465,98 +7453,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", - "OrganizationName": "Aspire Wellness Center, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", + "OrganizationName": "Whitehouse Family Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", - "OrganizationName": "Aspire Wellness Center, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", + "OrganizationName": "Whitehouse Family Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", - "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", + "URL": "https://api.patientfusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", - "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", + "URL": "https://api.practicefusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", - "OrganizationName": "Family Healthcare of Jackson", + "URL": "https://api.patientfusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", + "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", - "OrganizationName": "Family Healthcare of Jackson", + "URL": "https://api.practicefusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", + "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", - "OrganizationName": "Whitehouse Family Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", + "OrganizationName": "Restore First Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", - "OrganizationName": "Whitehouse Family Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", + "OrganizationName": "Restore First Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", - "OrganizationName": "Carine Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", + "OrganizationName": "Brugman Attention Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", - "OrganizationName": "Carine Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", + "OrganizationName": "Brugman Attention Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", - "OrganizationName": "Restore First Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", + "OrganizationName": "Batts Health Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", - "OrganizationName": "Restore First Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", + "OrganizationName": "Batts Health Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", - "OrganizationName": "Brugman Attention Associates, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", + "OrganizationName": "Family Healthcare of Jackson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", - "OrganizationName": "Brugman Attention Associates, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", + "OrganizationName": "Family Healthcare of Jackson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", - "OrganizationName": "Batts Health Consulting", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", + "OrganizationName": "Carine Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", - "OrganizationName": "Batts Health Consulting", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", + "OrganizationName": "Carine Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -7632,6 +7620,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ed143dd2-f3d1-45e6-859f-c52bbe3c74e9", "OrganizationName": "Psychological \u0026 Counseling Center of Texarkana", @@ -7681,26 +7681,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", - "OrganizationName": "Island Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", + "OrganizationName": "Heart and Vascular Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", - "OrganizationName": "Island Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", + "OrganizationName": "Heart and Vascular Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", - "OrganizationName": "Heart and Vascular Associates LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", - "OrganizationName": "Heart and Vascular Associates LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -7728,18 +7728,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", - "OrganizationName": "Deepak Seth M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", - "OrganizationName": "Deepak Seth M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9f3b072a-9199-4c31-a094-d59eb48fd239", "OrganizationName": "Northern Lights Health, LLC", @@ -7848,6 +7836,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", + "OrganizationName": "Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", + "OrganizationName": "Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/220393ee-a789-41d9-a5bd-541d5aacc250", "OrganizationName": "INSTITUTE FOR BEHAVIORAL MEDICINE", @@ -7884,18 +7884,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", - "OrganizationName": "Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", - "OrganizationName": "Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6e0b8bf2-d8fa-462b-8918-f4f5d9d36ec3", "OrganizationName": "Sam Medical Center of America PLLC", @@ -7909,26 +7897,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", - "OrganizationName": "Delta pain consultant", + "URL": "https://api.patientfusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", + "OrganizationName": "365 On Call, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", - "OrganizationName": "Delta pain consultant", + "URL": "https://api.practicefusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", + "OrganizationName": "365 On Call, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", - "OrganizationName": "365 On Call, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", + "OrganizationName": "Delta pain consultant", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", - "OrganizationName": "365 On Call, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", + "OrganizationName": "Delta pain consultant", "NPIID": "", "OrganizationZipCode": "" }, @@ -7945,26 +7933,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", - "OrganizationName": "MB Advanced Surgery Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", + "OrganizationName": "Roderick Vergel de Dios,MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", - "OrganizationName": "MB Advanced Surgery Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", + "OrganizationName": "Roderick Vergel de Dios,MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", - "OrganizationName": "Roderick Vergel de Dios,MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", + "OrganizationName": "MB Advanced Surgery Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", - "OrganizationName": "Roderick Vergel de Dios,MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", + "OrganizationName": "MB Advanced Surgery Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -8017,50 +8005,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", - "OrganizationName": "Connie D. Chappel, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", + "OrganizationName": "The Downing Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", - "OrganizationName": "Connie D. Chappel, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", + "OrganizationName": "The Downing Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", - "OrganizationName": "kimberly miletti Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", + "OrganizationName": "Connie D. Chappel, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", - "OrganizationName": "kimberly miletti Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", + "OrganizationName": "Connie D. Chappel, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", - "OrganizationName": "The Downing Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", + "OrganizationName": "kimberly miletti Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", - "OrganizationName": "The Downing Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", + "OrganizationName": "kimberly miletti Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", - "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", + "OrganizationName": "Advanced Surgical Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", - "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", + "OrganizationName": "Advanced Surgical Institute", "NPIID": "", "OrganizationZipCode": "" }, @@ -8077,14 +8065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", - "OrganizationName": "Advanced Surgical Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", + "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", - "OrganizationName": "Advanced Surgical Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", + "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -8100,6 +8088,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", + "OrganizationName": "Health and Aging Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", + "OrganizationName": "Health and Aging Management", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a8f428d7-172a-4ec9-b548-df9dc835b0e6", "OrganizationName": "Marin Eye and Ear", @@ -8137,14 +8137,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", - "OrganizationName": "Health and Aging Management", + "URL": "https://api.patientfusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", + "OrganizationName": "Clinica Medica Mi Salud", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", - "OrganizationName": "Health and Aging Management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", + "OrganizationName": "Clinica Medica Mi Salud", "NPIID": "", "OrganizationZipCode": "" }, @@ -8160,18 +8160,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", - "OrganizationName": "Clinica Medica Mi Salud", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", - "OrganizationName": "Clinica Medica Mi Salud", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/73a1e2a8-c805-482f-8e8a-dcc5f83ee5ee", "OrganizationName": "Action Chiropractic and Sports Injury Center", @@ -8269,26 +8257,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", - "OrganizationName": "Bernard Rose, Beavertown Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", + "OrganizationName": "Body RX Gables", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", - "OrganizationName": "Bernard Rose, Beavertown Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", + "OrganizationName": "Body RX Gables", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", - "OrganizationName": "Body RX Gables", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", + "OrganizationName": "Bernard Rose, Beavertown Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", - "OrganizationName": "Body RX Gables", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", + "OrganizationName": "Bernard Rose, Beavertown Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -8317,38 +8305,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", + "OrganizationName": "Browne Medical PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", + "OrganizationName": "Browne Medical PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", - "OrganizationName": "DHMR Clinics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", + "OrganizationName": "Broward weight loss \u0026 Primary care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", - "OrganizationName": "DHMR Clinics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", + "OrganizationName": "Broward weight loss \u0026 Primary care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", - "OrganizationName": "Browne Medical PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", + "OrganizationName": "Carlos F. Fuster, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", - "OrganizationName": "Browne Medical PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", + "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", + "OrganizationName": "DHMR Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", + "OrganizationName": "DHMR Clinics", "NPIID": "", "OrganizationZipCode": "" }, @@ -8365,14 +8365,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", - "OrganizationName": "Broward weight loss \u0026 Primary care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", + "OrganizationName": "Dynamic Health \u0026 Energy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", - "OrganizationName": "Broward weight loss \u0026 Primary care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", + "OrganizationName": "Dynamic Health \u0026 Energy", "NPIID": "", "OrganizationZipCode": "" }, @@ -8401,14 +8401,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", - "OrganizationName": "Dynamic Health \u0026 Energy", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", + "OrganizationName": "Ed Matthews Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", - "OrganizationName": "Dynamic Health \u0026 Energy", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", + "OrganizationName": "Ed Matthews Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -8436,18 +8436,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7058c7fe-0766-40fd-8ea2-26f1dd67c175", "OrganizationName": "Firstfruits Medical Clinic", @@ -8473,38 +8461,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", - "OrganizationName": "FAITHFIRST HEALTH CLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", + "OrganizationName": "Galenos Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", - "OrganizationName": "FAITHFIRST HEALTH CLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", + "OrganizationName": "Galenos Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", - "OrganizationName": "FORTRESS Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", + "OrganizationName": "FAITHFIRST HEALTH CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", - "OrganizationName": "FORTRESS Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", + "OrganizationName": "FAITHFIRST HEALTH CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", - "OrganizationName": "Galenos Medical Centers", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", + "OrganizationName": "FORTRESS Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", - "OrganizationName": "Galenos Medical Centers", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", + "OrganizationName": "FORTRESS Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -8533,14 +8521,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", - "OrganizationName": "The Kroll Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", + "OrganizationName": "Grupo Renal Del Este", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", - "OrganizationName": "The Kroll Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", + "OrganizationName": "Grupo Renal Del Este", "NPIID": "", "OrganizationZipCode": "" }, @@ -8557,74 +8545,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", - "OrganizationName": "VitalBridge Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", + "OrganizationName": "Impact Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", - "OrganizationName": "VitalBridge Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", + "OrganizationName": "Impact Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", - "OrganizationName": "Grupo Renal Del Este", + "URL": "https://api.patientfusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", - "OrganizationName": "Grupo Renal Del Este", + "URL": "https://api.practicefusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", - "OrganizationName": "New Jersey Heart and Vein", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", - "OrganizationName": "New Jersey Heart and Vein", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", - "OrganizationName": "Impact Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", + "OrganizationName": "VitalBridge Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", - "OrganizationName": "Impact Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", + "OrganizationName": "VitalBridge Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", - "OrganizationName": "Infinity Group Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", + "OrganizationName": "New Jersey Heart and Vein", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", - "OrganizationName": "Infinity Group Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", + "OrganizationName": "New Jersey Heart and Vein", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", + "OrganizationName": "Infinity Group Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", + "OrganizationName": "Infinity Group Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -8665,38 +8653,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", - "OrganizationName": "Thierry Jacquemin DO PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", + "OrganizationName": "Kinghaven Medical System, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", - "OrganizationName": "Thierry Jacquemin DO PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", + "OrganizationName": "Kinghaven Medical System, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", - "OrganizationName": "West Orange Family Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", + "OrganizationName": "Thierry Jacquemin DO PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", - "OrganizationName": "West Orange Family Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", + "OrganizationName": "Thierry Jacquemin DO PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", - "OrganizationName": "Kinghaven Medical System, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", + "OrganizationName": "West Orange Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", - "OrganizationName": "Kinghaven Medical System, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", + "OrganizationName": "West Orange Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -8784,6 +8772,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4f15a03a-cc12-4a53-bd66-15e63ccb8b1a", "OrganizationName": "MCO WELLNESS CENTER LLC", @@ -8821,26 +8821,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", - "OrganizationName": "Total Support Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", + "OrganizationName": "Inspire Healthcare Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", - "OrganizationName": "Total Support Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", + "OrganizationName": "Inspire Healthcare Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", - "OrganizationName": "Inspire Healthcare Center, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", + "OrganizationName": "Spartanburg Day School - Griffin Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", - "OrganizationName": "Inspire Healthcare Center, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", + "OrganizationName": "Spartanburg Day School - Griffin Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -8869,26 +8869,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", - "OrganizationName": "Spartanburg Day School - Griffin Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", + "OrganizationName": "Invictus Health Partners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", - "OrganizationName": "Spartanburg Day School - Griffin Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", - "OrganizationName": "Invictus Health Partners", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", - "OrganizationName": "Invictus Health Partners", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", + "OrganizationName": "Invictus Health Partners", "NPIID": "", "OrganizationZipCode": "" }, @@ -8916,6 +8904,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", + "OrganizationName": "La Dona LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", + "OrganizationName": "La Dona LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/dab6fc62-0249-4232-93ac-63b74a10d1d4", "OrganizationName": "M. Chavez, MD, SC", @@ -8952,18 +8952,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", - "OrganizationName": "La Dona LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", - "OrganizationName": "La Dona LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/655a3894-1f51-4f1c-bd4f-618d559dccf1", "OrganizationName": "Maryam Khan MD", @@ -8989,26 +8977,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", - "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", + "OrganizationName": "North Raleigh Mental Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", - "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", + "OrganizationName": "North Raleigh Mental Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", - "OrganizationName": "North Raleigh Mental Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", + "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", - "OrganizationName": "North Raleigh Mental Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", + "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -9048,6 +9036,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", + "OrganizationName": "Resiliency MindBody Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", + "OrganizationName": "Resiliency MindBody Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2f7d3f2c-6ea8-471a-83f3-abe4f9aadeef", "OrganizationName": "SAROJ SEHGAL MD", @@ -9108,18 +9108,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", - "OrganizationName": "Resiliency MindBody Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", - "OrganizationName": "Resiliency MindBody Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0330798c-2249-40bc-b59d-f8a2b950df32", "OrganizationName": "Compassionate Care Clinic", @@ -9168,6 +9156,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/12f54de6-88c8-4eeb-acd6-457469aed9f0", "OrganizationName": "BlueSky Health", @@ -9216,18 +9216,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", - "OrganizationName": "United Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", - "OrganizationName": "United Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b6c9bc54-8cc3-43a6-add7-2b2992f4a8a0", "OrganizationName": "Yahweh Medical Center", @@ -9252,6 +9240,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", + "OrganizationName": "Palm Coast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", + "OrganizationName": "Palm Coast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5e2567ae-3fa2-49e2-87c4-234ef05063d6", "OrganizationName": "John Vassallo M.D.", @@ -9265,14 +9265,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", - "OrganizationName": "Palm Coast Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", + "OrganizationName": "28401 Hoover Road Waren, MI 48093", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", - "OrganizationName": "Palm Coast Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", + "OrganizationName": "28401 Hoover Road Waren, MI 48093", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", + "OrganizationName": "bradley tourtlotte Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", + "OrganizationName": "bradley tourtlotte Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -9289,14 +9301,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", - "OrganizationName": "28401 Hoover Road Waren, MI 48093", + "URL": "https://api.patientfusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", + "OrganizationName": "Kaira Carrasquillo Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", - "OrganizationName": "28401 Hoover Road Waren, MI 48093", + "URL": "https://api.practicefusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", + "OrganizationName": "Kaira Carrasquillo Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -9336,30 +9348,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", - "OrganizationName": "bradley tourtlotte Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", - "OrganizationName": "bradley tourtlotte Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", - "OrganizationName": "Kaira Carrasquillo Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", - "OrganizationName": "Kaira Carrasquillo Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6bf492b7-3f29-41c1-9cc7-352836dd0e98", "OrganizationName": "Antoinette Moore-Thomas Practice", @@ -9385,26 +9373,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", - "OrganizationName": "Joel F. Berman, DPM, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", + "OrganizationName": "True Gynecology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", - "OrganizationName": "Joel F. Berman, DPM, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", + "OrganizationName": "True Gynecology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", - "OrganizationName": "True Gynecology PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", + "OrganizationName": "Joel F. Berman, DPM, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", - "OrganizationName": "True Gynecology PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", + "OrganizationName": "Joel F. Berman, DPM, Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -9433,86 +9421,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", - "OrganizationName": "Mercedes Heredia practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", - "OrganizationName": "Mercedes Heredia practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", - "OrganizationName": "Amos Dare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", - "OrganizationName": "Amos Dare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a752512e-0fd4-4d75-84e3-86f88bd37892", - "OrganizationName": "Ocean Medical Nutrition LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", + "OrganizationName": "Alvaro Mercado", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a752512e-0fd4-4d75-84e3-86f88bd37892", - "OrganizationName": "Ocean Medical Nutrition LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", + "OrganizationName": "Alvaro Mercado", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", - "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", + "OrganizationName": "Sajid Khan MD P.C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", - "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", + "OrganizationName": "Sajid Khan MD P.C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", - "OrganizationName": "Alvaro Mercado", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", + "OrganizationName": "Mercedes Heredia practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", - "OrganizationName": "Alvaro Mercado", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", + "OrganizationName": "Mercedes Heredia practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", - "OrganizationName": "Sajid Khan MD P.C", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", + "OrganizationName": "Amos Dare MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", - "OrganizationName": "Sajid Khan MD P.C", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", + "OrganizationName": "Amos Dare MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", - "OrganizationName": "Riverbank Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", + "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", - "OrganizationName": "Riverbank Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", + "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -9553,50 +9517,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", - "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", + "URL": "https://api.patientfusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", + "OrganizationName": "Riverbank Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", - "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", + "URL": "https://api.practicefusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", + "OrganizationName": "Riverbank Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", - "OrganizationName": "Gail C. Brady, M.D. APMC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", + "OrganizationName": "Well By Messer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", - "OrganizationName": "Gail C. Brady, M.D. APMC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", + "OrganizationName": "Well By Messer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", - "OrganizationName": "Well By Messer", + "URL": "https://api.patientfusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", + "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", - "OrganizationName": "Well By Messer", + "URL": "https://api.practicefusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", + "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", - "OrganizationName": "Anti-Aging Center of Excellence", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", + "OrganizationName": "Healthy life Bariatrics and Body Contouring", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", - "OrganizationName": "Anti-Aging Center of Excellence", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", + "OrganizationName": "Healthy life Bariatrics and Body Contouring", "NPIID": "", "OrganizationZipCode": "" }, @@ -9613,14 +9577,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", - "OrganizationName": "Healthy life Bariatrics and Body Contouring", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", + "OrganizationName": "Gail C. Brady, M.D. APMC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", - "OrganizationName": "Healthy life Bariatrics and Body Contouring", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", + "OrganizationName": "Gail C. Brady, M.D. APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", + "OrganizationName": "Anti-Aging Center of Excellence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", + "OrganizationName": "Anti-Aging Center of Excellence", "NPIID": "", "OrganizationZipCode": "" }, @@ -9649,98 +9625,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", - "OrganizationName": "Restorative Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", + "OrganizationName": "jumana chalabi MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", - "OrganizationName": "Restorative Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", + "OrganizationName": "jumana chalabi MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", - "OrganizationName": "Gary Holland MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", + "OrganizationName": "North Island Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", - "OrganizationName": "Gary Holland MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", + "OrganizationName": "North Island Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", - "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", + "OrganizationName": "Oza Family Care and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", - "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", + "OrganizationName": "Oza Family Care and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", - "OrganizationName": "jumana chalabi MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", + "OrganizationName": "Restorative Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", - "OrganizationName": "jumana chalabi MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", + "OrganizationName": "Restorative Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", - "OrganizationName": "Caring Minds LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", + "OrganizationName": "Gary Holland MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", - "OrganizationName": "Caring Minds LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", + "OrganizationName": "Gary Holland MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", - "OrganizationName": "Nephro Health Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", + "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", - "OrganizationName": "Nephro Health Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", + "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", - "OrganizationName": "Oza Family Care and Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", + "OrganizationName": "Caring Minds LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", - "OrganizationName": "Oza Family Care and Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", + "OrganizationName": "Caring Minds LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", - "OrganizationName": "North Island Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", + "OrganizationName": "Nephro Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", - "OrganizationName": "North Island Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", + "OrganizationName": "Nephro Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -9757,26 +9733,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", - "OrganizationName": "Alegria Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", + "OrganizationName": "Grace P Tamesis MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", - "OrganizationName": "Alegria Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", + "OrganizationName": "Grace P Tamesis MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", - "OrganizationName": "Grace P Tamesis MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", + "OrganizationName": "Alegria Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", - "OrganizationName": "Grace P Tamesis MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", + "OrganizationName": "Alegria Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -9841,50 +9817,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", - "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", + "OrganizationName": "San Gabriel Valley Health Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", - "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", + "OrganizationName": "San Gabriel Valley Health Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", - "OrganizationName": "Westlake Physical Medicine and Rehabilitation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", + "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", - "OrganizationName": "Westlake Physical Medicine and Rehabilitation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", + "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", - "OrganizationName": "San Gabriel Valley Health Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", + "OrganizationName": "Space Coast Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", - "OrganizationName": "San Gabriel Valley Health Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", + "OrganizationName": "Space Coast Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", - "OrganizationName": "Space Coast Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", + "OrganizationName": "Westlake Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", - "OrganizationName": "Space Coast Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", + "OrganizationName": "Westlake Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, @@ -9913,86 +9889,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", - "OrganizationName": "Mingo County Family Wellness Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", + "OrganizationName": "Victermahealth.CORP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", - "OrganizationName": "Mingo County Family Wellness Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", + "OrganizationName": "Victermahealth.CORP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", - "OrganizationName": "Reflections Counseling Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", + "OrganizationName": "Envita Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", - "OrganizationName": "Reflections Counseling Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", + "OrganizationName": "Envita Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", - "OrganizationName": "Victermahealth.CORP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", + "OrganizationName": "Mingo County Family Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", - "OrganizationName": "Victermahealth.CORP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", + "OrganizationName": "Mingo County Family Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", - "OrganizationName": "303 I.V. \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", + "OrganizationName": "Reflections Counseling Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", - "OrganizationName": "303 I.V. \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", + "OrganizationName": "Reflections Counseling Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", - "OrganizationName": "Envita Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", + "OrganizationName": "Apex Heart and Vascular Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", - "OrganizationName": "Envita Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", + "OrganizationName": "Apex Heart and Vascular Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", - "OrganizationName": "Apex Heart and Vascular Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", + "OrganizationName": "303 I.V. \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", - "OrganizationName": "Apex Heart and Vascular Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", + "OrganizationName": "303 I.V. \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", - "OrganizationName": "Vortex Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", + "OrganizationName": "brianne fitzgerald behavioral health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", - "OrganizationName": "Vortex Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", + "OrganizationName": "brianne fitzgerald behavioral health", "NPIID": "", "OrganizationZipCode": "" }, @@ -10009,14 +9985,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", - "OrganizationName": "brianne fitzgerald behavioral health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", + "OrganizationName": "Vortex Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", - "OrganizationName": "brianne fitzgerald behavioral health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", + "OrganizationName": "Vortex Mental Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -10056,6 +10032,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", + "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", + "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", + "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", + "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/060ff2e3-979e-4b70-a386-63b01fa4fa92", "OrganizationName": "Imperial Health Medical Group", @@ -10081,14 +10081,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", - "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", + "OrganizationName": "Paul Hoffman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", - "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", + "OrganizationName": "Paul Hoffman Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", + "OrganizationName": "Eyes By Dr. Blanco", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", + "OrganizationName": "Eyes By Dr. Blanco", "NPIID": "", "OrganizationZipCode": "" }, @@ -10117,38 +10129,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", - "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", - "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", - "OrganizationName": "Paul Hoffman Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", + "OrganizationName": "Luis Carcorze Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", - "OrganizationName": "Paul Hoffman Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", + "OrganizationName": "Luis Carcorze Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", - "OrganizationName": "Eyes By Dr. Blanco", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", + "OrganizationName": "Anderson Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", - "OrganizationName": "Eyes By Dr. Blanco", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", + "OrganizationName": "Anderson Medical Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -10165,14 +10165,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", - "OrganizationName": "Luis Carcorze Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", + "OrganizationName": "Optimal Family Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", - "OrganizationName": "Luis Carcorze Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", + "OrganizationName": "Optimal Family Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -10201,38 +10201,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", - "OrganizationName": "Anderson Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", + "OrganizationName": "CompServ Health Resources Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", - "OrganizationName": "Anderson Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", + "OrganizationName": "CompServ Health Resources Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", - "OrganizationName": "Optimal Family Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", + "OrganizationName": "Dr Cody Geddes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", - "OrganizationName": "Optimal Family Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", + "OrganizationName": "Dr Cody Geddes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", - "OrganizationName": "CompServ Health Resources Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", + "OrganizationName": "NSIPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", - "OrganizationName": "CompServ Health Resources Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", + "OrganizationName": "NSIPA", "NPIID": "", "OrganizationZipCode": "" }, @@ -10273,74 +10273,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", - "OrganizationName": "Family Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", - "OrganizationName": "Family Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", - "OrganizationName": "Killion Medical Associates, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", - "OrganizationName": "Killion Medical Associates, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", - "OrganizationName": "Dr Cody Geddes", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", - "OrganizationName": "Dr Cody Geddes", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", + "OrganizationName": "TUYA PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", + "OrganizationName": "TUYA PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", - "OrganizationName": "TUYA PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", + "OrganizationName": "Family Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", - "OrganizationName": "TUYA PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", + "OrganizationName": "Family Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", - "OrganizationName": "Park Avenue Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", + "OrganizationName": "Killion Medical Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", - "OrganizationName": "Park Avenue Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", + "OrganizationName": "Killion Medical Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -10369,14 +10333,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", - "OrganizationName": "Manhattan Pain Medicine, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", + "OrganizationName": "Park Avenue Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", - "OrganizationName": "Manhattan Pain Medicine, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", + "OrganizationName": "Park Avenue Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -10404,6 +10368,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", + "OrganizationName": "Manhattan Pain Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", + "OrganizationName": "Manhattan Pain Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e3a85668-a88e-4d1a-91a5-5564c9b0f44c", "OrganizationName": "H. Isaac Office", @@ -10465,38 +10441,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", - "OrganizationName": "Adult Health Primary Care Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", + "OrganizationName": "Atlas Holistic Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", - "OrganizationName": "Adult Health Primary Care Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", + "OrganizationName": "Atlas Holistic Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", - "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", + "OrganizationName": "Adult Health Primary Care Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", - "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", + "OrganizationName": "Adult Health Primary Care Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", - "OrganizationName": "Atlas Holistic Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", + "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", - "OrganizationName": "Atlas Holistic Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", + "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", "NPIID": "", "OrganizationZipCode": "" }, @@ -10512,18 +10488,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", - "OrganizationName": "1st Responder HealthCare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", - "OrganizationName": "1st Responder HealthCare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/90c92e9f-99d3-4ba9-9d76-edd897830dc7", "OrganizationName": "Michael Bouknight Practice", @@ -10572,6 +10536,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", + "OrganizationName": "1st Responder HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", + "OrganizationName": "1st Responder HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/77d5ea63-537b-473c-a1b8-52e9e1160756", "OrganizationName": "Doctors Associates of West Hills", @@ -10585,14 +10561,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", - "OrganizationName": "ConciergeMED, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", + "OrganizationName": "Vive Vida Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", - "OrganizationName": "ConciergeMED, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", + "OrganizationName": "Vive Vida Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -10609,14 +10585,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", - "OrganizationName": "Vive Vida Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", + "OrganizationName": "ConciergeMED, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", - "OrganizationName": "Vive Vida Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", + "OrganizationName": "ConciergeMED, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", + "OrganizationName": "Women's Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", + "OrganizationName": "Women's Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -10645,14 +10633,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", - "OrganizationName": "Women's Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", + "OrganizationName": "Lifecycles Health Center and Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", - "OrganizationName": "Women's Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", + "OrganizationName": "Lifecycles Health Center and Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -10692,18 +10680,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", - "OrganizationName": "Lifecycles Health Center and Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", - "OrganizationName": "Lifecycles Health Center and Services", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d6b5762a-0247-4d2b-9fe7-4b7137cbd16a", "OrganizationName": "JMK Community Health Center", @@ -10717,26 +10693,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", - "OrganizationName": "Uzma Zafar MD Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", + "OrganizationName": "AHMAD SHANABLEH, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", - "OrganizationName": "Uzma Zafar MD Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", + "OrganizationName": "AHMAD SHANABLEH, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", - "OrganizationName": "AHMAD SHANABLEH, MD.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", + "OrganizationName": "Uzma Zafar MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", - "OrganizationName": "AHMAD SHANABLEH, MD.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", + "OrganizationName": "Uzma Zafar MD Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -10753,74 +10729,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", - "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", + "OrganizationName": "Florence Oladokun PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", - "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", + "OrganizationName": "Florence Oladokun PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", - "OrganizationName": "Florence Oladokun PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", + "OrganizationName": "Pediatric TLC,INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", - "OrganizationName": "Florence Oladokun PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", + "OrganizationName": "Pediatric TLC,INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", - "OrganizationName": "Altar Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", + "OrganizationName": "Inland Nephrology Medical Associates Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", - "OrganizationName": "Altar Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", + "OrganizationName": "Inland Nephrology Medical Associates Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", - "OrganizationName": "M\u0026B Mobile NPs", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", + "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", - "OrganizationName": "M\u0026B Mobile NPs", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", + "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", - "OrganizationName": "Pediatric TLC,INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", + "OrganizationName": "Altar Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", - "OrganizationName": "Pediatric TLC,INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", + "OrganizationName": "Altar Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", - "OrganizationName": "Inland Nephrology Medical Associates Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", + "OrganizationName": "M\u0026B Mobile NPs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", - "OrganizationName": "Inland Nephrology Medical Associates Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", + "OrganizationName": "M\u0026B Mobile NPs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -10837,26 +10825,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", - "OrganizationName": "406 Psychiatric Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", + "OrganizationName": "Advanced Psychiatric Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", - "OrganizationName": "406 Psychiatric Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", + "OrganizationName": "Advanced Psychiatric Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", - "OrganizationName": "Optimal Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", - "OrganizationName": "Optimal Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions", "NPIID": "", "OrganizationZipCode": "" }, @@ -10873,50 +10861,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", - "OrganizationName": "Advanced Psychiatric Services, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", + "OrganizationName": "MARCH LANE MEDICAL CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", - "OrganizationName": "Advanced Psychiatric Services, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", + "OrganizationName": "MARCH LANE MEDICAL CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", - "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", + "OrganizationName": "360HRT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", - "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", + "OrganizationName": "360HRT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", - "OrganizationName": "MARCH LANE MEDICAL CLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", + "OrganizationName": "Tanir Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", - "OrganizationName": "MARCH LANE MEDICAL CLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", + "OrganizationName": "Tanir Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", - "OrganizationName": "360HRT", + "URL": "https://api.patientfusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", - "OrganizationName": "360HRT", + "URL": "https://api.practicefusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -10932,18 +10920,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", - "OrganizationName": "Tanir Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", - "OrganizationName": "Tanir Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8376f3ee-9c61-4fc3-ae7b-b6eda4724798", "OrganizationName": "Womens Health Services of Maryland", @@ -11016,6 +10992,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", + "OrganizationName": "Intuitive Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", + "OrganizationName": "Intuitive Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1b24ab-641c-4828-a2a3-fc28dc179172", "OrganizationName": "Derick Chae, MD", @@ -11029,38 +11017,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", - "OrganizationName": "Wound X Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", - "OrganizationName": "Wound X Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", - "OrganizationName": "Intuitive Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", + "OrganizationName": "Wound X Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", - "OrganizationName": "Intuitive Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", + "OrganizationName": "Wound X Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", - "OrganizationName": "MC MEDICALCLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", + "OrganizationName": "Lank Nursing Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", - "OrganizationName": "MC MEDICALCLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", + "OrganizationName": "Lank Nursing Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -11077,14 +11065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", - "OrganizationName": "Lank Nursing Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", + "OrganizationName": "Adult and Pediatric Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", - "OrganizationName": "Lank Nursing Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", + "OrganizationName": "Adult and Pediatric Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11124,18 +11112,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", - "OrganizationName": "Adult and Pediatric Neurology, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", - "OrganizationName": "Adult and Pediatric Neurology, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a3788306-d04d-44e5-a699-586dac173520", "OrganizationName": "Inspyre Physical Medicine \u0026 Wellness", @@ -11208,6 +11184,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", + "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", + "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/249e567f-d02e-4bbb-bea7-fe8f57c7069f", "OrganizationName": "Terence TZ Tan,M.D.INC.", @@ -11221,14 +11209,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", - "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", - "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -11268,18 +11256,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", - "OrganizationName": "Sunset Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", - "OrganizationName": "Sunset Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3f6c5d0c-2a16-4a29-a8ce-27de41fc08f2", "OrganizationName": "Suneetha Maddineni Practice", @@ -11304,18 +11280,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b44ad159-14f6-4c95-b3ee-811fc80c7020", "OrganizationName": "Vitality Therapeutics and Infusions", @@ -11341,26 +11305,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", - "OrganizationName": "Pulmonary Medical Asso. Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", + "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", - "OrganizationName": "Pulmonary Medical Asso. Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", + "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", - "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", + "OrganizationName": "Point of the Spear Ministries", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", - "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", + "OrganizationName": "Point of the Spear Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", + "OrganizationName": "Hawkins Psychiatry, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", + "OrganizationName": "Hawkins Psychiatry, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", + "OrganizationName": "Pulmonary Medical Asso. Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", + "OrganizationName": "Pulmonary Medical Asso. Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -11400,18 +11388,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", - "OrganizationName": "Hawkins Psychiatry, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", - "OrganizationName": "Hawkins Psychiatry, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f38ce07c-9fa3-443d-baae-849b639a8e0e", "OrganizationName": "Our Lady of Hope Medical Clinic", @@ -11425,14 +11401,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", - "OrganizationName": "Devaraj Behavioral Helathcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", + "OrganizationName": "Sleep \u0026 Respiratory Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", - "OrganizationName": "Devaraj Behavioral Helathcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", + "OrganizationName": "Sleep \u0026 Respiratory Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -11448,6 +11424,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", + "OrganizationName": "Devaraj Behavioral Helathcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", + "OrganizationName": "Devaraj Behavioral Helathcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0c67709c-b9e1-4dc3-a0fe-d788936326f4", "OrganizationName": "Practice By Knight", @@ -11473,14 +11461,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", - "OrganizationName": "Sleep \u0026 Respiratory Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", + "OrganizationName": "Suzanna Dotson, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", - "OrganizationName": "Sleep \u0026 Respiratory Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", + "OrganizationName": "Suzanna Dotson, MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -11520,30 +11508,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", - "OrganizationName": "Suzanna Dotson, MD PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", - "OrganizationName": "Suzanna Dotson, MD PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", - "OrganizationName": "Advanced Wellness Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", - "OrganizationName": "Advanced Wellness Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b78a87d0-e34c-41a1-a7c4-9404973e5f0b", "OrganizationName": "Lake Linganore Psychiatry", @@ -11557,14 +11521,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", - "OrganizationName": "Lifeline", + "URL": "https://api.patientfusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", + "OrganizationName": "Advanced Wellness Consultants LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", - "OrganizationName": "Lifeline", + "URL": "https://api.practicefusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", + "OrganizationName": "Advanced Wellness Consultants LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11604,6 +11568,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", + "OrganizationName": "Lifeline", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", + "OrganizationName": "Lifeline", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2d9411f7-a2e8-48d1-a41e-a4fef6ac4e5a", "OrganizationName": "Family Podiatry PC", @@ -11628,6 +11604,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", + "OrganizationName": "Geriatric \u0026 Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", + "OrganizationName": "Geriatric \u0026 Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/353f53a5-5187-414c-87b0-6e4b2fac5dcf", "OrganizationName": "Resonance Psychiatry LLC", @@ -11653,62 +11641,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", - "OrganizationName": "Geriatric \u0026 Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", + "OrganizationName": "Mobile Medical Mission PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", - "OrganizationName": "Geriatric \u0026 Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", + "OrganizationName": "Mobile Medical Mission PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", - "OrganizationName": "Ruth Lopez Valentin Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", + "OrganizationName": "OB GYN Womens Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", - "OrganizationName": "Ruth Lopez Valentin Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", + "OrganizationName": "OB GYN Womens Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", - "OrganizationName": "Maria del Mar Torres Perez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", + "OrganizationName": "AT HOME PRIMARY CARE, INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", - "OrganizationName": "Maria del Mar Torres Perez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", + "OrganizationName": "AT HOME PRIMARY CARE, INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", - "OrganizationName": "Mobile Medical Mission PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", + "OrganizationName": "Ruth Lopez Valentin Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", - "OrganizationName": "Mobile Medical Mission PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", + "OrganizationName": "Ruth Lopez Valentin Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", - "OrganizationName": "OB GYN Womens Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", + "OrganizationName": "Maria del Mar Torres Perez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", - "OrganizationName": "OB GYN Womens Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", + "OrganizationName": "Maria del Mar Torres Perez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -11725,38 +11713,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", - "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", - "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", - "OrganizationName": "AT HOME PRIMARY CARE, INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", + "OrganizationName": "Primary Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", - "OrganizationName": "AT HOME PRIMARY CARE, INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", + "OrganizationName": "Primary Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", - "OrganizationName": "Primary Medicine LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", + "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", - "OrganizationName": "Primary Medicine LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", + "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11785,26 +11761,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", - "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", + "OrganizationName": "Amwell Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", - "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", + "OrganizationName": "Amwell Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", - "OrganizationName": "Amwell Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", + "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", - "OrganizationName": "Amwell Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", + "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", "NPIID": "", "OrganizationZipCode": "" }, @@ -11832,6 +11808,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", + "OrganizationName": "ALBERT DENNIS BROOKS, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", + "OrganizationName": "ALBERT DENNIS BROOKS, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ddf26e0f-7b69-4406-90a5-244539db96ad", "OrganizationName": "Neurology \u0026 Sleep Medicine Associates", @@ -11880,18 +11868,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", - "OrganizationName": "ALBERT DENNIS BROOKS, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", - "OrganizationName": "ALBERT DENNIS BROOKS, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/009e623b-6575-450c-a4a1-f187cfe797ef", "OrganizationName": "Starz Medical Associates", @@ -11904,18 +11880,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", - "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", - "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f3e8057e-b4be-48d1-a6c7-0a618458b8ca", "OrganizationName": "Pauline Fu, DPM, PC", @@ -11940,6 +11904,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", + "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", + "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bdc7f2bc-6539-4c5a-b560-9fb6e865881c", "OrganizationName": "Healthcare of Greater Washington", @@ -11952,6 +11928,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", + "OrganizationName": "Laura Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", + "OrganizationName": "Laura Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c2a7925c-9681-48dc-9e7b-3e23fbc3c601", "OrganizationName": "The Center for Health LLC", @@ -12001,14 +11989,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", - "OrganizationName": "Laura Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", + "OrganizationName": "9 Line Integrations", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", - "OrganizationName": "Laura Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", + "OrganizationName": "9 Line Integrations", "NPIID": "", "OrganizationZipCode": "" }, @@ -12037,26 +12025,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", - "OrganizationName": "9 Line Integrations", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", + "OrganizationName": "Deric Ravsten Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", - "OrganizationName": "9 Line Integrations", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", - "OrganizationName": "Deric Ravsten Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", - "OrganizationName": "Deric Ravsten Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", + "OrganizationName": "Deric Ravsten Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -12073,50 +12049,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", - "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", - "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", - "OrganizationName": "Car Injury Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", + "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", - "OrganizationName": "Car Injury Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", + "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", - "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", + "OrganizationName": "Jay Lawrence Friedman, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", - "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", + "OrganizationName": "Jay Lawrence Friedman, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", - "OrganizationName": "All-In-One Clinic PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", + "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", - "OrganizationName": "All-In-One Clinic PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", + "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12133,38 +12097,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", - "OrganizationName": "Jay Lawrence Friedman, MD, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", + "OrganizationName": "Car Injury Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", - "OrganizationName": "Jay Lawrence Friedman, MD, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", + "OrganizationName": "Car Injury Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", - "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", + "OrganizationName": "All-In-One Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", - "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", + "OrganizationName": "All-In-One Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", - "OrganizationName": "Blue Rock Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", + "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", - "OrganizationName": "Blue Rock Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", + "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", "NPIID": "", "OrganizationZipCode": "" }, @@ -12181,98 +12145,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", - "OrganizationName": "Spirit Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", + "OrganizationName": "Blue Rock Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", - "OrganizationName": "Spirit Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", + "OrganizationName": "Blue Rock Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", - "OrganizationName": "Coastal Pulmonary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", + "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", - "OrganizationName": "Coastal Pulmonary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", + "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", - "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", + "OrganizationName": "Spirit Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", - "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", + "OrganizationName": "Spirit Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", - "OrganizationName": "Buffalo Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", + "OrganizationName": "Psychology Associates Quantum", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", - "OrganizationName": "Buffalo Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", + "OrganizationName": "Psychology Associates Quantum", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", - "OrganizationName": "Dra. Indira Barbosa Rios", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", + "OrganizationName": "Dr Sarah E Hagarty LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", - "OrganizationName": "Dra. Indira Barbosa Rios", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", + "OrganizationName": "Dr Sarah E Hagarty LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", - "OrganizationName": "Psychology Associates Quantum", + "URL": "https://api.patientfusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", + "OrganizationName": "Coastal Pulmonary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", - "OrganizationName": "Psychology Associates Quantum", + "URL": "https://api.practicefusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", + "OrganizationName": "Coastal Pulmonary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", - "OrganizationName": "Dr Sarah E Hagarty LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", + "OrganizationName": "Buffalo Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", - "OrganizationName": "Dr Sarah E Hagarty LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", + "OrganizationName": "Buffalo Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", - "OrganizationName": "Portland Pain and Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", - "OrganizationName": "Portland Pain and Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "NPIID": "", "OrganizationZipCode": "" }, @@ -12289,14 +12253,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", - "OrganizationName": "Northland Cares", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", + "OrganizationName": "Portland Pain and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", - "OrganizationName": "Northland Cares", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", + "OrganizationName": "Portland Pain and Spine", "NPIID": "", "OrganizationZipCode": "" }, @@ -12337,74 +12301,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", - "OrganizationName": "ADENA Health Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", + "OrganizationName": "Washington Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", - "OrganizationName": "ADENA Health Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", + "OrganizationName": "Washington Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", + "OrganizationName": "QI WAN MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", + "OrganizationName": "QI WAN MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", - "OrganizationName": "AllCare Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", + "OrganizationName": "Northland Cares", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", - "OrganizationName": "AllCare Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", + "OrganizationName": "Northland Cares", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", - "OrganizationName": "QI WAN MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", + "OrganizationName": "AllCare Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", - "OrganizationName": "QI WAN MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", + "OrganizationName": "AllCare Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", - "OrganizationName": "Julio Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", + "OrganizationName": "ADENA Health Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", - "OrganizationName": "Julio Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", + "OrganizationName": "ADENA Health Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", - "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", + "OrganizationName": "Julio Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", - "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", + "OrganizationName": "Julio Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -12432,6 +12396,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", + "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", + "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bfa918d4-dbe8-42ec-8249-bf0a9b5089bb", "OrganizationName": "Omar Gomez Practice", @@ -12457,26 +12433,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", - "OrganizationName": "Elite Allergy and Asthma Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", + "OrganizationName": "Tug Valley Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", - "OrganizationName": "Elite Allergy and Asthma Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", + "OrganizationName": "Tug Valley Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", - "OrganizationName": "Tug Valley Wellness Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", + "OrganizationName": "Elite Allergy and Asthma Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", - "OrganizationName": "Tug Valley Wellness Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", + "OrganizationName": "Elite Allergy and Asthma Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -12516,18 +12492,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", - "OrganizationName": "Prevention Medical Services PSC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", - "OrganizationName": "Prevention Medical Services PSC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2e7098f6-9eb9-40e4-a80a-89661b7d55aa", "OrganizationName": "Kumar Quality Medical Care", @@ -12541,98 +12505,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", - "OrganizationName": "Reach for Recovery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", + "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", - "OrganizationName": "Reach for Recovery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", + "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", - "OrganizationName": "Rose Gold Health PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", + "OrganizationName": "Prevention Medical Services PSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", - "OrganizationName": "Rose Gold Health PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", + "OrganizationName": "Prevention Medical Services PSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", - "OrganizationName": "Alex Fridman Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", + "OrganizationName": "Trinity Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", - "OrganizationName": "Alex Fridman Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", + "OrganizationName": "Trinity Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", - "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", - "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", - "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", + "OrganizationName": "The Florence Endocrine Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", - "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", + "OrganizationName": "The Florence Endocrine Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", - "OrganizationName": "Trinity Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", + "OrganizationName": "Rose Gold Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", - "OrganizationName": "Trinity Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", + "OrganizationName": "Rose Gold Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", - "OrganizationName": "The Florence Endocrine Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", + "OrganizationName": "Alex Fridman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", - "OrganizationName": "The Florence Endocrine Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", + "OrganizationName": "Alex Fridman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", - "OrganizationName": "Kinetic Foot and Ankle Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", + "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", - "OrganizationName": "Kinetic Foot and Ankle Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", + "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", "NPIID": "", "OrganizationZipCode": "" }, @@ -12648,6 +12612,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8fb1f29f-d293-466b-8961-c922717371a7", "OrganizationName": "Dr. Z's Health, Wellness and Beauty Botique", @@ -12720,6 +12696,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", + "OrganizationName": "A Heartbeat Away ...", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", + "OrganizationName": "A Heartbeat Away ...", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1358ec18-2768-4956-9610-ebeea25687f3", "OrganizationName": "Semper Healthcare", @@ -12733,14 +12721,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", - "OrganizationName": "A Heartbeat Away ...", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", + "OrganizationName": "Mideastern Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", - "OrganizationName": "A Heartbeat Away ...", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", + "OrganizationName": "Mideastern Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12768,18 +12756,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", - "OrganizationName": "Mideastern Primary Care PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", - "OrganizationName": "Mideastern Primary Care PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b69bef9b-0a11-456b-92a3-3ef46bcd336d", "OrganizationName": "Linden Family Medical Care", @@ -12805,98 +12781,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", - "OrganizationName": "North Shore Podiatry, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", + "OrganizationName": "Senior Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", - "OrganizationName": "North Shore Podiatry, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", + "OrganizationName": "Senior Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", - "OrganizationName": "Orthopedic Specialists of Oakland County", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", + "OrganizationName": "New England Orthopaedic Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", - "OrganizationName": "Orthopedic Specialists of Oakland County", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", + "OrganizationName": "New England Orthopaedic Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", - "OrganizationName": "Senior Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", - "OrganizationName": "Senior Healthcare Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", - "OrganizationName": "New England Orthopaedic Center, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", + "OrganizationName": "Orthopedic Specialists of Oakland County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", - "OrganizationName": "New England Orthopaedic Center, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", + "OrganizationName": "Orthopedic Specialists of Oakland County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", - "OrganizationName": "Susan C. Warner, D.P.M.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", + "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", - "OrganizationName": "Susan C. Warner, D.P.M.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", + "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", - "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", + "OrganizationName": "Shahriyar Zarafshar Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", - "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", + "OrganizationName": "Shahriyar Zarafshar Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", - "OrganizationName": "Shariq J Rauf MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", + "OrganizationName": "Susan C. Warner, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", - "OrganizationName": "Shariq J Rauf MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", + "OrganizationName": "Susan C. Warner, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", - "OrganizationName": "Shahriyar Zarafshar Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", + "OrganizationName": "Shariq J Rauf MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", - "OrganizationName": "Shahriyar Zarafshar Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", + "OrganizationName": "Shariq J Rauf MD, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -12924,6 +12900,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", + "OrganizationName": "Pervis Enterprise LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", + "OrganizationName": "Pervis Enterprise LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/91c9a58d-e3da-472b-bb55-b2e4f24c1657", "OrganizationName": "AWAAM URGENT CARE CLINIC", @@ -12948,6 +12936,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", + "OrganizationName": "Cardio View and Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", + "OrganizationName": "Cardio View and Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/37a27d96-3e52-4243-a96f-324ae07918dd", "OrganizationName": "A\u0026M Medical group pllc", @@ -12961,26 +12961,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", + "OrganizationName": "Thrive IV Therpay And Holistic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", + "OrganizationName": "Thrive IV Therpay And Holistic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", - "OrganizationName": "Pervis Enterprise LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", + "OrganizationName": "WCM Sports Psych", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", - "OrganizationName": "Pervis Enterprise LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", + "OrganizationName": "WCM Sports Psych", "NPIID": "", "OrganizationZipCode": "" }, @@ -13021,38 +13021,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", - "OrganizationName": "Thrive IV Therpay And Holistic Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", - "OrganizationName": "Thrive IV Therpay And Holistic Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", - "OrganizationName": "WCM Sports Psych", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", + "OrganizationName": "Medical Associates of Highland", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", - "OrganizationName": "WCM Sports Psych", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", + "OrganizationName": "Medical Associates of Highland", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", - "OrganizationName": "Medical Associates of Highland", + "URL": "https://api.patientfusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", + "OrganizationName": "The Melford Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", - "OrganizationName": "Medical Associates of Highland", + "URL": "https://api.practicefusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", + "OrganizationName": "The Melford Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -13081,26 +13081,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", - "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", - "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", - "OrganizationName": "The Melford Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", + "OrganizationName": "Wellspring Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", - "OrganizationName": "The Melford Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", + "OrganizationName": "Wellspring Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -13116,18 +13104,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", - "OrganizationName": "Wellspring Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", - "OrganizationName": "Wellspring Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ab142b39-9296-4af7-baa9-07497ac28b8d", "OrganizationName": "Collier Eyecare", @@ -13176,6 +13152,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", + "OrganizationName": "ENC Peds PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", + "OrganizationName": "ENC Peds PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e3ffe5be-4255-470e-a02e-4c118d55a2ac", "OrganizationName": "Just Mental Health, Inc.", @@ -13224,30 +13212,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", - "OrganizationName": "ENC Peds PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", - "OrganizationName": "ENC Peds PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", - "OrganizationName": "Andrey Lev Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", - "OrganizationName": "Andrey Lev Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/48f5d1e8-ff70-41e1-a32d-46485ab77161", "OrganizationName": "Tessman Psychiatric Care, PLLC", @@ -13285,38 +13249,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", + "OrganizationName": "Andrey Lev Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", + "OrganizationName": "Andrey Lev Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", - "OrganizationName": "Maitri Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", + "OrganizationName": "Malitha Hettiarachchi MD FACP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", - "OrganizationName": "Maitri Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", + "OrganizationName": "Malitha Hettiarachchi MD FACP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", + "OrganizationName": "Maitri Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", + "OrganizationName": "Maitri Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -13345,14 +13309,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", - "OrganizationName": "Cory L. Cashman, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", - "OrganizationName": "Cory L. Cashman, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -13368,6 +13332,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", + "OrganizationName": "Cory L. Cashman, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", + "OrganizationName": "Cory L. Cashman, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", + "OrganizationName": "Psych Affiliates Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", + "OrganizationName": "Psych Affiliates Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e54446cb-9529-48f8-8ab1-d2363599a784", "OrganizationName": "Forest Urgent Care", @@ -13405,14 +13393,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", - "OrganizationName": "Psych Affiliates Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", + "OrganizationName": "Best Life Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", - "OrganizationName": "Psych Affiliates Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", + "OrganizationName": "Best Life Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -13429,62 +13417,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", - "OrganizationName": "Beverly Wicks Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", + "OrganizationName": "Palm Valley Brain and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", - "OrganizationName": "Beverly Wicks Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", + "OrganizationName": "Palm Valley Brain and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", - "OrganizationName": "Palm Valley Brain and Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", + "OrganizationName": "Beverly Wicks Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", - "OrganizationName": "Palm Valley Brain and Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", + "OrganizationName": "Beverly Wicks Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", - "OrganizationName": "Best Life Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", + "OrganizationName": "Osipova Surgical Service Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", - "OrganizationName": "Best Life Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", + "OrganizationName": "Osipova Surgical Service Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", - "OrganizationName": "FAX NUMBER 304-205-0010", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", + "OrganizationName": "Foot Care Center of Palm Beach", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", - "OrganizationName": "FAX NUMBER 304-205-0010", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", + "OrganizationName": "Foot Care Center of Palm Beach", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", - "OrganizationName": "Osipova Surgical Service Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", + "OrganizationName": "FAX NUMBER 304-205-0010", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", - "OrganizationName": "Osipova Surgical Service Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", + "OrganizationName": "FAX NUMBER 304-205-0010", "NPIID": "", "OrganizationZipCode": "" }, @@ -13512,18 +13500,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", - "OrganizationName": "Foot Care Center of Palm Beach", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", - "OrganizationName": "Foot Care Center of Palm Beach", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e46d8bf5-9a68-4818-bdde-eed22c93fa5d", "OrganizationName": "Oceanside Aesthetics and Wellness", @@ -13561,98 +13537,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", - "OrganizationName": "MembersMD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", + "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", - "OrganizationName": "MembersMD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", + "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", - "OrganizationName": "Romeo Medical PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", + "OrganizationName": "MembersMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", - "OrganizationName": "Romeo Medical PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", + "OrganizationName": "MembersMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", - "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", + "OrganizationName": "Romeo Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", - "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", + "OrganizationName": "Romeo Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", - "OrganizationName": "Tri County Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", + "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", - "OrganizationName": "Tri County Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", + "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", - "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", + "OrganizationName": "The C.L.I.N.I.C. NY NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", - "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", + "OrganizationName": "The C.L.I.N.I.C. NY NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", - "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", + "URL": "https://api.patientfusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", + "OrganizationName": "Plena Integrative Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", - "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", + "URL": "https://api.practicefusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", + "OrganizationName": "Plena Integrative Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", - "OrganizationName": "Stillwater Consulting, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", + "OrganizationName": "Tri County Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", - "OrganizationName": "Stillwater Consulting, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", + "OrganizationName": "Tri County Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", - "OrganizationName": "The C.L.I.N.I.C. NY NJ", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", + "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", - "OrganizationName": "The C.L.I.N.I.C. NY NJ", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", + "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -13669,14 +13645,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", - "OrganizationName": "Plena Integrative Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", + "OrganizationName": "Wu Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", - "OrganizationName": "Plena Integrative Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", + "OrganizationName": "Wu Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -13693,26 +13669,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", - "OrganizationName": "Wu Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", - "OrganizationName": "Wu Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", - "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", + "OrganizationName": "Stillwater Consulting, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", - "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", + "OrganizationName": "Stillwater Consulting, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13764,6 +13728,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", + "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", + "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1ae699e0-890e-4ed4-af8a-03685c361ec1", "OrganizationName": "PROCENTURE HEALTHCARE SOLUTIONS", @@ -13776,6 +13752,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", + "OrganizationName": "HatzakisMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", + "OrganizationName": "HatzakisMD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/79b6b3bd-8709-4847-b817-54a62d58f19b", "OrganizationName": "Findley Medical Clinic", @@ -13800,18 +13788,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7f97c77f-1609-404f-9326-4657dc0cb7f6", "OrganizationName": "PCAF", @@ -13849,26 +13825,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", - "OrganizationName": "New York Medicine Doctors, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", + "OrganizationName": "ConciergeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", - "OrganizationName": "New York Medicine Doctors, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", + "OrganizationName": "ConciergeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", - "OrganizationName": "ConciergeCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", - "OrganizationName": "ConciergeCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13920,18 +13896,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", - "OrganizationName": "Blue Nile Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", - "OrganizationName": "Blue Nile Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/61452447-72e8-4ad7-90f8-109086df4f6b", "OrganizationName": "Appalachian Wellness, L.L.C.", @@ -13945,14 +13909,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", - "OrganizationName": "ANCHOR PEDIATRICS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", + "OrganizationName": "Blue Nile Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", - "OrganizationName": "ANCHOR PEDIATRICS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", + "OrganizationName": "Blue Nile Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -13969,38 +13933,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", - "OrganizationName": "Associates in Primary Care, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", + "OrganizationName": "ANCHOR PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", - "OrganizationName": "Associates in Primary Care, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", + "OrganizationName": "ANCHOR PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", - "OrganizationName": "Phillips Family Healthcare, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", + "OrganizationName": "Associates in Primary Care, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", - "OrganizationName": "Phillips Family Healthcare, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", + "OrganizationName": "Associates in Primary Care, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", - "OrganizationName": "Port Richey Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", + "OrganizationName": "Phillips Family Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", - "OrganizationName": "Port Richey Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", + "OrganizationName": "Phillips Family Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14017,26 +13981,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", - "OrganizationName": "Yamilka Castillo Gongora Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", + "OrganizationName": "Port Richey Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", - "OrganizationName": "Yamilka Castillo Gongora Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", + "OrganizationName": "Port Richey Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", - "OrganizationName": "SANDY D Espinosa MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", - "OrganizationName": "SANDY D Espinosa MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -14053,26 +14017,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", - "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", - "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", - "OrganizationName": "CARLOS ALVAREZ Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", - "OrganizationName": "CARLOS ALVAREZ Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -14089,14 +14065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", - "OrganizationName": "Ian Dy Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", + "OrganizationName": "CARLOS ALVAREZ Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", - "OrganizationName": "Ian Dy Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", + "OrganizationName": "CARLOS ALVAREZ Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -14148,18 +14124,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", - "OrganizationName": "Grace Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", - "OrganizationName": "Grace Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75004cd1-f402-425e-a280-af24c1204d05", "OrganizationName": "Evan T Belfer MD", @@ -14185,14 +14149,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", - "OrganizationName": "Miami Brain and Spine Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", + "OrganizationName": "Grace Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", - "OrganizationName": "Miami Brain and Spine Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", + "OrganizationName": "Grace Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -14209,14 +14173,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", - "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", + "OrganizationName": "Miami Brain and Spine Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", - "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", + "OrganizationName": "Miami Brain and Spine Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -14232,6 +14196,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", + "OrganizationName": "T. C. Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", + "OrganizationName": "T. C. Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1a37eb6e-d8a9-4293-bd10-edcfce563a81", "OrganizationName": "Spectrum Psychiatric Associates", @@ -14257,14 +14245,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", - "OrganizationName": "T. C. Integrative Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", + "OrganizationName": "ACN BAROMEDICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", - "OrganizationName": "T. C. Integrative Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", + "OrganizationName": "ACN BAROMEDICAL", "NPIID": "", "OrganizationZipCode": "" }, @@ -14293,50 +14281,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", - "OrganizationName": "ACN BAROMEDICAL", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", - "OrganizationName": "ACN BAROMEDICAL", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", - "OrganizationName": "Balance Orthopedics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", + "OrganizationName": "SKIN CANCER TREATMENT CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", - "OrganizationName": "Balance Orthopedics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", + "OrganizationName": "SKIN CANCER TREATMENT CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", - "OrganizationName": "SKIN CANCER TREATMENT CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", + "OrganizationName": "Balance Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", - "OrganizationName": "SKIN CANCER TREATMENT CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", + "OrganizationName": "Balance Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", - "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", + "OrganizationName": "Cohn Plastic Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", - "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", + "OrganizationName": "Cohn Plastic Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14365,38 +14353,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", - "OrganizationName": "EN LOVE, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", - "OrganizationName": "EN LOVE, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", - "OrganizationName": "Cohn Plastic Surgery, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", + "OrganizationName": "North Texas Neurological", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", - "OrganizationName": "Cohn Plastic Surgery, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", + "OrganizationName": "North Texas Neurological", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", - "OrganizationName": "North Texas Neurological", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", + "OrganizationName": "EN LOVE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", - "OrganizationName": "North Texas Neurological", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", + "OrganizationName": "EN LOVE, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14436,18 +14412,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", - "OrganizationName": "Red River Valley Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", - "OrganizationName": "Red River Valley Health", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/62e78e32-3a4b-414b-a247-87f8a95c0d73", "OrganizationName": "Nurowav TMS PC", @@ -14472,18 +14436,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", - "OrganizationName": "Terrace Landing Finest Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", - "OrganizationName": "Terrace Landing Finest Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/cc55d108-9941-4da6-9e64-f607599cc1ca", "OrganizationName": "Southwest Pain \u0026 Addiction Center", @@ -14497,14 +14449,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", - "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", + "OrganizationName": "Red River Valley Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", - "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", + "OrganizationName": "Red River Valley Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -14520,6 +14472,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", + "OrganizationName": "Terrace Landing Finest Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", + "OrganizationName": "Terrace Landing Finest Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", + "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", + "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a650af13-9f2f-4366-929b-d40956697a7a", "OrganizationName": "VitaVia Telemedicine", @@ -14545,26 +14521,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", - "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", + "OrganizationName": "Butterwick Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", - "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", + "OrganizationName": "Butterwick Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", - "OrganizationName": "Butterwick Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", + "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", - "OrganizationName": "Butterwick Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", + "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -14580,6 +14556,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", + "OrganizationName": "Stanley Librach, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", + "OrganizationName": "Stanley Librach, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fd775e01-6446-4583-8822-9c389b3a8b29", "OrganizationName": "Ashley Hall Health Center", @@ -14629,14 +14617,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", - "OrganizationName": "Stanley Librach, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", + "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", - "OrganizationName": "Stanley Librach, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", + "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14653,14 +14641,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", - "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", - "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -14677,38 +14665,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", - "OrganizationName": "Imhotepcx Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", + "OrganizationName": "Karen C. Field", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", - "OrganizationName": "Imhotepcx Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", + "OrganizationName": "Karen C. Field", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", - "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", - "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", - "OrganizationName": "Karen C. Field", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", + "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", - "OrganizationName": "Karen C. Field", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", + "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14725,50 +14713,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", - "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", + "OrganizationName": "Bonnie J Fraser MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", - "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", + "OrganizationName": "Bonnie J Fraser MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", - "OrganizationName": "Downtown Thyroid, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", + "OrganizationName": "TGriffith Private Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", - "OrganizationName": "Downtown Thyroid, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", + "OrganizationName": "TGriffith Private Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", - "OrganizationName": "Bonnie J Fraser MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", + "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", - "OrganizationName": "Bonnie J Fraser MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", + "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", - "OrganizationName": "TGriffith Private Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", + "OrganizationName": "A1 Family Mediicine.PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", - "OrganizationName": "TGriffith Private Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", + "OrganizationName": "A1 Family Mediicine.PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14785,26 +14773,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", - "OrganizationName": "A1 Family Mediicine.PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", + "OrganizationName": "Main Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", - "OrganizationName": "A1 Family Mediicine.PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", + "OrganizationName": "Main Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", - "OrganizationName": "Main Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", + "OrganizationName": "202 Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", - "OrganizationName": "Main Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", + "OrganizationName": "202 Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -14857,26 +14845,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", - "OrganizationName": "202 Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", - "OrganizationName": "202 Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", - "OrganizationName": "Revive Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", + "OrganizationName": "Premiere Medical Center of Burbank", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", - "OrganizationName": "Revive Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", + "OrganizationName": "Premiere Medical Center of Burbank", "NPIID": "", "OrganizationZipCode": "" }, @@ -14893,14 +14869,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", - "OrganizationName": "Premiere Medical Center of Burbank", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", + "OrganizationName": "Revive Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", - "OrganizationName": "Premiere Medical Center of Burbank", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", + "OrganizationName": "Revive Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -14952,6 +14928,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", + "OrganizationName": "Victoria Kelly MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", + "OrganizationName": "Victoria Kelly MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", + "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", + "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", "OrganizationName": "Stellar Healthcare, PLCC", @@ -15001,26 +15001,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", - "OrganizationName": "Victoria Kelly MD LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", - "OrganizationName": "Victoria Kelly MD LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", - "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", + "OrganizationName": "LeKeytra Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", - "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", + "OrganizationName": "LeKeytra Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15037,14 +15025,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", - "OrganizationName": "LeKeytra Washington Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", + "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", - "OrganizationName": "LeKeytra Washington Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", + "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", "NPIID": "", "OrganizationZipCode": "" }, @@ -15061,26 +15049,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", - "OrganizationName": "OC Rheumatology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", + "OrganizationName": "Oksana Buttita, DPM, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", - "OrganizationName": "OC Rheumatology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", + "OrganizationName": "Oksana Buttita, DPM, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", - "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", + "OrganizationName": "OC Rheumatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", - "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", + "OrganizationName": "OC Rheumatology", "NPIID": "", "OrganizationZipCode": "" }, @@ -15097,26 +15085,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", - "OrganizationName": "Oksana Buttita, DPM, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", - "OrganizationName": "Oksana Buttita, DPM, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", - "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", + "OrganizationName": "Infectious Disease Associates of Orange County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", - "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", + "OrganizationName": "Infectious Disease Associates of Orange County", "NPIID": "", "OrganizationZipCode": "" }, @@ -15133,38 +15109,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", - "OrganizationName": "Infectious Disease Associates of Orange County", + "URL": "https://api.patientfusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", + "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", - "OrganizationName": "Infectious Disease Associates of Orange County", + "URL": "https://api.practicefusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", + "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", - "OrganizationName": "Canton Family Medicine and Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", + "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", - "OrganizationName": "Canton Family Medicine and Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", + "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", - "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", + "OrganizationName": "Canton Family Medicine and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", - "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", + "OrganizationName": "Canton Family Medicine and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -15192,6 +15168,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", + "OrganizationName": "Althera Alternative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", + "OrganizationName": "Althera Alternative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d443efe3-2eb8-40a4-ae56-9db1cc763de1", "OrganizationName": "Good Samaritan Transitional Care DBA Wound Xpress", @@ -15205,26 +15193,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", - "OrganizationName": "KING MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", + "OrganizationName": "Greg Cisneros M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", - "OrganizationName": "KING MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", + "OrganizationName": "Greg Cisneros M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", - "OrganizationName": "Althera Alternative Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", + "OrganizationName": "KING MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", - "OrganizationName": "Althera Alternative Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", + "OrganizationName": "KING MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -15252,18 +15240,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", - "OrganizationName": "Greg Cisneros M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", - "OrganizationName": "Greg Cisneros M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/860fd2fe-3d2b-436c-a56f-44f08ad5c083", "OrganizationName": "Primecare PL", @@ -15277,98 +15253,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", - "OrganizationName": "Columbus Clinical Services LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", + "OrganizationName": "Medical Care of NYC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", - "OrganizationName": "Columbus Clinical Services LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", + "OrganizationName": "Medical Care of NYC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", - "OrganizationName": "BULENT ATAC Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", - "OrganizationName": "BULENT ATAC Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", - "OrganizationName": "Tali AI", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", + "OrganizationName": "Columbus Clinical Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", - "OrganizationName": "Tali AI", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", + "OrganizationName": "Columbus Clinical Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", - "OrganizationName": "Medical Care of NYC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", + "OrganizationName": "BULENT ATAC Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", - "OrganizationName": "Medical Care of NYC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", + "OrganizationName": "BULENT ATAC Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", - "OrganizationName": "PREMIER UROLOGY, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", + "OrganizationName": "Quality Care at Home", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", - "OrganizationName": "PREMIER UROLOGY, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", + "OrganizationName": "Quality Care at Home", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", - "OrganizationName": "Tri Cities Diabetes", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", + "OrganizationName": "Tali AI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", - "OrganizationName": "Tri Cities Diabetes", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", + "OrganizationName": "Tali AI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", - "OrganizationName": "Quality Care at Home", + "URL": "https://api.patientfusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", + "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", - "OrganizationName": "Quality Care at Home", + "URL": "https://api.practicefusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", + "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", - "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", + "OrganizationName": "PREMIER UROLOGY, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", - "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", + "OrganizationName": "PREMIER UROLOGY, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15385,26 +15361,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", - "OrganizationName": "Luarde I. Montano Soto, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", + "OrganizationName": "Ngozi Nnaji Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", - "OrganizationName": "Luarde I. Montano Soto, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", + "OrganizationName": "Ngozi Nnaji Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", - "OrganizationName": "Ngozi Nnaji Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", - "OrganizationName": "Ngozi Nnaji Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -15432,6 +15408,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", + "OrganizationName": "Bridge Medical Consultants PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", + "OrganizationName": "Bridge Medical Consultants PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c478dabf-5fa9-4388-a796-a5df6aebd371", "OrganizationName": "Emerald Care, PLLC", @@ -15469,14 +15457,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", - "OrganizationName": "Bridge Medical Consultants PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", - "OrganizationName": "Bridge Medical Consultants PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -15492,18 +15480,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", - "OrganizationName": "Z MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", - "OrganizationName": "Z MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/97e4d912-2b2f-44eb-a11e-0f8389f7c743", "OrganizationName": "Dr. Barbara Ann Scherer", @@ -15517,26 +15493,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", - "OrganizationName": "Wellspring Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", - "OrganizationName": "Wellspring Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", - "OrganizationName": "Victor Lopez de Mendoza Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", + "OrganizationName": "Wellspring Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", - "OrganizationName": "Victor Lopez de Mendoza Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", + "OrganizationName": "Wellspring Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -15649,26 +15625,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", - "OrganizationName": "Beverly medical care plcc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", + "OrganizationName": "Memphis Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", - "OrganizationName": "Beverly medical care plcc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", + "OrganizationName": "Memphis Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", - "OrganizationName": "Memphis Psychiatric Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", + "OrganizationName": "Beverly medical care plcc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", - "OrganizationName": "Memphis Psychiatric Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", + "OrganizationName": "Beverly medical care plcc", "NPIID": "", "OrganizationZipCode": "" }, @@ -15697,38 +15673,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", - "OrganizationName": "Austina Cho Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", - "OrganizationName": "Austina Cho Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", - "OrganizationName": "Elite Health Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", + "OrganizationName": "Metro Heart \u0026 Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", - "OrganizationName": "Elite Health Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", + "OrganizationName": "Metro Heart \u0026 Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", - "OrganizationName": "Metro Heart \u0026 Vascular Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", + "OrganizationName": "Austina Cho Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", - "OrganizationName": "Metro Heart \u0026 Vascular Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", + "OrganizationName": "Austina Cho Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15745,26 +15709,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", - "OrganizationName": "PARMJIT S AUJLA , MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", + "OrganizationName": "Elite Health Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", - "OrganizationName": "PARMJIT S AUJLA , MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", + "OrganizationName": "Elite Health Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", - "OrganizationName": "Ayman Daoud, MD., PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", + "OrganizationName": "PARMJIT S AUJLA , MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", - "OrganizationName": "Ayman Daoud, MD., PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", + "OrganizationName": "PARMJIT S AUJLA , MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -15781,26 +15745,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", - "OrganizationName": "Care In Transition", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", + "OrganizationName": "Bibb Addiction \u0026 Obesity Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", - "OrganizationName": "Care In Transition", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", + "OrganizationName": "Bibb Addiction \u0026 Obesity Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", - "OrganizationName": "Bibb Addiction \u0026 Obesity Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", + "OrganizationName": "Ayman Daoud, MD., PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", - "OrganizationName": "Bibb Addiction \u0026 Obesity Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", + "OrganizationName": "Ayman Daoud, MD., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", + "OrganizationName": "SHAHNAZ K. RAO, MDPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", + "OrganizationName": "SHAHNAZ K. RAO, MDPA", "NPIID": "", "OrganizationZipCode": "" }, @@ -15829,26 +15805,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", - "OrganizationName": "ubah gaani Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", + "OrganizationName": "Care In Transition", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", - "OrganizationName": "ubah gaani Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", + "OrganizationName": "Care In Transition", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", - "OrganizationName": "SHAHNAZ K. RAO, MDPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", + "OrganizationName": "ubah gaani Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", - "OrganizationName": "SHAHNAZ K. RAO, MDPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", + "OrganizationName": "ubah gaani Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15876,6 +15852,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", + "OrganizationName": "Ida Wallace Bennett Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", + "OrganizationName": "Ida Wallace Bennett Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", "OrganizationName": "Clinica Medica De la Mora Inc", @@ -15901,14 +15889,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5a97b9ea-29eb-47d2-afe9-031e5f719313", - "OrganizationName": "Royale Healthcare LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", + "OrganizationName": "Rose Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5a97b9ea-29eb-47d2-afe9-031e5f719313", - "OrganizationName": "Royale Healthcare LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", + "OrganizationName": "Rose Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15924,30 +15912,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", - "OrganizationName": "Ida Wallace Bennett Family Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", - "OrganizationName": "Ida Wallace Bennett Family Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", - "OrganizationName": "Rose Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", - "OrganizationName": "Rose Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/63a7f8c2-c702-485a-bfd0-8ac5141f5cd6", "OrganizationName": "Hackensack Cardiology Associates", @@ -15961,26 +15925,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", - "OrganizationName": "Nat'l Medical Rehabilitation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", + "OrganizationName": "Addiction Recovery Center of Virginia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", - "OrganizationName": "Nat'l Medical Rehabilitation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", + "OrganizationName": "Addiction Recovery Center of Virginia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", - "OrganizationName": "Addiction Recovery Center of Virginia", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", + "OrganizationName": "Nat'l Medical Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", - "OrganizationName": "Addiction Recovery Center of Virginia", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", + "OrganizationName": "Nat'l Medical Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, @@ -16008,6 +15972,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", + "OrganizationName": "Sunshine Medical Specialists LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", + "OrganizationName": "Sunshine Medical Specialists LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/442e0978-ddef-4093-ba0b-409c597691f0", "OrganizationName": "Patriot Medical P.C.", @@ -16021,14 +15997,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", - "OrganizationName": "Sunshine Medical Specialists LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", + "OrganizationName": "Issan Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", - "OrganizationName": "Sunshine Medical Specialists LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", + "OrganizationName": "Issan Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -16080,18 +16056,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", - "OrganizationName": "Issan Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", - "OrganizationName": "Issan Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f456344c-f7ac-4c89-830d-cedd6d2e9c6f", "OrganizationName": "The Neighborhood Clinic", @@ -16140,6 +16104,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", + "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", + "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/11016a9a-668b-43fc-9588-cba105826a1c", "OrganizationName": "Linda St. Martin DPM PA", @@ -16165,62 +16141,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", - "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", + "OrganizationName": "Jason Shimiaie MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", - "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", + "OrganizationName": "Jason Shimiaie MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", - "OrganizationName": "Premiere Primary Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", + "OrganizationName": "Pfitzner Family Psychiatric Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", - "OrganizationName": "Premiere Primary Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", + "OrganizationName": "Pfitzner Family Psychiatric Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", - "OrganizationName": "Henry Miller, DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", + "OrganizationName": "Premiere Primary Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", - "OrganizationName": "Henry Miller, DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", + "OrganizationName": "Premiere Primary Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", - "OrganizationName": "Jason Shimiaie MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", + "OrganizationName": "Henry Miller, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", - "OrganizationName": "Jason Shimiaie MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", + "OrganizationName": "Henry Miller, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", - "OrganizationName": "Pfitzner Family Psychiatric Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", - "OrganizationName": "Pfitzner Family Psychiatric Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "NPIID": "", "OrganizationZipCode": "" }, @@ -16237,26 +16213,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", - "OrganizationName": "Mercy Health Clinic of North Wake", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", - "OrganizationName": "Mercy Health Clinic of North Wake", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", - "OrganizationName": "McGinnis MICA Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", + "OrganizationName": "Impact Psychiatric Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", - "OrganizationName": "McGinnis MICA Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", + "OrganizationName": "Impact Psychiatric Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16297,38 +16273,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", - "OrganizationName": "My Endocrinologist PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", + "OrganizationName": "Roger D Ajluni PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", - "OrganizationName": "My Endocrinologist PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", + "OrganizationName": "Roger D Ajluni PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", - "OrganizationName": "Impact Psychiatric Care, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", + "OrganizationName": "My Endocrinologist PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", - "OrganizationName": "Impact Psychiatric Care, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", + "OrganizationName": "My Endocrinologist PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", - "OrganizationName": "Roger D Ajluni PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", + "OrganizationName": "Florida New Vision Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", - "OrganizationName": "Roger D Ajluni PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", + "OrganizationName": "Florida New Vision Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -16357,38 +16333,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", - "OrganizationName": "Florida New Vision Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", + "OrganizationName": "Alltyr Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", - "OrganizationName": "Florida New Vision Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", + "OrganizationName": "Alltyr Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", - "OrganizationName": "Staton Southern Medical, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", + "OrganizationName": "Get Well Family Practice Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", - "OrganizationName": "Staton Southern Medical, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", + "OrganizationName": "Get Well Family Practice Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", - "OrganizationName": "Alltyr Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", + "OrganizationName": "Staton Southern Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", - "OrganizationName": "Alltyr Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", + "OrganizationName": "Staton Southern Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16404,18 +16380,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", - "OrganizationName": "Get Well Family Practice Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", - "OrganizationName": "Get Well Family Practice Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/25f17e16-5680-4138-9de8-6a062f29e842", "OrganizationName": "Northwest Endovascular Surgery", @@ -16429,14 +16393,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", - "OrganizationName": "Solheim Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", - "OrganizationName": "Solheim Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", "NPIID": "", "OrganizationZipCode": "" }, @@ -16453,14 +16417,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", - "OrganizationName": "Stephen I. Proctor, MD FACOG", + "URL": "https://api.patientfusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", + "OrganizationName": "Solheim Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", - "OrganizationName": "Stephen I. Proctor, MD FACOG", + "URL": "https://api.practicefusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", + "OrganizationName": "Solheim Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", "NPIID": "", "OrganizationZipCode": "" }, @@ -16477,14 +16453,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", - "OrganizationName": "ascend mental health management", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", + "OrganizationName": "Vivette Fletcher-Harriott Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", - "OrganizationName": "ascend mental health management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", + "OrganizationName": "Vivette Fletcher-Harriott Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16501,38 +16477,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", - "OrganizationName": "De Soto IMS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", + "OrganizationName": "Irvington TWP Rural Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", - "OrganizationName": "De Soto IMS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", + "OrganizationName": "Irvington TWP Rural Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", - "OrganizationName": "Vivette Fletcher-Harriott Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", - "OrganizationName": "Vivette Fletcher-Harriott Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", - "OrganizationName": "Irvington TWP Rural Health Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", - "OrganizationName": "Irvington TWP Rural Health Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", + "OrganizationName": "Roberto E Sanchez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", + "OrganizationName": "Roberto E Sanchez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16561,62 +16549,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", - "OrganizationName": "Central Coast Housecalls", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", + "OrganizationName": "Dr Richard David Griffith", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", - "OrganizationName": "Central Coast Housecalls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", + "OrganizationName": "Dr Richard David Griffith", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", - "OrganizationName": "Roberto E Sanchez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", + "OrganizationName": "DocNetwork, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", - "OrganizationName": "Roberto E Sanchez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", + "OrganizationName": "DocNetwork, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", - "OrganizationName": "Dr Richard David Griffith", + "URL": "https://api.patientfusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", + "OrganizationName": "Jamison Feramisco Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", - "OrganizationName": "Dr Richard David Griffith", + "URL": "https://api.practicefusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", + "OrganizationName": "Jamison Feramisco Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", - "OrganizationName": "DocNetwork, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", + "OrganizationName": "Dr Lees Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", - "OrganizationName": "DocNetwork, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", + "OrganizationName": "Dr Lees Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", - "OrganizationName": "Dr Lees Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", + "OrganizationName": "Boden Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", - "OrganizationName": "Dr Lees Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", + "OrganizationName": "Boden Health System", "NPIID": "", "OrganizationZipCode": "" }, @@ -16633,50 +16621,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", - "OrganizationName": "Boden Health System", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", + "OrganizationName": "Margaret N Alexander MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", - "OrganizationName": "Boden Health System", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", + "OrganizationName": "Margaret N Alexander MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", - "OrganizationName": "Jamison Feramisco Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", + "OrganizationName": "Tranquility Psychiatry and Counseling Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", - "OrganizationName": "Jamison Feramisco Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", + "OrganizationName": "Tranquility Psychiatry and Counseling Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", - "OrganizationName": "Michelle Klein Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", + "OrganizationName": "Starting New Collaborative, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", - "OrganizationName": "Michelle Klein Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", + "OrganizationName": "Starting New Collaborative, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", - "OrganizationName": "Margaret N Alexander MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", + "OrganizationName": "Michelle Klein Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", - "OrganizationName": "Margaret N Alexander MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", + "OrganizationName": "Michelle Klein Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16705,26 +16693,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", - "OrganizationName": "Tranquility Psychiatry and Counseling Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", - "OrganizationName": "Tranquility Psychiatry and Counseling Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", - "OrganizationName": "Starting New Collaborative, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", + "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", - "OrganizationName": "Starting New Collaborative, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", + "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16789,14 +16765,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", - "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", + "OrganizationName": "Hearne Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", - "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", + "OrganizationName": "Hearne Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16812,18 +16788,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", - "OrganizationName": "Hearne Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", - "OrganizationName": "Hearne Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/232f32cb-7543-46eb-8b8b-02c6071906b0", "OrganizationName": "John Casada Practice", @@ -16921,62 +16885,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", - "OrganizationName": "APRN Jesus Ramos", + "URL": "https://api.patientfusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", + "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", - "OrganizationName": "APRN Jesus Ramos", + "URL": "https://api.practicefusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", + "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", - "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", - "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", - "OrganizationName": "frankin medical center Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", - "OrganizationName": "frankin medical center Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", - "OrganizationName": "A\u0026R Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", + "OrganizationName": "frankin medical center Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", - "OrganizationName": "A\u0026R Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", + "OrganizationName": "frankin medical center Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", - "OrganizationName": "Samina Ansar Ghazi MDPC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", + "OrganizationName": "A\u0026R Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", - "OrganizationName": "Samina Ansar Ghazi MDPC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", + "OrganizationName": "A\u0026R Solutions", "NPIID": "", "OrganizationZipCode": "" }, @@ -17005,38 +16969,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", - "OrganizationName": "Sharonne Rogers Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", - "OrganizationName": "Sharonne Rogers Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", - "OrganizationName": "Aviation Trucking Physical Exams LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", - "OrganizationName": "Aviation Trucking Physical Exams LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", - "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", - "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", + "URL": "https://api.practicefusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "NPIID": "", "OrganizationZipCode": "" }, @@ -17053,122 +17005,122 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", - "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", + "OrganizationName": "Sharonne Rogers Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", - "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", + "OrganizationName": "Sharonne Rogers Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", - "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", + "OrganizationName": "Aviation Trucking Physical Exams LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", - "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", + "OrganizationName": "Aviation Trucking Physical Exams LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", - "OrganizationName": "Internal Medicine Perioperative Consultansts", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", + "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", - "OrganizationName": "Internal Medicine Perioperative Consultansts", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", + "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", - "OrganizationName": "Michigan Neurology and Epilepsy Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", + "OrganizationName": "Internal Medicine Perioperative Consultansts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", - "OrganizationName": "Michigan Neurology and Epilepsy Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", + "OrganizationName": "Internal Medicine Perioperative Consultansts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", - "OrganizationName": "Austin Health Wired", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", + "OrganizationName": "Nirvana Aesthetics Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", - "OrganizationName": "Austin Health Wired", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", + "OrganizationName": "Nirvana Aesthetics Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", - "OrganizationName": "Nirvana Aesthetics Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", + "OrganizationName": "Vanguard Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", - "OrganizationName": "Nirvana Aesthetics Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", + "OrganizationName": "Vanguard Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", - "OrganizationName": "Michael Maywood, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", + "OrganizationName": "Michigan Neurology and Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", - "OrganizationName": "Michael Maywood, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", + "OrganizationName": "Michigan Neurology and Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", - "OrganizationName": "Wichita Falls Nephrology Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", + "OrganizationName": "Austin Health Wired", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", - "OrganizationName": "Wichita Falls Nephrology Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", + "OrganizationName": "Austin Health Wired", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", - "OrganizationName": "Vanguard Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", + "OrganizationName": "Michael Maywood, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", - "OrganizationName": "Vanguard Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", + "OrganizationName": "Michael Maywood, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", - "OrganizationName": "The Sanctuary", + "URL": "https://api.patientfusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", + "OrganizationName": "Wichita Falls Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", - "OrganizationName": "The Sanctuary", + "URL": "https://api.practicefusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", + "OrganizationName": "Wichita Falls Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -17185,38 +17137,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", + "OrganizationName": "The Sanctuary", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", + "OrganizationName": "The Sanctuary", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", - "OrganizationName": "Long Island Infectious Disease Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", + "OrganizationName": "Mario Gonzalez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", - "OrganizationName": "Long Island Infectious Disease Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", + "OrganizationName": "Mario Gonzalez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", - "OrganizationName": "Mount pleasant medical associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", + "OrganizationName": "Rodom", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", - "OrganizationName": "Mount pleasant medical associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", + "OrganizationName": "Rodom", "NPIID": "", "OrganizationZipCode": "" }, @@ -17233,26 +17185,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", - "OrganizationName": "Rodom", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", + "OrganizationName": "Alok Shukla, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", - "OrganizationName": "Rodom", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", + "OrganizationName": "Alok Shukla, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", - "OrganizationName": "Mario Gonzalez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", + "OrganizationName": "Mount pleasant medical associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", - "OrganizationName": "Mario Gonzalez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", + "OrganizationName": "Mount pleasant medical associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -17281,14 +17233,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", - "OrganizationName": "Reed Migraine Centers", + "URL": "https://api.patientfusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", + "OrganizationName": "Complete Health Of Tampa Bay, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", - "OrganizationName": "Reed Migraine Centers", + "URL": "https://api.practicefusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", + "OrganizationName": "Complete Health Of Tampa Bay, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -17305,50 +17257,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", - "OrganizationName": "Complete Health Of Tampa Bay, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", + "OrganizationName": "Long Island Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", - "OrganizationName": "Complete Health Of Tampa Bay, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", + "OrganizationName": "Long Island Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", - "OrganizationName": "GIM SERVICES PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", + "OrganizationName": "Reed Migraine Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", - "OrganizationName": "GIM SERVICES PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", + "OrganizationName": "Reed Migraine Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", - "OrganizationName": "Midwest Breast and Aesthetic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", + "OrganizationName": "GIM SERVICES PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", - "OrganizationName": "Midwest Breast and Aesthetic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", + "OrganizationName": "GIM SERVICES PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", - "OrganizationName": "Best care Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", + "OrganizationName": "Midwest Breast and Aesthetic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", - "OrganizationName": "Best care Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", + "OrganizationName": "Midwest Breast and Aesthetic Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -17400,6 +17352,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", + "OrganizationName": "Best care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", + "OrganizationName": "Best care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75e9016d-ae7b-4324-84d9-0e700c917c5f", "OrganizationName": "DOCTORS OF INTERNAL MEDICINE PLLC", @@ -17425,26 +17389,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", - "OrganizationName": "Ambulatory Medical LTD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", - "OrganizationName": "Ambulatory Medical LTD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", - "OrganizationName": "Rochester Internists PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", - "OrganizationName": "Rochester Internists PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, @@ -17461,26 +17425,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", - "OrganizationName": "ROCK Recovery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", + "OrganizationName": "Family Podiatry of Central Florida, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", - "OrganizationName": "ROCK Recovery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", + "OrganizationName": "Family Podiatry of Central Florida, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", - "OrganizationName": "Family Podiatry of Central Florida, P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", - "OrganizationName": "Family Podiatry of Central Florida, P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17508,30 +17472,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", - "OrganizationName": "Crafted Sustainable Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", - "OrganizationName": "Crafted Sustainable Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", - "OrganizationName": "Heimdall Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", - "OrganizationName": "Heimdall Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd14ee1-2d66-462a-a113-a285843a085d", "OrganizationName": "Michigan Medical Group", @@ -17557,20 +17497,32 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", - "OrganizationName": "Surgical Specialists INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", - "OrganizationName": "Surgical Specialists INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8daa612-95ae-49d6-a417-a5f86272000a", - "OrganizationName": "Ivan Figueroa Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f8daa612-95ae-49d6-a417-a5f86272000a", + "OrganizationName": "Ivan Figueroa Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -17581,14 +17533,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", - "OrganizationName": "Legacy Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", + "OrganizationName": "Surgical Specialists INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", - "OrganizationName": "Legacy Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", + "OrganizationName": "Surgical Specialists INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17616,6 +17568,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", + "OrganizationName": "Legacy Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", + "OrganizationName": "Legacy Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2d30773c-918a-4739-b94c-4033dd558b76", "OrganizationName": "Janet Pizarro Practice", @@ -17653,26 +17629,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", - "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", + "OrganizationName": "Arkham Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", - "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", + "OrganizationName": "Arkham Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -17689,14 +17653,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", - "OrganizationName": "Arkham Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", + "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", - "OrganizationName": "Arkham Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", + "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", "NPIID": "", "OrganizationZipCode": "" }, @@ -17772,18 +17736,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", - "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", - "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/13bd7b41-ebce-4e7d-83ce-7394d3035b3a", "OrganizationName": "Doctor On Call", @@ -17821,14 +17773,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", - "OrganizationName": "Healing Waters Wellness Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", + "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", - "OrganizationName": "Healing Waters Wellness Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", + "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -17881,50 +17833,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", - "OrganizationName": "Domi Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", + "OrganizationName": "Healing Waters Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", - "OrganizationName": "Domi Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", + "OrganizationName": "Healing Waters Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", - "OrganizationName": "St Joe Health Care and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", + "OrganizationName": "Domi Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", - "OrganizationName": "St Joe Health Care and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", + "OrganizationName": "Domi Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", - "OrganizationName": "UZMA NASIM MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", + "OrganizationName": "Mindful Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", - "OrganizationName": "UZMA NASIM MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", + "OrganizationName": "Mindful Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", - "OrganizationName": "Mindful Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", + "OrganizationName": "Janice Soto Morales Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", - "OrganizationName": "Mindful Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", + "OrganizationName": "Janice Soto Morales Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -17941,74 +17893,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", - "OrganizationName": "Hillsboro Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", - "OrganizationName": "Hillsboro Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", - "OrganizationName": "Practice By Knight", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", - "OrganizationName": "Practice By Knight", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", - "OrganizationName": "Janice Soto Morales Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", - "OrganizationName": "Janice Soto Morales Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", - "OrganizationName": "Nevada Always Your Doctor LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", + "OrganizationName": "Bucks Family Medical Assoc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", - "OrganizationName": "Nevada Always Your Doctor LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", + "OrganizationName": "Bucks Family Medical Assoc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", - "OrganizationName": "Procare Medical Group Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", + "OrganizationName": "Hillsboro Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", - "OrganizationName": "Procare Medical Group Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", + "OrganizationName": "Hillsboro Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", - "OrganizationName": "Bucks Family Medical Assoc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", - "OrganizationName": "Bucks Family Medical Assoc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, @@ -18025,14 +17977,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", - "OrganizationName": "Psychiatric Services LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", + "OrganizationName": "Nevada Always Your Doctor LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", - "OrganizationName": "Psychiatric Services LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", + "OrganizationName": "Nevada Always Your Doctor LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18049,62 +18001,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", - "OrganizationName": "BG Tricounty Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", + "OrganizationName": "Psychiatric Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", - "OrganizationName": "BG Tricounty Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", + "OrganizationName": "Psychiatric Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", - "OrganizationName": "Beautiful Minds Health Care Facilities", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", + "OrganizationName": "BG Tricounty Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", - "OrganizationName": "Beautiful Minds Health Care Facilities", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", + "OrganizationName": "BG Tricounty Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", - "OrganizationName": "Cape Diabetes and Endocrinology PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", + "OrganizationName": "Beautiful Minds Health Care Facilities", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", - "OrganizationName": "Cape Diabetes and Endocrinology PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", + "OrganizationName": "Beautiful Minds Health Care Facilities", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", - "OrganizationName": "Baytown Occupational and Family Medicine, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", + "OrganizationName": "Rejuvenation Skin Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", - "OrganizationName": "Baytown Occupational and Family Medicine, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", + "OrganizationName": "Rejuvenation Skin Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", - "OrganizationName": "Rejuvenation Skin Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", + "OrganizationName": "Cape Diabetes and Endocrinology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", - "OrganizationName": "Rejuvenation Skin Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", + "OrganizationName": "Cape Diabetes and Endocrinology PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18121,14 +18073,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", - "OrganizationName": "ATA Practitioners Management LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", + "OrganizationName": "Baytown Occupational and Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", - "OrganizationName": "ATA Practitioners Management LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", + "OrganizationName": "Baytown Occupational and Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -18145,14 +18097,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", - "OrganizationName": "Otto Uhrik MD Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", + "OrganizationName": "Alan Tony Amberg PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", - "OrganizationName": "Otto Uhrik MD Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", + "OrganizationName": "Alan Tony Amberg PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18181,14 +18133,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", + "OrganizationName": "Otto Uhrik MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", + "OrganizationName": "Otto Uhrik MD Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18204,6 +18156,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", + "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", + "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a3b21035-d60c-465c-9ab1-844f6132846b", "OrganizationName": "Nevada Eye Plastic Surgery", @@ -18229,26 +18193,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", - "OrganizationName": "Rodney Avilla Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", + "OrganizationName": "Junaid Qureshi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", - "OrganizationName": "Rodney Avilla Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", + "OrganizationName": "Junaid Qureshi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", - "OrganizationName": "Junaid Qureshi Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", + "OrganizationName": "Rodney Avilla Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", - "OrganizationName": "Junaid Qureshi Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", + "OrganizationName": "Rodney Avilla Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18265,26 +18229,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", - "OrganizationName": "HEA Consulting", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", - "OrganizationName": "HEA Consulting", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", - "OrganizationName": "B K Chhabra LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", + "OrganizationName": "Deeper Roots Therapy, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", - "OrganizationName": "B K Chhabra LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", + "OrganizationName": "Deeper Roots Therapy, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18301,26 +18253,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", - "OrganizationName": "Deeper Roots Therapy, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", + "OrganizationName": "B K Chhabra LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", - "OrganizationName": "Deeper Roots Therapy, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", + "OrganizationName": "B K Chhabra LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", - "OrganizationName": "Jackson M. Lim, D.P.M.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", - "OrganizationName": "Jackson M. Lim, D.P.M.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "NPIID": "", "OrganizationZipCode": "" }, @@ -18337,26 +18289,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", - "OrganizationName": "Myndpath Psychiatry and Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", + "OrganizationName": "Jackson M. Lim, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", - "OrganizationName": "Myndpath Psychiatry and Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", + "OrganizationName": "Jackson M. Lim, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", - "OrganizationName": "Quality Care Access, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", + "OrganizationName": "Rahul Patel DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", - "OrganizationName": "Quality Care Access, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", + "OrganizationName": "Rahul Patel DPM", "NPIID": "", "OrganizationZipCode": "" }, @@ -18373,14 +18325,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", - "OrganizationName": "Rahul Patel DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", + "OrganizationName": "Myndpath Psychiatry and Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", - "OrganizationName": "Rahul Patel DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", + "OrganizationName": "Myndpath Psychiatry and Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", + "OrganizationName": "Quality Care Access, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", + "OrganizationName": "Quality Care Access, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18421,26 +18385,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", - "OrganizationName": "Khawar Chaudhry Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", + "OrganizationName": "Humane Care 7 Days Medical Group, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", - "OrganizationName": "Khawar Chaudhry Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", + "OrganizationName": "Humane Care 7 Days Medical Group, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", - "OrganizationName": "Humane Care 7 Days Medical Group, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", + "OrganizationName": "Khawar Chaudhry Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", - "OrganizationName": "Humane Care 7 Days Medical Group, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", + "OrganizationName": "Khawar Chaudhry Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18468,18 +18432,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", - "OrganizationName": "Allure Health and Beauty", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", - "OrganizationName": "Allure Health and Beauty", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9ddc42ff-1899-43bb-9940-c970ff69e928", "OrganizationName": "Main Medical Health Clinic Inc", @@ -18504,18 +18456,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", - "OrganizationName": "Samimi Orthopedic Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", - "OrganizationName": "Samimi Orthopedic Group", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bd1179de-9731-4242-8087-c30c7e0e4e42", "OrganizationName": "Clinica Latina Familiar 2 LLC", @@ -18529,50 +18469,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", - "OrganizationName": "Instant Medical Care Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", + "OrganizationName": "Allure Health and Beauty", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", - "OrganizationName": "Instant Medical Care Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", + "OrganizationName": "Allure Health and Beauty", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", - "OrganizationName": "Silkiss Eye Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", + "OrganizationName": "Samimi Orthopedic Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", - "OrganizationName": "Silkiss Eye Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", + "OrganizationName": "Samimi Orthopedic Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", - "OrganizationName": "Better Years Ahead Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", + "OrganizationName": "Instant Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", - "OrganizationName": "Better Years Ahead Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", + "OrganizationName": "Instant Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", - "OrganizationName": "Wellness Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", + "OrganizationName": "Silkiss Eye Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", - "OrganizationName": "Wellness Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", + "OrganizationName": "Silkiss Eye Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -18589,14 +18529,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", - "OrganizationName": "Patriot Care Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", + "OrganizationName": "Better Years Ahead Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", - "OrganizationName": "Patriot Care Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", + "OrganizationName": "Better Years Ahead Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", + "OrganizationName": "Wellness Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", + "OrganizationName": "Wellness Medical Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -18625,26 +18577,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", - "OrganizationName": "Peter Sangra MD LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", + "OrganizationName": "Patriot Care Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", - "OrganizationName": "Peter Sangra MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", + "OrganizationName": "Patriot Care Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", - "OrganizationName": "1-2-3 pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", + "OrganizationName": "Peter Sangra MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", - "OrganizationName": "1-2-3 pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", + "OrganizationName": "Peter Sangra MD LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18672,6 +18624,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", + "OrganizationName": "1-2-3 pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", + "OrganizationName": "1-2-3 pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d120da39-ed17-4ad1-873f-fbd23bd6c32f", "OrganizationName": "Chandra Shekar, M.D.", @@ -18780,18 +18744,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", - "OrganizationName": "Cranmore Health Partners LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", - "OrganizationName": "Cranmore Health Partners LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e54c7436-7ea7-4685-bbd8-750cda14e19c", "OrganizationName": "John E. Rivera Jr. Practice", @@ -18817,38 +18769,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", - "OrganizationName": "Santosh Pillai, D.O. LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", + "OrganizationName": "CA Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", - "OrganizationName": "Santosh Pillai, D.O. LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", + "OrganizationName": "CA Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", - "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", + "OrganizationName": "Cranmore Health Partners LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", - "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", + "OrganizationName": "Cranmore Health Partners LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", - "OrganizationName": "CA Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", - "OrganizationName": "CA Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", "NPIID": "", "OrganizationZipCode": "" }, @@ -18865,26 +18817,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", - "OrganizationName": "NP House Calls", + "URL": "https://api.patientfusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", + "OrganizationName": "Santosh Pillai, D.O. LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", - "OrganizationName": "NP House Calls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", + "OrganizationName": "Santosh Pillai, D.O. LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", - "OrganizationName": "Carlos Arguedas MD Katella", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", + "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", - "OrganizationName": "Carlos Arguedas MD Katella", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", + "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", "NPIID": "", "OrganizationZipCode": "" }, @@ -18900,6 +18852,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", + "OrganizationName": "Carlos Arguedas MD Katella", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", + "OrganizationName": "Carlos Arguedas MD Katella", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/95b1ca64-e674-4d98-acc5-7324e5c713c7", "OrganizationName": "Primary Care Partners PLLC", @@ -18972,18 +18936,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", - "OrganizationName": "Jay Medical, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", - "OrganizationName": "Jay Medical, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", @@ -18997,14 +18949,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", - "OrganizationName": "Consultorio Integral Hispano", + "URL": "https://api.patientfusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", + "OrganizationName": "TXAZ Virtual Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", - "OrganizationName": "Consultorio Integral Hispano", + "URL": "https://api.practicefusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", + "OrganizationName": "TXAZ Virtual Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -19021,74 +18973,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", - "OrganizationName": "TXAZ Virtual Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", - "OrganizationName": "TXAZ Virtual Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", - "OrganizationName": "Schaumburg Medical Center PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", + "OrganizationName": "Jay Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", - "OrganizationName": "Schaumburg Medical Center PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", + "OrganizationName": "Jay Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", - "OrganizationName": "OC Sports and Orthopaedics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", + "OrganizationName": "Richmond Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", - "OrganizationName": "OC Sports and Orthopaedics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", + "OrganizationName": "Richmond Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", - "OrganizationName": "Richmond Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", + "OrganizationName": "Schaumburg Medical Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", - "OrganizationName": "Richmond Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", + "OrganizationName": "Schaumburg Medical Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", - "OrganizationName": "Dr. Brigida Colon-Barreto", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", + "OrganizationName": "OC Sports and Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", - "OrganizationName": "Dr. Brigida Colon-Barreto", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", + "OrganizationName": "OC Sports and Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", - "OrganizationName": "Providence Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", + "OrganizationName": "Dr. Brigida Colon-Barreto", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", - "OrganizationName": "Providence Healthcare Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", + "OrganizationName": "Dr. Brigida Colon-Barreto", "NPIID": "", "OrganizationZipCode": "" }, @@ -19105,14 +19057,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", - "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", + "OrganizationName": "Providence Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", - "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", + "OrganizationName": "Providence Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -19140,6 +19092,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", + "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", + "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/94e845b7-44d9-4a3b-ad96-b440c3dbba2a", "OrganizationName": "David Weik Practice", @@ -19152,6 +19116,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", + "OrganizationName": "Gastroenterology and Hepatology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", + "OrganizationName": "Gastroenterology and Hepatology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8e63f009-8896-49c3-9e79-9c01267e89d9", "OrganizationName": "The Eye Care Group of Lancaster", @@ -19200,18 +19176,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", - "OrganizationName": "Gastroenterology and Hepatology Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", - "OrganizationName": "Gastroenterology and Hepatology Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75ab281a-88cb-4913-a55b-012111c9a192", "OrganizationName": "SoCal Men's Clinic", @@ -19236,6 +19200,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", + "OrganizationName": "terrance stradford Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", + "OrganizationName": "terrance stradford Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e13ac86d-c401-4138-837c-fa1b22905500", "OrganizationName": "Primary Care center of clear lake", @@ -19272,18 +19248,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", - "OrganizationName": "terrance stradford Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", - "OrganizationName": "terrance stradford Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/870deb5d-1800-4965-ac0c-90d1d2239867", "OrganizationName": "Viera Mental Wellness", @@ -19297,26 +19261,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", - "OrganizationName": "Sheila Canini Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", + "OrganizationName": "Infectious Disease Southwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", - "OrganizationName": "Sheila Canini Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", + "OrganizationName": "Infectious Disease Southwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", - "OrganizationName": "Infectious Disease Southwest", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", + "OrganizationName": "Michael Brown Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", - "OrganizationName": "Infectious Disease Southwest", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", + "OrganizationName": "Michael Brown Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -19345,26 +19309,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", - "OrganizationName": "Michael Brown Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", + "OrganizationName": "Sheila Canini Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", - "OrganizationName": "Michael Brown Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", + "OrganizationName": "Sheila Canini Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", - "OrganizationName": "Kendall South Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", + "OrganizationName": "FFP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", - "OrganizationName": "Kendall South Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", + "OrganizationName": "FFP", "NPIID": "", "OrganizationZipCode": "" }, @@ -19380,18 +19344,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4ad8f759-f243-4711-ad32-54ce9bdfb78d", "OrganizationName": "Dr.Martin Martino M.D.", @@ -19405,26 +19357,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", - "OrganizationName": "Mindy's Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", + "OrganizationName": "Kendall South Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", - "OrganizationName": "Mindy's Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", + "OrganizationName": "Kendall South Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", - "OrganizationName": "New Psychiatric Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", - "OrganizationName": "New Psychiatric Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -19441,38 +19393,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", - "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", + "OrganizationName": "Federico Roman Ng, MDPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", - "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", + "OrganizationName": "Federico Roman Ng, MDPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", - "OrganizationName": "Federico Roman Ng, MDPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", - "OrganizationName": "Federico Roman Ng, MDPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", + "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", + "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -19489,38 +19441,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", - "OrganizationName": "Michael Piazza, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", - "OrganizationName": "Michael Piazza, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", - "OrganizationName": "antonio brizuela Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", + "OrganizationName": "Dale Wicker Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", - "OrganizationName": "antonio brizuela Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", + "OrganizationName": "Dale Wicker Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", - "OrganizationName": "Marquez Anesthesia PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", + "OrganizationName": "antonio brizuela Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", - "OrganizationName": "Marquez Anesthesia PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", + "OrganizationName": "antonio brizuela Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -19549,26 +19501,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", - "OrganizationName": "Digestive Institute of Arizona", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", - "OrganizationName": "Digestive Institute of Arizona", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -19585,14 +19525,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", - "OrganizationName": "Moonflower MMJ Cards", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", - "OrganizationName": "Moonflower MMJ Cards", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19608,6 +19548,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", + "OrganizationName": "Digestive Institute of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", + "OrganizationName": "Digestive Institute of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4f83b9-a7b2-4be6-a474-15697b4fec16", "OrganizationName": "LUIS A. BOBEICA, M.D., P.A.", @@ -19633,50 +19597,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", - "OrganizationName": "EnTour Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", - "OrganizationName": "EnTour Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", - "OrganizationName": "Boston Facial Plastic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", + "OrganizationName": "EnTour Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", - "OrganizationName": "Boston Facial Plastic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", + "OrganizationName": "EnTour Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", - "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", - "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", - "OrganizationName": "Healthspan Longevity", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", + "OrganizationName": "Boston Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", - "OrganizationName": "Healthspan Longevity", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", + "OrganizationName": "Boston Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -19693,50 +19657,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", - "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", + "OrganizationName": "Healthspan Longevity", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", - "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", + "OrganizationName": "Healthspan Longevity", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", - "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", + "OrganizationName": "PFInternalTestUseOnly - Danny Wise", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", - "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", + "OrganizationName": "PFInternalTestUseOnly - Danny Wise", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", - "OrganizationName": "Maranatha Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", - "OrganizationName": "Maranatha Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19777,14 +19741,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", - "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", + "OrganizationName": "Healthcare For Women, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", - "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", + "OrganizationName": "Healthcare For Women, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19813,50 +19777,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", + "OrganizationName": "LA Healthcare \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", + "OrganizationName": "LA Healthcare \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", - "OrganizationName": "Roland Purcell Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", + "OrganizationName": "Juan Liceaga Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", - "OrganizationName": "Roland Purcell Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", + "OrganizationName": "Juan Liceaga Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", - "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", + "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", - "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", + "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", - "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", + "OrganizationName": "Visiting wound specialists and primary care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", - "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", + "OrganizationName": "Visiting wound specialists and primary care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", + "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", + "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -19885,38 +19873,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", - "OrganizationName": "Visiting wound specialists and primary care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", + "OrganizationName": "Fountain of You MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", - "OrganizationName": "Visiting wound specialists and primary care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", + "OrganizationName": "Fountain of You MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", + "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", + "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", - "OrganizationName": "Fountain of You MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", + "OrganizationName": "Floriss Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", - "OrganizationName": "Fountain of You MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", + "OrganizationName": "Floriss Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19933,14 +19921,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", - "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", + "OrganizationName": "MARTHA MANQUERO-BUTLER MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", - "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", + "OrganizationName": "MARTHA MANQUERO-BUTLER MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -19957,38 +19945,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", - "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", + "OrganizationName": "Town Center Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", - "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", + "OrganizationName": "Town Center Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", - "OrganizationName": "Town Center Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", - "OrganizationName": "Town Center Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -20004,6 +19992,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/db626e4d-f15b-49e4-a053-1755cada58ec", "OrganizationName": "JAXSENS WELLNESS CENTER", @@ -20041,38 +20041,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", + "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", + "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -20088,30 +20076,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", - "OrganizationName": "Robert Lee - American Medical Group Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", - "OrganizationName": "Robert Lee - American Medical Group Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", - "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", - "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", "OrganizationName": "Berks Diabetes Management, LLC", @@ -20124,18 +20088,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", - "OrganizationName": "Action-Med Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", - "OrganizationName": "Action-Med Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e7798675-b9b8-454a-a2d3-d299bd36a1d5", "OrganizationName": "Medical House Call Associates", @@ -20149,50 +20101,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", - "OrganizationName": "Orchard Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", - "OrganizationName": "Orchard Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", - "OrganizationName": "Plantersville Family Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", - "OrganizationName": "Plantersville Family Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", - "OrganizationName": "Riant Health Services, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", - "OrganizationName": "Riant Health Services, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", - "OrganizationName": "NEO Foot and Ankle Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", + "OrganizationName": "Riant Health Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", - "OrganizationName": "NEO Foot and Ankle Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", + "OrganizationName": "Riant Health Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20209,14 +20161,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", - "OrganizationName": "CLANTON INTERNAL MEDICINE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", + "OrganizationName": "NEO Foot and Ankle Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", - "OrganizationName": "CLANTON INTERNAL MEDICINE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", + "OrganizationName": "NEO Foot and Ankle Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -20233,26 +20185,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", - "OrganizationName": "Meridian Integrative Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", + "OrganizationName": "CLANTON INTERNAL MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", - "OrganizationName": "Meridian Integrative Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", + "OrganizationName": "CLANTON INTERNAL MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", - "OrganizationName": "Pablo Decastro Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", - "OrganizationName": "Pablo Decastro Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -20293,26 +20245,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", - "OrganizationName": "Troy Johnson Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", + "OrganizationName": "Eastern Shore Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", - "OrganizationName": "Troy Johnson Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", + "OrganizationName": "Eastern Shore Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", - "OrganizationName": "Eastern Shore Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", + "OrganizationName": "Pablo Decastro Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", - "OrganizationName": "Eastern Shore Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", + "OrganizationName": "Pablo Decastro Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", + "OrganizationName": "Troy Johnson Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", + "OrganizationName": "Troy Johnson Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -20341,26 +20305,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", - "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", + "OrganizationName": "Desir Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", - "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", + "OrganizationName": "Desir Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", - "OrganizationName": "Desir Medical PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", + "OrganizationName": "Foot and Ankle Associates Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", - "OrganizationName": "Desir Medical PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", + "OrganizationName": "Foot and Ankle Associates Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20400,18 +20364,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", - "OrganizationName": "David Bleza MD FACS", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", - "OrganizationName": "David Bleza MD FACS", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/accd644e-ea17-423f-b59a-734cb9861866", "OrganizationName": "Dr. Zaytoun Medical Care PC", @@ -20425,14 +20377,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", - "OrganizationName": "Clinical Bridges", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", + "OrganizationName": "David Bleza MD FACS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", - "OrganizationName": "Clinical Bridges", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", + "OrganizationName": "David Bleza MD FACS", "NPIID": "", "OrganizationZipCode": "" }, @@ -20448,6 +20400,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", + "OrganizationName": "Clinical Bridges", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", + "OrganizationName": "Clinical Bridges", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/16ac9a8a-bcbd-42ce-be7d-8913a92c8609", "OrganizationName": "Peter Shalit MD", @@ -20472,6 +20436,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", + "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", + "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/313bce9a-02f0-470e-9b8d-513928a1553f", "OrganizationName": "The Case Clinic", @@ -20508,18 +20484,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", - "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", - "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2357a25e-0d04-4639-b459-aa16b919552e", "OrganizationName": "Cognitive Works, PLLC", @@ -20557,50 +20521,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", - "OrganizationName": "Lake Oswego GYN", + "URL": "https://api.patientfusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", + "OrganizationName": "Samuel sugg Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", - "OrganizationName": "Lake Oswego GYN", + "URL": "https://api.practicefusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", + "OrganizationName": "Samuel sugg Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", - "OrganizationName": "Suffern Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", + "OrganizationName": "Lake Oswego GYN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", - "OrganizationName": "Suffern Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", + "OrganizationName": "Lake Oswego GYN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", - "OrganizationName": "Samuel sugg Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", + "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", - "OrganizationName": "Samuel sugg Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", + "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", - "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", + "OrganizationName": "Suffern Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", - "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", + "OrganizationName": "Suffern Podiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -20629,14 +20593,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", - "OrganizationName": "New Mexico Psych Med Services, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", + "OrganizationName": "Pinnacle Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", - "OrganizationName": "New Mexico Psych Med Services, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", + "OrganizationName": "Pinnacle Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20653,26 +20617,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", - "OrganizationName": "Pinnacle Primary Care PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", + "OrganizationName": "New Mexico Psych Med Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", - "OrganizationName": "Pinnacle Primary Care PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", + "OrganizationName": "New Mexico Psych Med Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", + "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", + "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -20689,14 +20653,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", - "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", + "OrganizationName": "Carnett Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", - "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", + "OrganizationName": "Carnett Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20712,18 +20676,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", - "OrganizationName": "Trinity Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", - "OrganizationName": "Trinity Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", "OrganizationName": "Sanctuary Health, LLC", @@ -20749,26 +20701,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", - "OrganizationName": "ÁINE MEDICAL INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", + "OrganizationName": "Trinity Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", - "OrganizationName": "ÁINE MEDICAL INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", + "OrganizationName": "Trinity Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", - "OrganizationName": "LAMD MEDICAL GROUP Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", - "OrganizationName": "LAMD MEDICAL GROUP Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20785,14 +20737,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", - "OrganizationName": "Botanical Medsurg", + "URL": "https://api.patientfusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", + "OrganizationName": "LAMD MEDICAL GROUP Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", - "OrganizationName": "Botanical Medsurg", + "URL": "https://api.practicefusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", + "OrganizationName": "LAMD MEDICAL GROUP Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -20809,26 +20761,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", - "OrganizationName": "AMI Expeditionary Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", - "OrganizationName": "AMI Expeditionary Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", - "OrganizationName": "SONI MEDICAL GROUP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", - "OrganizationName": "SONI MEDICAL GROUP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", "NPIID": "", "OrganizationZipCode": "" }, @@ -20844,18 +20784,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", - "OrganizationName": "BOYNTON PRIMARY CARE", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", - "OrganizationName": "BOYNTON PRIMARY CARE", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c2f95b03-c9b3-4393-9761-32c246085e5d", "OrganizationName": "Meaningful Recovery of New Mexico", @@ -20881,26 +20809,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", - "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", - "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", - "OrganizationName": "Pain and Spine Center of Charlottesville", + "URL": "https://api.patientfusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", - "OrganizationName": "Pain and Spine Center of Charlottesville", + "URL": "https://api.practicefusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, @@ -20917,26 +20845,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", - "OrganizationName": "Jodilyn Gingold, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", + "OrganizationName": "Pain and Spine Center of Charlottesville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", - "OrganizationName": "Jodilyn Gingold, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", + "OrganizationName": "Pain and Spine Center of Charlottesville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", - "OrganizationName": "Texas Foundation Medical Group, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", + "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", - "OrganizationName": "Texas Foundation Medical Group, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", + "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", "NPIID": "", "OrganizationZipCode": "" }, @@ -20952,6 +20892,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", + "OrganizationName": "Jodilyn Gingold, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", + "OrganizationName": "Jodilyn Gingold, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ad388eea-5dfb-4d0c-9cca-c18ffb1a66ad", "OrganizationName": "Medina Healthcare", @@ -20976,6 +20928,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", + "OrganizationName": "Anointed Hands Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", + "OrganizationName": "Anointed Hands Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", + "OrganizationName": "Texas Foundation Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", + "OrganizationName": "Texas Foundation Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/258e906c-dd62-4132-9a2f-abf3fcf7f8cf", "OrganizationName": "Journey Healthcare Practice", @@ -20989,14 +20965,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", - "OrganizationName": "Anointed Hands Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", + "OrganizationName": "JAN BECKER Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", - "OrganizationName": "Anointed Hands Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", + "OrganizationName": "JAN BECKER Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", + "OrganizationName": "Miami Spine and wellness center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", + "OrganizationName": "Miami Spine and wellness center", "NPIID": "", "OrganizationZipCode": "" }, @@ -21013,14 +21001,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", - "OrganizationName": "JAN BECKER Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", + "OrganizationName": "247 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", - "OrganizationName": "JAN BECKER Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", + "OrganizationName": "247 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21049,26 +21037,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", - "OrganizationName": "Miami Spine and wellness center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", - "OrganizationName": "Miami Spine and wellness center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", - "OrganizationName": "247 Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", + "OrganizationName": "GUPTA,MONIKA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", - "OrganizationName": "247 Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", + "OrganizationName": "GUPTA,MONIKA MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -21097,14 +21073,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", - "OrganizationName": "GUPTA,MONIKA MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", + "OrganizationName": "Infectious Disease Consultants of West Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", - "OrganizationName": "GUPTA,MONIKA MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", + "OrganizationName": "Infectious Disease Consultants of West Florida", "NPIID": "", "OrganizationZipCode": "" }, @@ -21121,14 +21097,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", - "OrganizationName": "Infectious Disease Consultants of West Florida", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", + "OrganizationName": "Advanced Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", - "OrganizationName": "Infectious Disease Consultants of West Florida", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", + "OrganizationName": "Advanced Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -21144,18 +21120,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", - "OrganizationName": "Advanced Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", - "OrganizationName": "Advanced Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/67bad6cb-de7c-4a45-b743-0ec7ae8abc6d", "OrganizationName": "Andrew Massaband, MD", @@ -21204,18 +21168,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", - "OrganizationName": "Perry Stein Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", - "OrganizationName": "Perry Stein Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2fe68f06-bd4a-4cc4-b68f-a0a70a93384f", "OrganizationName": "Westside Medical Care Inc", @@ -21229,14 +21181,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", - "OrganizationName": "GREYSI TAMAYO GONZALEZ", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", + "OrganizationName": "Perry Stein Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", - "OrganizationName": "GREYSI TAMAYO GONZALEZ", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", + "OrganizationName": "Perry Stein Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -21265,14 +21217,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", - "OrganizationName": "Mikhail Novikov MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", + "OrganizationName": "GREYSI TAMAYO GONZALEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", - "OrganizationName": "Mikhail Novikov MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", + "OrganizationName": "GREYSI TAMAYO GONZALEZ", "NPIID": "", "OrganizationZipCode": "" }, @@ -21288,6 +21240,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", + "OrganizationName": "Mikhail Novikov MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", + "OrganizationName": "Mikhail Novikov MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/db93ac3d-a591-4d03-ac7b-87fdac887096", "OrganizationName": "Southwest Urgent Care \u0026 Family Practice", @@ -21325,74 +21289,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", - "OrganizationName": "Northstar Wellness Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", + "OrganizationName": "khendra peay, M.D., P.A. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", - "OrganizationName": "Northstar Wellness Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", + "OrganizationName": "khendra peay, M.D., P.A. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", - "OrganizationName": "khendra peay, M.D., P.A. Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", + "OrganizationName": "James River Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", - "OrganizationName": "khendra peay, M.D., P.A. Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", + "OrganizationName": "James River Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", - "OrganizationName": "UNITED AND GUIDED", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", + "OrganizationName": "Northstar Wellness Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", - "OrganizationName": "UNITED AND GUIDED", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", + "OrganizationName": "Northstar Wellness Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", - "OrganizationName": "James River Cardiology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", + "OrganizationName": "UNITED AND GUIDED", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", - "OrganizationName": "James River Cardiology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", + "OrganizationName": "UNITED AND GUIDED", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", - "OrganizationName": "PRIMARY HOMECARE, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", + "OrganizationName": "HEISU RESEARCH GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", - "OrganizationName": "PRIMARY HOMECARE, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", + "OrganizationName": "HEISU RESEARCH GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", - "OrganizationName": "Edgebrook Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", + "OrganizationName": "BAY HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", - "OrganizationName": "Edgebrook Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", + "OrganizationName": "BAY HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21408,6 +21372,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", + "OrganizationName": "PRIMARY HOMECARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", + "OrganizationName": "PRIMARY HOMECARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1f169e9b-3e59-4564-9985-b38fb076f5c6", "OrganizationName": "Frederick CustomEyez Prosthetics LLC", @@ -21445,38 +21421,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", - "OrganizationName": "HEISU RESEARCH GROUP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", - "OrganizationName": "HEISU RESEARCH GROUP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", - "OrganizationName": "MED with Love, pllc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", - "OrganizationName": "MED with Love, pllc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", - "OrganizationName": "BAY HEALTHCARE LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", + "OrganizationName": "Edgebrook Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", - "OrganizationName": "BAY HEALTHCARE LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", + "OrganizationName": "Edgebrook Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -21505,50 +21457,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", - "OrganizationName": "Weingarten medical offices", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", - "OrganizationName": "Weingarten medical offices", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", - "OrganizationName": "Global Health Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", + "OrganizationName": "MED with Love, pllc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", - "OrganizationName": "Global Health Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", + "OrganizationName": "MED with Love, pllc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", - "OrganizationName": "Jennifer J. Davis, MD.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", + "OrganizationName": "Weingarten medical offices", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", - "OrganizationName": "Jennifer J. Davis, MD.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", + "OrganizationName": "Weingarten medical offices", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", - "OrganizationName": "Peachtree Family Psychiatry Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", + "OrganizationName": "Global Health Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", - "OrganizationName": "Peachtree Family Psychiatry Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", + "OrganizationName": "Global Health Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21589,50 +21529,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", - "OrganizationName": "Olive Tree Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", + "OrganizationName": "Jennifer J. Davis, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", - "OrganizationName": "Olive Tree Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", + "OrganizationName": "Jennifer J. Davis, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", - "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", + "OrganizationName": "Peachtree Family Psychiatry Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", - "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", + "OrganizationName": "Peachtree Family Psychiatry Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", - "OrganizationName": "Sandy Amador, DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", + "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", - "OrganizationName": "Sandy Amador, DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", + "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", - "OrganizationName": "The Foot Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", - "OrganizationName": "The Foot Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -21649,14 +21589,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", - "OrganizationName": "Bella Sante Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", - "OrganizationName": "Bella Sante Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "NPIID": "", "OrganizationZipCode": "" }, @@ -21673,26 +21613,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", - "OrganizationName": "Hawley Psychiatric", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", + "OrganizationName": "Sandy Amador, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", - "OrganizationName": "Hawley Psychiatric", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", + "OrganizationName": "Sandy Amador, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", - "OrganizationName": "Global Psychotherapy", + "URL": "https://api.patientfusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", + "OrganizationName": "The Foot Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", - "OrganizationName": "Global Psychotherapy", + "URL": "https://api.practicefusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", + "OrganizationName": "The Foot Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21708,6 +21660,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", + "OrganizationName": "Global Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", + "OrganizationName": "Global Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1cad7864-3457-454e-9b44-1db77ddcbd05", "OrganizationName": "AveMaria Family Practice", @@ -21745,26 +21709,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", - "OrganizationName": "Fayaz A Shawl MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", + "OrganizationName": "Mana Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", - "OrganizationName": "Fayaz A Shawl MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", + "OrganizationName": "Mana Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", - "OrganizationName": "Advance Psychiatry and Counseling, SC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", + "OrganizationName": "Fayaz A Shawl MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", - "OrganizationName": "Advance Psychiatry and Counseling, SC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", + "OrganizationName": "Fayaz A Shawl MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -21781,14 +21745,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", - "OrganizationName": "Mana Vascular Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", + "OrganizationName": "Advance Psychiatry and Counseling, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", - "OrganizationName": "Mana Vascular Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", + "OrganizationName": "Advance Psychiatry and Counseling, SC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21840,18 +21804,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", - "OrganizationName": "Happy Medical Care Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", - "OrganizationName": "Happy Medical Care Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0c8b3e84-7b72-4903-aa51-4996faffac39", "OrganizationName": "Edward J Lazaga MD Nephrology", @@ -21865,50 +21817,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", - "OrganizationName": "Donald T. Levine MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", + "OrganizationName": "James W. Ratcliff , DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", - "OrganizationName": "Donald T. Levine MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", + "OrganizationName": "James W. Ratcliff , DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", - "OrganizationName": "Allied Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", + "OrganizationName": "Happy Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", - "OrganizationName": "Allied Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", + "OrganizationName": "Happy Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", - "OrganizationName": "James W. Ratcliff , DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", + "OrganizationName": "Allied Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", - "OrganizationName": "James W. Ratcliff , DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", + "OrganizationName": "Allied Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", - "OrganizationName": "Cyndia Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", + "OrganizationName": "Donald T. Levine MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", - "OrganizationName": "Cyndia Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", + "OrganizationName": "Donald T. Levine MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -21924,18 +21876,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", - "OrganizationName": "Modern Enhancement", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", - "OrganizationName": "Modern Enhancement", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/86aa54dd-e45f-407c-b5ec-b248ee7c1d25", "OrganizationName": "Wyoming Heart and Vascular Center", @@ -21960,6 +21900,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/de31b54a-a7c7-4541-a0d2-03748418bf86", "OrganizationName": "Dr. Frank Mastrianno Practice", @@ -21973,38 +21925,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", - "OrganizationName": "Josean Ortiz Rosario Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", + "OrganizationName": "Phabulous Care, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", - "OrganizationName": "Josean Ortiz Rosario Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", + "OrganizationName": "Phabulous Care, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", - "OrganizationName": "Jorge Vallecillo, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", + "OrganizationName": "Modern Enhancement", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", - "OrganizationName": "Jorge Vallecillo, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", + "OrganizationName": "Modern Enhancement", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", - "OrganizationName": "Phabulous Care, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", + "OrganizationName": "Josean Ortiz Rosario Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", - "OrganizationName": "Phabulous Care, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", + "OrganizationName": "Josean Ortiz Rosario Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", + "OrganizationName": "Jorge Vallecillo, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", + "OrganizationName": "Jorge Vallecillo, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -22044,6 +22008,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", + "OrganizationName": "GN Endocrinology Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", + "OrganizationName": "GN Endocrinology Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/725a016e-c8fc-4773-a955-6dec22b86411", "OrganizationName": "Wellness Alliance, PMA", @@ -22093,26 +22069,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", - "OrganizationName": "GN Endocrinology Ltd.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", + "OrganizationName": "HUZ Shifamed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", - "OrganizationName": "GN Endocrinology Ltd.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", + "OrganizationName": "HUZ Shifamed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", - "OrganizationName": "HUZ Shifamed", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", + "OrganizationName": "New Hope Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", - "OrganizationName": "HUZ Shifamed", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", + "OrganizationName": "New Hope Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22140,18 +22116,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", - "OrganizationName": "New Hope Integrative Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", - "OrganizationName": "New Hope Integrative Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3a67bb4c-3341-4d7f-ad14-7b2e4ece5df1", "OrganizationName": "Midwest Vascular and Varicose Vein Center", @@ -22213,26 +22177,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", - "OrganizationName": "JVL mental health consult", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", + "OrganizationName": "Elleorhim Mental Wellbeing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", - "OrganizationName": "JVL mental health consult", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", + "OrganizationName": "Elleorhim Mental Wellbeing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", - "OrganizationName": "Elleorhim Mental Wellbeing", + "URL": "https://api.patientfusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", + "OrganizationName": "JVL mental health consult", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", - "OrganizationName": "Elleorhim Mental Wellbeing", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", + "OrganizationName": "JVL mental health consult", "NPIID": "", "OrganizationZipCode": "" }, @@ -22272,6 +22236,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", + "OrganizationName": "Advanced Practice Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", + "OrganizationName": "Advanced Practice Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b356f97d-3990-47ca-bf86-83db2337cf31", "OrganizationName": "Family Health and Wellness Center", @@ -22308,18 +22284,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", - "OrganizationName": "Advanced Practice Psychiatric Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", - "OrganizationName": "Advanced Practice Psychiatric Services", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a8e13822-8515-4d9e-a250-6508690be786", "OrganizationName": "junichioharapra", @@ -22345,14 +22309,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", - "OrganizationName": "Kunik Health, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", + "OrganizationName": "DEW anti-aging and Medspa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", - "OrganizationName": "Kunik Health, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", + "OrganizationName": "DEW anti-aging and Medspa", "NPIID": "", "OrganizationZipCode": "" }, @@ -22369,50 +22333,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", - "OrganizationName": "DEW anti-aging and Medspa", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", + "OrganizationName": "Kunik Health, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", - "OrganizationName": "DEW anti-aging and Medspa", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", + "OrganizationName": "Kunik Health, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", - "OrganizationName": "Safe Harbor Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", + "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", - "OrganizationName": "Safe Harbor Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", + "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", - "OrganizationName": "Premier Pain \u0026 Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", + "OrganizationName": "Safe Harbor Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", - "OrganizationName": "Premier Pain \u0026 Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", + "OrganizationName": "Safe Harbor Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", - "OrganizationName": "Direct Surgical Care of Hot Springs", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", + "OrganizationName": "Premier Pain \u0026 Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", - "OrganizationName": "Direct Surgical Care of Hot Springs", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", + "OrganizationName": "Premier Pain \u0026 Spine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22429,14 +22393,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", - "OrganizationName": "Professional Associates in Surgery,LLP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", + "OrganizationName": "Direct Surgical Care of Hot Springs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", - "OrganizationName": "Professional Associates in Surgery,LLP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", + "OrganizationName": "Direct Surgical Care of Hot Springs", "NPIID": "", "OrganizationZipCode": "" }, @@ -22452,6 +22416,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", + "OrganizationName": "Professional Associates in Surgery,LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", + "OrganizationName": "Professional Associates in Surgery,LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a3542a-de11-4b96-9e42-568e75cc79c8", "OrganizationName": "christine j amis md", @@ -22465,14 +22441,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", - "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", + "OrganizationName": "Taylorville Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", - "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", + "OrganizationName": "Taylorville Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22501,14 +22477,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", - "OrganizationName": "Taylorville Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", + "OrganizationName": "Calm Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", - "OrganizationName": "Taylorville Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", + "OrganizationName": "Calm Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -22537,50 +22513,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", - "OrganizationName": "Calm Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", + "OrganizationName": "Family Practice by the Lake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", - "OrganizationName": "Calm Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", + "OrganizationName": "Family Practice by the Lake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", - "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", + "OrganizationName": "Clear Minds Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", - "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", + "OrganizationName": "Clear Minds Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", - "OrganizationName": "Family Practice by the Lake", + "URL": "https://api.patientfusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", + "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", - "OrganizationName": "Family Practice by the Lake", + "URL": "https://api.practicefusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", + "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", - "OrganizationName": "Clear Minds Psychiatry LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", + "OrganizationName": "Bare Beauty Female Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", - "OrganizationName": "Clear Minds Psychiatry LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", + "OrganizationName": "Bare Beauty Female Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -22597,38 +22573,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", - "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", + "URL": "https://api.patientfusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", + "OrganizationName": "San Diego Family Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", - "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", + "URL": "https://api.practicefusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", + "OrganizationName": "San Diego Family Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", - "OrganizationName": "Bare Beauty Female Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", + "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", - "OrganizationName": "Bare Beauty Female Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", + "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", - "OrganizationName": "San Diego Family Dermatology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", + "OrganizationName": "Dr. Michelle Gordon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", - "OrganizationName": "San Diego Family Dermatology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", + "OrganizationName": "Dr. Michelle Gordon", "NPIID": "", "OrganizationZipCode": "" }, @@ -22645,50 +22621,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", - "OrganizationName": "James Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", + "OrganizationName": "Mario Gonzalez Casafont", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", - "OrganizationName": "James Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", + "OrganizationName": "Mario Gonzalez Casafont", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", - "OrganizationName": "Physicians For Seniors", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", + "OrganizationName": "James Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", - "OrganizationName": "Physicians For Seniors", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", + "OrganizationName": "James Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", - "OrganizationName": "Dr. Michelle Gordon", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", + "OrganizationName": "Physicians For Seniors", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", - "OrganizationName": "Dr. Michelle Gordon", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", + "OrganizationName": "Physicians For Seniors", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", - "OrganizationName": "Mario Gonzalez Casafont", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", + "OrganizationName": "North Shore Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", - "OrganizationName": "Mario Gonzalez Casafont", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", + "OrganizationName": "North Shore Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, @@ -22705,26 +22681,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", - "OrganizationName": "North Shore Medical LTD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", + "OrganizationName": "Renew Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", - "OrganizationName": "North Shore Medical LTD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", + "OrganizationName": "Renew Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", - "OrganizationName": "Renew Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", + "OrganizationName": "West Cayuga Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", - "OrganizationName": "Renew Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", + "OrganizationName": "West Cayuga Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22741,14 +22717,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", - "OrganizationName": "West Cayuga Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", + "OrganizationName": "Dr. Ricardo Gago-Pinero office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", - "OrganizationName": "West Cayuga Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", + "OrganizationName": "Dr. Ricardo Gago-Pinero office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", + "OrganizationName": "Turning Point Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", + "OrganizationName": "Turning Point Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -22789,50 +22777,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", - "OrganizationName": "Arizona Physician Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", - "OrganizationName": "Arizona Physician Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", - "OrganizationName": "Dr. Ricardo Gago-Pinero office", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", - "OrganizationName": "Dr. Ricardo Gago-Pinero office", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", - "OrganizationName": "Turning Point Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "AHN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", - "OrganizationName": "Turning Point Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "AHN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", - "OrganizationName": "Revitalife Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", + "OrganizationName": "Arizona Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", - "OrganizationName": "Revitalife Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", + "OrganizationName": "Arizona Physician Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -22861,26 +22825,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", - "OrganizationName": "AHN", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", + "OrganizationName": "Hemcare Medical Clinic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", - "OrganizationName": "AHN", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", + "OrganizationName": "Hemcare Medical Clinic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", - "OrganizationName": "Hemcare Medical Clinic PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", + "OrganizationName": "Revitalife Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", - "OrganizationName": "Hemcare Medical Clinic PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", + "OrganizationName": "Revitalife Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -22921,38 +22885,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", - "OrganizationName": "Abraham Boackle Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", + "OrganizationName": "Robbins Family Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", - "OrganizationName": "Abraham Boackle Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", + "OrganizationName": "Robbins Family Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", - "OrganizationName": "Robbins Family Healthcare LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", + "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", - "OrganizationName": "Robbins Family Healthcare LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", + "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", - "OrganizationName": "Rheumatology Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Abraham Boackle Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", - "OrganizationName": "Rheumatology Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Abraham Boackle Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", + "OrganizationName": "Eagle EyeCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", + "OrganizationName": "Eagle EyeCare", "NPIID": "", "OrganizationZipCode": "" }, @@ -22969,26 +22945,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", - "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", + "OrganizationName": "Rheumatology Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", - "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", + "OrganizationName": "Rheumatology Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", - "OrganizationName": "Eagle EyeCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", + "OrganizationName": "Berman Monell Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", - "OrganizationName": "Eagle EyeCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", + "OrganizationName": "Berman Monell Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -23017,38 +22993,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", - "OrganizationName": "Primary Care of Michigan", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", + "OrganizationName": "Idaho Modern Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", - "OrganizationName": "Primary Care of Michigan", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", + "OrganizationName": "Idaho Modern Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", - "OrganizationName": "Idaho Modern Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", + "OrganizationName": "Primary Care of Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", - "OrganizationName": "Idaho Modern Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", + "OrganizationName": "Primary Care of Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", - "OrganizationName": "Berman Monell Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", + "OrganizationName": "DM Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", - "OrganizationName": "Berman Monell Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", + "OrganizationName": "DM Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -23065,14 +23041,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", - "OrganizationName": "marccantillonpr", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", + "OrganizationName": "Asya Ofshteyn Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", - "OrganizationName": "marccantillonpr", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", + "OrganizationName": "Asya Ofshteyn Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -23088,6 +23064,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", + "OrganizationName": "marccantillonpr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", + "OrganizationName": "marccantillonpr", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/527b8968-1b67-46ce-a742-6bb28364208d", "OrganizationName": "Bahram Taghavi Practice", @@ -23113,50 +23101,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", - "OrganizationName": "DM Health \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", + "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", - "OrganizationName": "DM Health \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", + "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", - "OrganizationName": "US MEDICAL CLINICS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", + "OrganizationName": "Felton Health Care Specialists, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", - "OrganizationName": "US MEDICAL CLINICS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", + "OrganizationName": "Felton Health Care Specialists, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", - "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", + "OrganizationName": "US MEDICAL CLINICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", - "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", + "OrganizationName": "US MEDICAL CLINICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", - "OrganizationName": "Asya Ofshteyn Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", + "OrganizationName": "Upper County Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", - "OrganizationName": "Asya Ofshteyn Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", + "OrganizationName": "Upper County Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -23173,26 +23161,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", - "OrganizationName": "Upper County Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", + "OrganizationName": "Cultivating Resilience", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", - "OrganizationName": "Upper County Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", + "OrganizationName": "Cultivating Resilience", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", - "OrganizationName": "Felton Health Care Specialists, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", + "OrganizationName": "NWP Family Practice Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", - "OrganizationName": "Felton Health Care Specialists, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", + "OrganizationName": "NWP Family Practice Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -23208,18 +23196,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", - "OrganizationName": "NWP Family Practice Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", - "OrganizationName": "NWP Family Practice Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2501e292-9e3b-4039-b62e-d9eb25976787", "OrganizationName": "Long Hollow Family Practice", @@ -23256,18 +23232,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", - "OrganizationName": "Cultivating Resilience", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", - "OrganizationName": "Cultivating Resilience", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/941c5463-9a63-4feb-9e8d-f8c04d527b99", "OrganizationName": "Cristina Wyse Practice", @@ -23315,6 +23279,162 @@ "OrganizationName": "WellCare at Home", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/34b2f31f-4f40-4aab-ac38-eee3ff7b880b", + "OrganizationName": "North Branch Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/34b2f31f-4f40-4aab-ac38-eee3ff7b880b", + "OrganizationName": "North Branch Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3cecbe43-89a0-48b2-8c5a-81dc6e95f04e", + "OrganizationName": "erdr247,Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3cecbe43-89a0-48b2-8c5a-81dc6e95f04e", + "OrganizationName": "erdr247,Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3650fc17-33cd-4a32-8568-bea69f879943", + "OrganizationName": "BeWell Medical Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3650fc17-33cd-4a32-8568-bea69f879943", + "OrganizationName": "BeWell Medical Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d503a8ba-c3b5-434c-880f-770f3ba374a6", + "OrganizationName": "Keishawn Billing \u0026 Coding Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d503a8ba-c3b5-434c-880f-770f3ba374a6", + "OrganizationName": "Keishawn Billing \u0026 Coding Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/20d9f6e6-a8a4-42ba-877e-a07010d64c14", + "OrganizationName": "Kimberly Rawlins, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/20d9f6e6-a8a4-42ba-877e-a07010d64c14", + "OrganizationName": "Kimberly Rawlins, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1464af51-1d4e-4a79-890f-3c6f2d751aa2", + "OrganizationName": "NHK MD Consulting, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1464af51-1d4e-4a79-890f-3c6f2d751aa2", + "OrganizationName": "NHK MD Consulting, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4cdd2e8-1cd5-4291-be55-fc878c8c1c15", + "OrganizationName": "North Shore Health and Hyperbarics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4cdd2e8-1cd5-4291-be55-fc878c8c1c15", + "OrganizationName": "North Shore Health and Hyperbarics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b0109a6a-863b-410f-9ad8-8c5fa55fb9eb", + "OrganizationName": "Companion Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b0109a6a-863b-410f-9ad8-8c5fa55fb9eb", + "OrganizationName": "Companion Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/acec73a5-5157-46ac-be2d-70f851559c8d", + "OrganizationName": "Kimberly McMurray Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/acec73a5-5157-46ac-be2d-70f851559c8d", + "OrganizationName": "Kimberly McMurray Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6fac5487-bc98-424e-a5f4-07b92931ab97", + "OrganizationName": "Michigan Family Medicine and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fac5487-bc98-424e-a5f4-07b92931ab97", + "OrganizationName": "Michigan Family Medicine and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1ab0feb5-4f7c-42c8-bb00-57ad9405f363", + "OrganizationName": "Vita Plus Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1ab0feb5-4f7c-42c8-bb00-57ad9405f363", + "OrganizationName": "Vita Plus Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f66e9509-7cd8-4d3f-95cd-349072e89d39", + "OrganizationName": "H\u0026M Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f66e9509-7cd8-4d3f-95cd-349072e89d39", + "OrganizationName": "H\u0026M Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4fe4b409-c3cc-408d-ba48-09459f0df667", + "OrganizationName": "Polaris Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4fe4b409-c3cc-408d-ba48-09459f0df667", + "OrganizationName": "Polaris Medical Group", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json b/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json index 6eff6feae..8e7d4b1ae 100644 --- a/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json +++ b/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json @@ -1,907 +1,895 @@ { "Endpoints": [ { - "URL": "https://mu3test.welligent.com/fhir/dhit/practicezero/r4", + "URL": "https://fhir.qa.welligent.com/fhir/dhit/109/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/practiceone/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/109/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/totaleducationsolutions/259/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/watchmegrow/311/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/totaleducationsolutions/259/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hillviewmentalhealthcenter,inc./300/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/watchmegrow/311/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jamestownsbhc/264/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/hillviewmentalhealthcenter,inc./300/r4", + "URL": "https://fhir.qa.welligent.com/fhir/lookingupwardsearlyintervention/268/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jamestownsbhc/264/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligent/0/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/lookingupwardsearlyintervention/268/r4", + "URL": "https://fhir.qa.welligent.com/fhir/augustacountypublicschools/8/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligent/0/r4", + "URL": "https://fhir.qa.welligent.com/fhir/olivecrest/301/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/augustacountypublicschools/8/r4", + "URL": "https://fhir.qa.welligent.com/fhir/healthright360/307/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/olivecrest/301/r4", + "URL": "https://fhir.qa.welligent.com/fhir/princegeorgecounty/112/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/healthright360/307/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jacksonpublicschools/234/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/princegeorgecounty/112/r4", + "URL": "https://fhir.qa.welligent.com/fhir/alsc-familyserviceagency/320/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jacksonpublicschools/234/r4", + "URL": "https://fhir.qa.welligent.com/fhir/heritageclinic/325/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/alsc-familyserviceagency/320/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pacificclinics/326/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/heritageclinic/325/r4", + "URL": "https://fhir.qa.welligent.com/fhir/seraajfamilyhomes/297/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pacificclinics/326/r4", + "URL": "https://fhir.qa.welligent.com/fhir/trudeaucenter/240/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/seraajfamilyhomes/297/r4", + "URL": "https://fhir.qa.welligent.com/fhir/alleghanycountypublicschools/99/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/trudeaucenter/240/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hasbrochildrenshospitalei/243/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/alleghanycountypublicschools/99/r4", + "URL": "https://fhir.qa.welligent.com/fhir/potomacpathways/304/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/hasbrochildrenshospitalei/243/r4", + "URL": "https://fhir.qa.welligent.com/fhir/stillwatersprofessionalcounseling/333/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/potomacpathways/304/r4", + "URL": "https://fhir.qa.welligent.com/fhir/covingtoncitypublicschools/107/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/stillwatersprofessionalcounseling/333/r4", + "URL": "https://fhir.qa.welligent.com/fhir/familyguidanceprogram/247/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/covingtoncitypublicschools/107/r4", + "URL": "https://fhir.qa.welligent.com/fhir/insight/248/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/familyguidanceprogram/247/r4", + "URL": "https://fhir.qa.welligent.com/fhir/universityofarizona/295/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/insight/248/r4", + "URL": "https://fhir.qa.welligent.com/fhir/learningwell,inc./87/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/universityofarizona/295/r4", + "URL": "https://fhir.qa.welligent.com/fhir/timberlineknolls/318/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/learningwell,inc./87/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hanovercountypublicschools/42/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/timberlineknolls/318/r4", + "URL": "https://fhir.qa.welligent.com/fhir/masonichomes/302/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/hanovercountypublicschools/42/r4", + "URL": "https://fhir.qa.welligent.com/fhir/rochestercityschooldistrict/94/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/masonichomes/302/r4", + "URL": "https://fhir.qa.welligent.com/fhir/masonichomesmos/314/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/rochestercityschooldistrict/94/r4", + "URL": "https://fhir.qa.welligent.com/fhir/assertivecommunityrecovery,llc/322/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/masonichomesmos/314/r4", + "URL": "https://fhir.qa.welligent.com/fhir/alpertjewishfamilyservices/109/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/assertivecommunityrecovery,llc/322/r4", + "URL": "https://fhir.qa.welligent.com/fhir/mentalhealthamerica(mhala)/329/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/alpertjewishfamilyservices/109/r4", + "URL": "https://fhir.qa.welligent.com/fhir/privatepracticeclone/334/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/mentalhealthamerica(mhala)/329/r4", + "URL": "https://fhir.qa.welligent.com/fhir/summit/335/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/privatepracticeclone/334/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thehelpgroup/339/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/summit/335/r4", + "URL": "https://fhir.qa.welligent.com/fhir/newyorkcenterforliving/338/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thehelpgroup/339/r4", + "URL": "https://fhir.qa.welligent.com/fhir/floydcountypublicschools/31/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/newyorkcenterforliving/338/r4", + "URL": "https://fhir.qa.welligent.com/fhir/portlandjewishfamilyandchildservice/231/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/floydcountypublicschools/31/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pittsylvaniacountyschools/266/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/portlandjewishfamilyandchildservice/231/r4", + "URL": "https://fhir.qa.welligent.com/fhir/southorangetowncentralschooldistrict/272/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pittsylvaniacountyschools/266/r4", + "URL": "https://fhir.qa.welligent.com/fhir/elpasoschooldistrict/277/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/southorangetowncentralschooldistrict/272/r4", + "URL": "https://fhir.qa.welligent.com/fhir/brogan/281/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/elpasoschooldistrict/277/r4", + "URL": "https://fhir.qa.welligent.com/fhir/child\u0026familycenter/287/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/brogan/281/r4", + "URL": "https://fhir.qa.welligent.com/fhir/oasiscounselingforwomenandchildren/290/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/child\u0026familycenter/287/r4", + "URL": "https://fhir.qa.welligent.com/fhir/seacrs/southeasternarizonaconsumerru/289/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/oasiscounselingforwomenandchildren/290/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentschoolsystem/269/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/seacrs/southeasternarizonaconsumerru/289/r4", + "URL": "https://fhir.qa.welligent.com/fhir/tampajfs/279/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentschoolsystem/269/r4", + "URL": "https://fhir.qa.welligent.com/fhir/apexeducation/283/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/tampajfs/279/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jfsofgreaterhartford/273/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/apexeducation/283/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cenikorfoundation/354/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jfsofgreaterhartford/273/r4", + "URL": "https://fhir.qa.welligent.com/fhir/indianhealthcenterofsantaclaravalley/358/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cenikorfoundation/354/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligent/346/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/indianhealthcenterofsantaclaravalley/358/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jfcsofminneapolis/351/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligent/346/r4", + "URL": "https://fhir.qa.welligent.com/fhir/horizonservices,inc./363/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jfcsofminneapolis/351/r4", + "URL": "https://fhir.qa.welligent.com/fhir/parisihouseonthehill,inc./331/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/horizonservices,inc./363/r4", + "URL": "https://fhir.qa.welligent.com/fhir/palmspringsunifiedschooldistrict/348/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/parisihouseonthehill,inc./331/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pinebrookfamilyanswers/353/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/palmspringsunifiedschooldistrict/348/r4", + "URL": "https://fhir.qa.welligent.com/fhir/havenhouse/356/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pinebrookfamilyanswers/353/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fabensindependentschooldistrict/366/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/havenhouse/356/r4", + "URL": "https://fhir.qa.welligent.com/fhir/homesforlifefoundation/344/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fabensindependentschooldistrict/366/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sunrisecommunitycounselingcenter/352/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/homesforlifefoundation/344/r4", + "URL": "https://fhir.qa.welligent.com/fhir/atlantaqualitycaresolutions,llc/364/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sunrisecommunitycounselingcenter/352/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jeffersoncountycommitteeforeconomicopportunity/389/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/atlantaqualitycaresolutions,llc/364/r4", + "URL": "https://fhir.qa.welligent.com/fhir/browardsheriffsoffice/391/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jeffersoncountycommitteeforeconomicopportunity/389/r4", + "URL": "https://fhir.qa.welligent.com/fhir/youthpolicyinstitute/397/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/browardsheriffsoffice/391/r4", + "URL": "https://fhir.qa.welligent.com/fhir/irishouse/398/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/youthpolicyinstitute/397/r4", + "URL": "https://fhir.qa.welligent.com/fhir/freedomhouse/376/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/irishouse/398/r4", + "URL": "https://fhir.qa.welligent.com/fhir/eastbayagencyforchildren/371/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/freedomhouse/376/r4", + "URL": "https://fhir.qa.welligent.com/fhir/theosirisfamilyinstitute/392/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/eastbayagencyforchildren/371/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cityofpasadena/396/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/theosirisfamilyinstitute/392/r4", + "URL": "https://fhir.qa.welligent.com/fhir/warwickfamilyservices/402/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cityofpasadena/396/r4", + "URL": "https://fhir.qa.welligent.com/fhir/nationalcouncilofjewishwomen/374/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/warwickfamilyservices/402/r4", + "URL": "https://fhir.qa.welligent.com/fhir/communitycounselingresources/379/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/nationalcouncilofjewishwomen/374/r4", + "URL": "https://fhir.qa.welligent.com/fhir/familyinstituteforrecoveryandempowerment/381/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/communitycounselingresources/379/r4", + "URL": "https://fhir.qa.welligent.com/fhir/impactfamilycounseling/399/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/familyinstituteforrecoveryandempowerment/381/r4", + "URL": "https://fhir.qa.welligent.com/fhir/centerpoint/390/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/impactfamilycounseling/399/r4", + "URL": "https://fhir.qa.welligent.com/fhir/goodneighborcommunityservices/393/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/centerpoint/390/r4", + "URL": "https://fhir.qa.welligent.com/fhir/bienestar/395/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/goodneighborcommunityservices/393/r4", + "URL": "https://fhir.qa.welligent.com/fhir/reliancebehavioralhealth/375/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/bienestar/395/r4", + "URL": "https://fhir.qa.welligent.com/fhir/kerncountysuperintendentofschools/394/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/reliancebehavioralhealth/375/r4", + "URL": "https://fhir.qa.welligent.com/fhir/lakeviewbehavioralhealth/400/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/kerncountysuperintendentofschools/394/r4", + "URL": "https://fhir.qa.welligent.com/fhir/goodmanjfsofbroward/370/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/lakeviewbehavioralhealth/400/r4", + "URL": "https://fhir.qa.welligent.com/fhir/youthhomesinc./406/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/goodmanjfsofbroward/370/r4", + "URL": "https://fhir.qa.welligent.com/fhir/magnoliawomensrecoveryprograms,inc./415/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/youthhomesinc./406/r4", + "URL": "https://fhir.qa.welligent.com/fhir/metimemassageandwellnessllc/419/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/magnoliawomensrecoveryprograms,inc./415/r4", + "URL": "https://fhir.qa.welligent.com/fhir/annearundelcounty/421/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/metimemassageandwellnessllc/419/r4", + "URL": "https://fhir.qa.welligent.com/fhir/keetoindependentgrowth/434/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/annearundelcounty/421/r4", + "URL": "https://fhir.qa.welligent.com/fhir/resourcecenterforindependentliving/439/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/keetoindependentgrowth/434/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fredjeffersonmemorialhomeforboys/440/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/resourcecenterforindependentliving/439/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentsandbox/458/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fredjeffersonmemorialhomeforboys/440/r4", + "URL": "https://fhir.qa.welligent.com/fhir/kansasschoolforthedeaf/474/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentsandbox/458/r4", + "URL": "https://fhir.qa.welligent.com/fhir/communitycarealliance/476/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/kansasschoolforthedeaf/474/r4", + "URL": "https://fhir.qa.welligent.com/fhir/belairerecoverycenter/481/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/communitycarealliance/476/r4", + "URL": "https://fhir.qa.welligent.com/fhir/grodencenter,inc./246/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/belairerecoverycenter/481/r4", + "URL": "https://fhir.qa.welligent.com/fhir/henricocountypublicschools/426/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/grodencenter,inc./246/r4", + "URL": "https://fhir.qa.welligent.com/fhir/questproviderservices/432/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/henricocountypublicschools/426/r4", + "URL": "https://fhir.qa.welligent.com/fhir/ncgcare/436/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/questproviderservices/432/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pathwaysociety/462/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/ncgcare/436/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pathintegratedhealthcare/464/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pathwaysociety/462/r4", + "URL": "https://fhir.qa.welligent.com/fhir/effectiveschoolsolutions/482/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pathintegratedhealthcare/464/r4", + "URL": "https://fhir.qa.welligent.com/fhir/monroeoneeducationalservices/485/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/effectiveschoolsolutions/482/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jillshouse/493/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/monroeoneeducationalservices/485/r4", + "URL": "https://fhir.qa.welligent.com/fhir/mentalhealthsystems/495/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jillshouse/493/r4", + "URL": "https://fhir.qa.welligent.com/fhir/telehealthinternalsandbox/496/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/mentalhealthsystems/495/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentlacdmh/505/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/telehealthinternalsandbox/496/r4", + "URL": "https://fhir.qa.welligent.com/fhir/remarkablemarriageandfamilyinstitute/516/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentlacdmh/505/r4", + "URL": "https://fhir.qa.welligent.com/fhir/journeythroughlife/423/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/remarkablemarriageandfamilyinstitute/516/r4", + "URL": "https://fhir.qa.welligent.com/fhir/wnyindependentliving,inc./438/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/journeythroughlife/423/r4", + "URL": "https://fhir.qa.welligent.com/fhir/graftonintegratedhealthnetwork/456/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/wnyindependentliving,inc./438/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thechildcenterofny/487/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/graftonintegratedhealthnetwork/456/r4", + "URL": "https://fhir.qa.welligent.com/fhir/versability/488/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thechildcenterofny/487/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fresnonewconnection,inc/508/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/versability/488/r4", + "URL": "https://fhir.qa.welligent.com/fhir/franklin-mckinleyschooldistrict/512/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fresnonewconnection,inc/508/r4", + "URL": "https://fhir.qa.welligent.com/fhir/edgewoodcenterforchildren\u0026families/518/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/franklin-mckinleyschooldistrict/512/r4", + "URL": "https://fhir.qa.welligent.com/fhir/compeerrochester,inc./431/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/edgewoodcenterforchildren\u0026families/518/r4", + "URL": "https://fhir.qa.welligent.com/fhir/skillsofpa/433/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/compeerrochester,inc./431/r4", + "URL": "https://fhir.qa.welligent.com/fhir/communityservicesgroup/459/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/skillsofpa/433/r4", + "URL": "https://fhir.qa.welligent.com/fhir/episcopalcommunityservices/463/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/communityservicesgroup/459/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentimplementationsandbox/473/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/episcopalcommunityservices/463/r4", + "URL": "https://fhir.qa.welligent.com/fhir/heritagegrouphomes/489/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentimplementationsandbox/473/r4", + "URL": "https://fhir.qa.welligent.com/fhir/iddclone/497/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/heritagegrouphomes/489/r4", + "URL": "https://fhir.qa.welligent.com/fhir/westchesterinstituteforhumandevelopment/498/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/iddclone/497/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sdofphiladelphia/515/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/westchesterinstituteforhumandevelopment/498/r4", + "URL": "https://fhir.qa.welligent.com/fhir/leagueeducationandtreatmentcenter/422/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sdofphiladelphia/515/r4", + "URL": "https://fhir.qa.welligent.com/fhir/heartsharest.vincentsservices/429/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/leagueeducationandtreatmentcenter/422/r4", + "URL": "https://fhir.qa.welligent.com/fhir/eastersealsrhodeisland/249/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/heartsharest.vincentsservices/429/r4", + "URL": "https://fhir.qa.welligent.com/fhir/virginiabeachvachr/480/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/eastersealsrhodeisland/249/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thefresnocenter/499/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/virginiabeachvachr/480/r4", + "URL": "https://fhir.qa.welligent.com/fhir/naminycmetro/410/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thefresnocenter/499/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cbem-creatingbehavioraleducationalmomentum/425/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/naminycmetro/410/r4", + "URL": "https://fhir.qa.welligent.com/fhir/catholiccharitieslivingstoncounty/442/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cbem-creatingbehavioraleducationalmomentum/425/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fredfinchyouth\u0026familyservices/467/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/catholiccharitieslivingstoncounty/442/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thrivebehavioralhealth/475/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fredfinchyouth\u0026familyservices/467/r4", + "URL": "https://fhir.qa.welligent.com/fhir/virginiacsbmaster/479/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thrivebehavioralhealth/475/r4", + "URL": "https://fhir.qa.welligent.com/fhir/ogccbehavioralhealthservices/484/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/virginiacsbmaster/479/r4", + "URL": "https://fhir.qa.welligent.com/fhir/losangelesunifiedschooldistrict/275/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/ogccbehavioralhealthservices/484/r4", + "URL": "https://fhir.qa.welligent.com/fhir//490/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/losangelesunifiedschooldistrict/275/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cerritoscollege/502/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir//490/r4", + "URL": "https://fhir.qa.welligent.com/fhir/suffolkcounty/510/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cerritoscollege/502/r4", + "URL": "https://fhir.qa.welligent.com/fhir/loudouncountycsb/513/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/suffolkcounty/510/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mu3test.welligent.com/fhir/loudouncountycsb/513/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mu3test.welligent.com/fhir/phoenixhousesofnyli/519/r4", + "URL": "https://fhir.qa.welligent.com/fhir/phoenixhousesofnyli/519/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json b/resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json new file mode 100644 index 000000000..b138050d5 --- /dev/null +++ b/resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json @@ -0,0 +1,16 @@ +{ + "Endpoints": [ + { + "URL": "https://ccdoc.phn.care/tenant/my-clinic/patient/smart-api", + "OrganizationName": "My Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://ccdoc.phn.care/tenant/NCS/patient/smart-api", + "OrganizationName": "NCS", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/athenahealth_Inc_EndpointSources.json b/resources/prod_resources/athenahealth_Inc_EndpointSources.json index 43b58b2ab..e9b4dbc49 100644 --- a/resources/prod_resources/athenahealth_Inc_EndpointSources.json +++ b/resources/prod_resources/athenahealth_Inc_EndpointSources.json @@ -15504,12 +15504,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RELYMD VIRTUAL HEALTH DC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "RELYMD VIRTUAL HEALTH GA", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RELYMD VIRTUAL HEATH TN", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "RIVERSIDE EMERGENCY PHYSICIANS", @@ -38234,7 +38246,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Cardiovascular Medicine Associates", + "OrganizationName": "My Cardiologist", "NPIID": "", "OrganizationZipCode": "" }, @@ -63752,7 +63764,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - SIMPLIFED, INC.", + "OrganizationName": "SIMPLIFED", "NPIID": "", "OrganizationZipCode": "" }, @@ -79764,6 +79776,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Choice Family Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - DERBALA INSTITUTE FOR REPRODUCTIVE", @@ -80094,6 +80112,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Phoenix Health Practitioners LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Natural Balance Clinic", @@ -80514,6 +80538,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aspen Internal Medicine Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Grand Prairie Services", @@ -80814,6 +80844,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pak Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Innovacare Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "400 SE Osceola", @@ -81534,6 +81576,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sharyn L Cass, Adult Nurse Practiti", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Cassandra Ohlsen MD", @@ -81906,6 +81954,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Joseph J Botta and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Lew, Edmund", @@ -82068,6 +82122,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Serenity Obgyn PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MS - VIP PEDIATRICS PLLC", @@ -82092,6 +82152,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Simple Healthcare Network", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CT - VASECTOMY CENTER OF CONNECTICUT LLC", @@ -82140,6 +82206,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lightpath Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lightpath Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "KY - Family Practice Clinic of Boonevill", @@ -100274,7 +100352,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alliance", + "OrganizationName": "Alliance Clinics", "NPIID": "", "OrganizationZipCode": "" },